.nx-site {
  --nx-snow: #f2f5f2;
  --nx-paper: #ffffff;
  --nx-ink: #101411;
  --nx-muted: #66706a;
  --nx-line: #cbd1cd;
  --nx-pine: #19372d;
  --nx-ice: #cce8e8;
  --nx-blue: #275a73;
  --nx-coral: #ec6b45;
  min-height: 100vh;
  padding-bottom: 92px;
  isolation: isolate;
  overflow: clip;
  color: var(--nx-ink);
  background: var(--nx-snow);
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

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

.nx-site button,
.nx-site input,
.nx-site select {
  color: inherit;
  font: inherit;
}

.nx-site button {
  border: 0;
  cursor: pointer;
}

.nx-site a {
  color: inherit;
  text-decoration: none;
}

.nx-site img {
  display: block;
  max-width: 100%;
}

.nx-site h1,
.nx-site h2,
.nx-site h3,
.nx-site p,
.nx-site figure,
.nx-site dl,
.nx-site dd {
  margin: 0;
}

.nx-site :focus-visible {
  outline: 3px solid var(--nx-coral);
  outline-offset: 4px;
}

.nx-skip {
  position: fixed;
  z-index: 15000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: var(--nx-paper) !important;
  background: var(--nx-ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.nx-skip:focus {
  transform: translateY(0);
}

.nx-header {
  position: relative;
  z-index: 90;
  width: 100%;
  min-height: 76px;
  padding: 0 clamp(22px, 4vw, 72px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--nx-line);
  background: rgba(242, 245, 242, 0.94);
  backdrop-filter: blur(18px);
}

.nx-wordmark {
  width: max-content;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 1;
}

.nx-wordmark span {
  position: relative;
  top: -0.54em;
  margin-left: 3px;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 0;
}

.nx-desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3.3vw, 54px);
}

.nx-desktop-nav a {
  position: relative;
  padding-block: 26px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.045em;
}

.nx-desktop-nav a::after {
  position: absolute;
  right: 50%;
  bottom: 18px;
  left: 50%;
  height: 1px;
  content: "";
  background: currentColor;
  transition: right 180ms ease, left 180ms ease;
}

.nx-desktop-nav a:hover::after,
.nx-desktop-nav a:focus-visible::after {
  right: 0;
  left: 0;
}

.nx-header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 26px;
}

.nx-text-action {
  min-height: 44px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nx-text-action svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.5;
}

.nx-text-action b {
  min-width: 27px;
  padding: 5px 6px;
  border-radius: 50%;
  color: var(--nx-paper);
  background: var(--nx-ink);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  font-weight: 500;
  text-align: center;
}

.nx-menu-trigger {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  background: transparent;
}

.nx-menu-trigger span {
  position: absolute;
  width: 23px;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease;
}

.nx-menu-trigger span:first-child { transform: translateY(-4px); }
.nx-menu-trigger span:last-child { transform: translateY(4px); }
.nx-menu-trigger[aria-expanded="true"] span:first-child { transform: rotate(45deg); }
.nx-menu-trigger[aria-expanded="true"] span:last-child { transform: rotate(-45deg); }

.nx-search-panel {
  position: absolute;
  z-index: 3;
  top: 100%;
  right: clamp(22px, 4vw, 72px);
  left: clamp(22px, 4vw, 72px);
  min-height: 96px;
  padding: 18px 22px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--nx-line);
  border-top: 0;
  background: var(--nx-paper);
  box-shadow: 0 24px 44px rgba(16, 20, 17, 0.12);
}

.nx-search-panel label {
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.nx-search-panel input {
  width: 100%;
  min-width: 0;
  padding: 9px 0;
  border: 0;
  border-bottom: 1px solid var(--nx-ink);
  border-radius: 0;
  background: transparent;
  font-size: clamp(18px, 2vw, 28px);
  letter-spacing: -0.035em;
}

.nx-search-panel input:focus { outline: 0; border-bottom-width: 2px; }

.nx-search-panel button,
.nx-drawer-head button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--nx-line);
  border-radius: 50%;
  background: transparent;
  font-size: 24px;
  line-height: 1;
}

.nx-mobile-nav {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  padding: 18px 22px 26px;
  display: none;
  border-bottom: 1px solid var(--nx-line);
  background: var(--nx-paper);
  box-shadow: 0 28px 40px rgba(16, 20, 17, 0.1);
}

.nx-mobile-nav a {
  padding: 16px 0;
  border-bottom: 1px solid var(--nx-line);
  font-size: 18px;
  font-weight: 700;
}

.nx-hero {
  position: relative;
  min-height: min(790px, calc(100vh - 76px));
  display: grid;
  grid-template-columns: 72px minmax(330px, 0.78fr) minmax(520px, 1.25fr) 54px;
  grid-template-rows: minmax(650px, 1fr);
  background: var(--nx-ice);
}

.nx-brand-spine {
  padding-block: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  border-right: 1px solid rgba(16, 20, 17, 0.25);
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  font-weight: 900;
}

.nx-hero-copy {
  position: relative;
  z-index: 2;
  padding: clamp(70px, 9vw, 142px) clamp(30px, 4.8vw, 88px) 64px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-right: 1px solid rgba(16, 20, 17, 0.24);
}

.nx-hero-copy h1 {
  max-width: 7ch;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(68px, 7.25vw, 126px);
  font-stretch: condensed;
  font-weight: 800;
  letter-spacing: -0.085em;
  line-height: 0.82;
}

.nx-hero-copy p {
  max-width: 36rem;
  margin-top: auto;
  padding-top: 46px;
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.52;
}

.nx-primary-link {
  min-height: 54px;
  margin-top: 32px;
  padding: 0 18px 0 21px;
  display: inline-flex;
  align-items: center;
  gap: 30px;
  color: var(--nx-paper) !important;
  background: var(--nx-ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.035em;
}

.nx-primary-link span {
  font-size: 18px;
  transition: transform 180ms ease;
}

.nx-primary-link:hover span { transform: translateY(4px); }

.nx-hero-visual {
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.nx-hero-visual::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, rgba(16, 20, 17, 0.1), transparent 28%), linear-gradient(0deg, rgba(16, 20, 17, 0.24), transparent 34%);
}

.nx-hero-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 61% center;
  transform: scale(1.015);
  transition: transform 1.2s cubic-bezier(0.2, 0.65, 0.25, 1);
}

.nx-hero-visual:hover > img { transform: scale(1.045); }

.nx-hero-visual figcaption {
  position: absolute;
  z-index: 2;
  right: clamp(20px, 3vw, 50px);
  bottom: clamp(24px, 4vw, 58px);
  left: clamp(20px, 3vw, 50px);
  padding-top: 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  border-top: 1px solid rgba(255, 255, 255, 0.7);
  color: white;
}

.nx-hero-visual figcaption > span {
  font-size: clamp(18px, 1.6vw, 25px);
  font-weight: 750;
  letter-spacing: -0.035em;
}

.nx-hero-visual figcaption small {
  grid-column: 1;
  margin-top: 4px;
  font-size: 11px;
  letter-spacing: 0.05em;
}

.nx-hero-visual figcaption button {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  padding: 10px 0 10px 18px;
  color: inherit;
  background: transparent;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.nx-hero-visual figcaption button span { margin-left: 10px; }

.nx-hero-index {
  padding-block: 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  border-left: 1px solid rgba(16, 20, 17, 0.25);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
}

.nx-hero-index i {
  width: 1px;
  flex: 0.84;
  background: rgba(16, 20, 17, 0.35);
}

.nx-catalog {
  width: min(1460px, calc(100% - 64px));
  margin-inline: auto;
  padding: clamp(96px, 11vw, 176px) 0;
}

.nx-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 8vw;
}

.nx-section-heading h2,
.nx-criteria-statement h2,
.nx-guide-intro h2,
.nx-newsletter h2 {
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(54px, 7vw, 112px);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.88;
}

.nx-section-heading p {
  padding-bottom: 8px;
  color: var(--nx-muted);
  font-size: 16px;
  line-height: 1.6;
}

.nx-catalog-controls {
  margin-top: 70px;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--nx-line);
  border-bottom: 1px solid var(--nx-line);
}

.nx-categories {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
}

.nx-categories::-webkit-scrollbar { display: none; }

.nx-categories button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--nx-muted);
  font-size: 12px;
  font-weight: 750;
  white-space: nowrap;
}

.nx-categories button:hover { color: var(--nx-ink); }

.nx-categories button.is-active {
  border-color: var(--nx-ink);
  color: var(--nx-paper);
  background: var(--nx-ink);
}

.nx-sort-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nx-sort-wrap label {
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nx-sort-wrap select {
  min-height: 42px;
  padding: 0 34px 0 13px;
  border: 1px solid var(--nx-line);
  border-radius: 0;
  background: var(--nx-paper);
  font-size: 12px;
}

.nx-result-count {
  margin: 18px 0 28px !important;
  color: var(--nx-muted);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nx-product-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 64px 18px;
}

.nx-product-card {
  min-width: 0;
  grid-column: span 4;
}

.nx-product-card:nth-child(-n + 2) { grid-column: span 6; }

.nx-product-image {
  position: relative;
  width: 100%;
  aspect-ratio: 0.93;
  padding: 0;
  overflow: hidden;
  background: #e5e7e4;
}

.nx-product-card:nth-child(-n + 2) .nx-product-image { aspect-ratio: 1.24; }

.nx-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 300ms ease;
}

.nx-product-image > span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 11px 14px;
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--nx-ink);
  background: rgba(255, 255, 255, 0.92);
  font-size: 10px;
  font-weight: 800;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nx-product-image > span i { font-style: normal; }
.nx-product-image:hover img { transform: scale(1.035); filter: saturate(0.82); }
.nx-product-image:hover > span,
.nx-product-image:focus-visible > span { opacity: 1; transform: translateY(0); }

.nx-product-meta {
  padding: 18px 0 13px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--nx-line);
}

.nx-product-meta h3 {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.nx-product-meta p {
  margin-top: 3px !important;
  color: var(--nx-muted);
  font-size: 11px;
}

.nx-product-meta strong {
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
}

.nx-card-add {
  width: 100%;
  min-height: 46px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nx-card-add span {
  font-size: 19px;
  font-weight: 400;
  transition: transform 180ms ease;
}

.nx-card-add:hover span { transform: rotate(90deg); }

.nx-empty-results {
  min-height: 300px;
  display: grid;
  place-content: center;
  gap: 20px;
  text-align: center;
}

.nx-empty-results p { font-size: 22px; font-weight: 700; }
.nx-empty-results button { padding: 12px 18px; color: white; background: var(--nx-ink); }

.nx-criteria {
  padding: clamp(90px, 10vw, 156px) max(32px, calc((100vw - 1460px) / 2));
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 80px 18px;
  color: var(--nx-paper);
  background: var(--nx-pine);
}

.nx-criteria-statement {
  grid-column: 1 / span 8;
}

.nx-criteria-statement h2 { max-width: 11ch; }

.nx-criteria-statement > p {
  max-width: 580px;
  margin-top: 38px;
  margin-left: calc(25% + 8px);
  color: #bdd0c8;
  font-size: 17px;
  line-height: 1.65;
}

.nx-criteria-image {
  grid-column: 6 / -1;
  min-height: 560px;
  margin-top: -28px;
  overflow: hidden;
}

.nx-criteria-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.68) contrast(0.96);
}

.nx-principles {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.nx-principles article {
  min-height: 220px;
  padding: 30px clamp(22px, 3vw, 48px) 0 0;
}

.nx-principles article + article {
  padding-left: clamp(22px, 3vw, 48px);
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.nx-principles h3 {
  font-size: 17px;
  letter-spacing: -0.025em;
}

.nx-principles p {
  max-width: 34ch;
  margin-top: 55px;
  color: #b8cbc4;
  font-size: 13px;
  line-height: 1.62;
}

.nx-guide {
  width: min(1460px, calc(100% - 64px));
  margin-inline: auto;
  padding: clamp(100px, 11vw, 180px) 0;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(70px, 10vw, 180px);
}

.nx-guide-intro {
  position: sticky;
  top: 40px;
  align-self: start;
}

.nx-guide-intro h2 {
  font-size: clamp(50px, 5.8vw, 94px);
}

.nx-guide-intro p {
  max-width: 40ch;
  margin-top: 32px;
  color: var(--nx-muted);
  font-size: 15px;
  line-height: 1.62;
}

.nx-guide-list {
  border-top: 1px solid var(--nx-ink);
}

.nx-guide-list details {
  border-bottom: 1px solid var(--nx-line);
}

.nx-guide-list summary {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  cursor: pointer;
  list-style: none;
  font-size: clamp(17px, 1.5vw, 23px);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.nx-guide-list summary::-webkit-details-marker { display: none; }

.nx-guide-list summary b {
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  font-weight: 500;
}

.nx-guide-list details[open] summary { color: var(--nx-blue); }

.nx-guide-list details p {
  max-width: 58ch;
  padding: 0 70px 34px 0;
  color: var(--nx-muted);
  font-size: 14px;
  line-height: 1.7;
}

.nx-newsletter {
  min-height: 470px;
  padding: clamp(64px, 8vw, 120px) max(32px, calc((100vw - 1460px) / 2));
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 9vw;
  background: var(--nx-ice);
}

.nx-newsletter h2 {
  max-width: 10ch;
  font-size: clamp(52px, 6vw, 98px);
}

.nx-newsletter > div > p {
  max-width: 44ch;
  margin-top: 26px;
  font-size: 15px;
}

.nx-newsletter form label {
  display: block;
  margin-bottom: 15px;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nx-newsletter form > div {
  display: flex;
  border-bottom: 1px solid var(--nx-ink);
}

.nx-newsletter input {
  width: 100%;
  min-width: 0;
  padding: 18px 0;
  border: 0;
  background: transparent;
  font-size: 18px;
}

.nx-newsletter input:focus { outline: 0; }

.nx-newsletter form button {
  flex: 0 0 auto;
  padding: 0 0 0 24px;
  display: flex;
  align-items: center;
  gap: 28px;
  background: transparent;
  font-size: 11px;
  font-weight: 800;
}

.nx-newsletter form button span { font-size: 20px; }

.nx-newsletter-success {
  max-width: 42ch;
  padding: 24px 0;
  border-top: 1px solid var(--nx-ink);
  border-bottom: 1px solid var(--nx-ink);
  font-size: 17px;
  font-weight: 700;
}

.nx-footer {
  min-height: 260px;
  padding: 58px max(32px, calc((100vw - 1460px) / 2));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 50px;
  color: var(--nx-paper);
  background: var(--nx-ink);
}

.nx-footer > div > p {
  max-width: 26ch;
  margin-top: 25px;
  color: #99a39e;
  font-size: 12px;
}

.nx-footer nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(100px, 1fr));
  gap: 18px 50px;
}

.nx-footer nav a,
.nx-top-link {
  color: #c4ccc8 !important;
  font-size: 11px;
  font-weight: 700;
}

.nx-footer nav a:hover,
.nx-top-link:hover { color: var(--nx-paper) !important; }

.nx-top-link {
  justify-self: end;
  display: flex;
  gap: 16px;
}

.nx-modal-layer {
  position: fixed;
  z-index: 12000;
  inset: 0;
  display: flex;
  justify-content: flex-end;
}

.nx-modal-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  background: rgba(7, 12, 9, 0.57);
  backdrop-filter: blur(4px);
}

.nx-product-drawer,
.nx-cart-drawer {
  position: relative;
  z-index: 1;
  width: min(590px, 100%);
  height: 100%;
  overflow-y: auto;
  color: var(--nx-ink);
  background: var(--nx-paper);
  box-shadow: -30px 0 80px rgba(5, 10, 7, 0.22);
  animation: nx-drawer-in 340ms cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

@keyframes nx-drawer-in {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

.nx-drawer-head {
  min-height: 76px;
  padding: 0 24px 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--nx-line);
}

.nx-drawer-head > span,
.nx-drawer-head h2 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nx-drawer-head h2 span {
  margin-left: 8px;
  color: var(--nx-muted);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  font-weight: 500;
}

.nx-product-drawer > img {
  width: 100%;
  height: min(46vh, 510px);
  object-fit: cover;
}

.nx-detail-copy { padding: 34px 30px 48px; }

.nx-detail-copy > div:first-child {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
}

.nx-detail-copy h2 {
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.nx-detail-copy > div > strong {
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  white-space: nowrap;
}

.nx-detail-copy > p {
  margin-top: 28px;
  color: var(--nx-muted);
  font-size: 14px;
  line-height: 1.65;
}

.nx-detail-copy dl {
  margin: 32px 0;
  border-top: 1px solid var(--nx-line);
}

.nx-detail-copy dl > div {
  padding: 17px 0;
  display: grid;
  grid-template-columns: 120px 1fr;
  border-bottom: 1px solid var(--nx-line);
}

.nx-detail-copy dt {
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nx-detail-copy dd { color: var(--nx-muted); font-size: 12px; }

.nx-drawer-primary {
  width: 100%;
  min-height: 58px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--nx-paper) !important;
  background: var(--nx-ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nx-drawer-primary span { font-size: 20px; }

.nx-cart-drawer {
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.nx-cart-lines {
  overflow-y: auto;
}

.nx-cart-lines article {
  padding: 22px 28px;
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--nx-line);
}

.nx-cart-lines article > img {
  width: 116px;
  height: 138px;
  object-fit: cover;
}

.nx-cart-lines h3 { font-size: 14px; letter-spacing: -0.02em; }
.nx-cart-lines article > div > p { margin: 3px 0 11px; color: var(--nx-muted); font-size: 10px; }
.nx-cart-lines article > div > strong { font-family: "SFMono-Regular", Consolas, monospace; font-size: 10px; }

.nx-quantity {
  width: max-content;
  margin-top: 13px;
  display: grid;
  grid-template-columns: 34px 34px 34px;
  border: 1px solid var(--nx-line);
}

.nx-quantity button,
.nx-quantity span {
  height: 32px;
  display: grid;
  place-items: center;
  background: transparent;
  font-size: 12px;
}

.nx-quantity button:hover { background: var(--nx-snow); }

.nx-remove {
  margin-top: 9px;
  padding: 0;
  border-bottom: 1px solid currentColor !important;
  color: var(--nx-muted) !important;
  background: transparent;
  font-size: 9px;
}

.nx-cart-summary {
  padding: 25px 28px 30px;
  border-top: 1px solid var(--nx-line);
  background: var(--nx-snow);
}

.nx-cart-summary > div {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 800;
}

.nx-cart-summary > p {
  margin: 9px 0 19px;
  color: var(--nx-muted);
  font-size: 10px;
  line-height: 1.5;
}

.nx-cart-summary .nx-cart-message {
  margin: 14px 0 0;
  padding-left: 14px;
  border-left: 2px solid var(--nx-pine);
  color: var(--nx-pine);
  font-size: 11px;
}

.nx-empty-cart {
  padding: 50px 30px;
  align-self: center;
  text-align: center;
}

.nx-empty-cart > span {
  display: block;
  font-size: 82px;
  font-weight: 200;
}

.nx-empty-cart h3 {
  margin-top: 12px;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 38px;
  letter-spacing: -0.055em;
}

.nx-empty-cart p {
  max-width: 32ch;
  margin: 12px auto 26px;
  color: var(--nx-muted);
  font-size: 13px;
}

.nx-empty-cart button {
  padding: 13px 18px;
  color: var(--nx-paper);
  background: var(--nx-ink);
  font-size: 11px;
  font-weight: 800;
}

@media (max-width: 1100px) {
  .nx-header { grid-template-columns: 1fr auto; }
  .nx-desktop-nav { display: none; }
  .nx-menu-trigger { display: grid; }
  .nx-mobile-nav { display: grid; }
  .nx-hero {
    min-height: auto;
    grid-template-columns: 58px minmax(290px, 0.85fr) minmax(430px, 1.15fr);
    grid-template-rows: 660px;
  }
  .nx-hero-index { display: none; }
  .nx-hero-copy { padding-inline: 36px; }
  .nx-product-card,
  .nx-product-card:nth-child(-n + 2) { grid-column: span 6; }
  .nx-product-card .nx-product-image,
  .nx-product-card:nth-child(-n + 2) .nx-product-image { aspect-ratio: 0.94; }
  .nx-criteria-statement { grid-column: 1 / span 10; }
  .nx-criteria-image { grid-column: 5 / -1; }
}

@media (max-width: 820px) {
  .nx-site { padding-bottom: 86px; }
  .nx-header { min-height: 68px; padding-inline: 18px; }
  .nx-header-actions { gap: 14px; }
  .nx-search-trigger span { display: none; }
  .nx-search-panel { right: 14px; left: 14px; grid-template-columns: 1fr auto; }
  .nx-search-panel label { display: none; }
  .nx-hero {
    display: block;
    background: var(--nx-ice);
  }
  .nx-brand-spine,
  .nx-hero-index { display: none; }
  .nx-hero-copy {
    min-height: 470px;
    padding: 72px 24px 42px;
    border-right: 0;
  }
  .nx-hero-copy h1 { max-width: 7.7ch; font-size: clamp(62px, 17vw, 112px); }
  .nx-hero-copy p { max-width: 31rem; margin-top: 60px; padding: 0; }
  .nx-hero-visual { height: 72vw; min-height: 430px; max-height: 650px; }
  .nx-hero-visual > img { object-position: 61% center; }
  .nx-catalog,
  .nx-guide { width: min(100% - 36px, 1460px); }
  .nx-section-heading { display: block; }
  .nx-section-heading h2 { max-width: 9ch; }
  .nx-section-heading p { max-width: 35rem; margin-top: 30px; }
  .nx-catalog-controls { align-items: flex-start; flex-direction: column; }
  .nx-categories { width: 100%; }
  .nx-sort-wrap { width: 100%; justify-content: space-between; }
  .nx-product-grid { gap: 50px 12px; }
  .nx-criteria { gap: 55px 12px; }
  .nx-criteria-statement,
  .nx-criteria-image { grid-column: 1 / -1; }
  .nx-criteria-statement > p { margin-left: 0; }
  .nx-criteria-image { min-height: 480px; margin-top: 0; }
  .nx-principles { grid-template-columns: 1fr; }
  .nx-principles article { min-height: 0; padding: 28px 0 42px; }
  .nx-principles article + article { padding-left: 0; border-top: 1px solid rgba(255, 255, 255, 0.24); border-left: 0; }
  .nx-principles p { margin-top: 24px; }
  .nx-guide { display: block; }
  .nx-guide-intro { position: static; }
  .nx-guide-list { margin-top: 70px; }
  .nx-newsletter { min-height: 0; display: block; }
  .nx-newsletter form,
  .nx-newsletter-success { margin-top: 66px; }
  .nx-footer { grid-template-columns: 1fr 1fr; }
  .nx-top-link { grid-column: 2; justify-self: end; }
}

@media (max-width: 560px) {
  .nx-header-actions { gap: 8px; }
  .nx-text-action { min-width: 42px; justify-content: center; }
  .nx-text-action > span { display: none; }
  .nx-text-action b { min-width: 25px; }
  .nx-search-panel { min-height: 78px; padding: 12px 14px; }
  .nx-hero-copy { min-height: 430px; }
  .nx-hero-copy h1 { font-size: clamp(58px, 18vw, 86px); }
  .nx-hero-copy p { margin-top: 48px; font-size: 15px; }
  .nx-primary-link { width: 100%; justify-content: space-between; }
  .nx-hero-visual { height: 118vw; min-height: 430px; }
  .nx-hero-visual figcaption { grid-template-columns: 1fr; }
  .nx-hero-visual figcaption button { grid-column: 1; grid-row: auto; justify-self: start; padding-left: 0; }
  .nx-catalog { padding-block: 96px; }
  .nx-section-heading h2,
  .nx-criteria-statement h2,
  .nx-guide-intro h2,
  .nx-newsletter h2 { font-size: clamp(49px, 15vw, 72px); }
  .nx-sort-wrap label { display: none; }
  .nx-sort-wrap select { width: 100%; }
  .nx-product-grid { display: block; }
  .nx-product-card + .nx-product-card { margin-top: 55px; }
  .nx-product-card .nx-product-image,
  .nx-product-card:nth-child(-n + 2) .nx-product-image { aspect-ratio: 0.91; }
  .nx-product-image > span { opacity: 1; transform: none; }
  .nx-criteria { padding-inline: 18px; }
  .nx-criteria-image { min-height: 380px; }
  .nx-guide-list summary { min-height: 86px; }
  .nx-guide-list details p { padding-right: 12px; }
  .nx-newsletter { padding-inline: 18px; }
  .nx-newsletter form > div { display: block; }
  .nx-newsletter form button { width: 100%; min-height: 54px; padding: 0; justify-content: space-between; border-top: 1px solid rgba(16, 20, 17, 0.22); }
  .nx-footer { padding-inline: 18px; grid-template-columns: 1fr; }
  .nx-footer nav { margin-top: 20px; }
  .nx-top-link { grid-column: 1; justify-self: start; margin-top: 20px; }
  .nx-product-drawer > img { height: 40vh; }
  .nx-detail-copy { padding: 28px 20px 46px; }
  .nx-detail-copy > div:first-child { display: block; }
  .nx-detail-copy > div > strong { display: block; margin-top: 12px; }
  .nx-detail-copy dl > div { grid-template-columns: 92px 1fr; }
  .nx-cart-lines article { padding-inline: 18px; grid-template-columns: 94px 1fr; }
  .nx-cart-lines article > img { width: 94px; height: 120px; }
  .nx-cart-summary { padding-inline: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .nx-site *,
  .nx-site *::before,
  .nx-site *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (forced-colors: active) {
  .nx-categories button.is-active,
  .nx-primary-link,
  .nx-drawer-primary { border: 1px solid ButtonText; }
  .nx-product-image > span { opacity: 1; }
}
