/** Shopify CDN: Minification failed

Line 1960:0 Unexpected "<"
Line 1982:0 Unexpected "<"

**/
:root {
  --nw-bg: #f5efe4;
  --nw-bg-soft: #ebe3d3;
  --nw-card: #e0d6c2;
  --nw-dark: #181614;
  --nw-ink: #181614;
  --nw-muted: #6d6256;
  --nw-faint: #8a7e6e;
  --nw-brass: #8a6332;
  --nw-brass-bright: #b8895a;
  --nw-line: rgba(24, 22, 20, 0.12);
  --nw-line-dark: rgba(245, 239, 228, 0.12);

  --nw-display: "Fraunces", "Times New Roman", serif;
  --nw-body: "Inter Tight", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --nw-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

/* ============================================================
   Base
   ============================================================ */

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

html {
  background: var(--nw-bg);
  scroll-behavior: smooth;
}

body.nw-body {
  margin: 0;
  background: var(--nw-bg);
  color: var(--nw-ink);
  font-family: var(--nw-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body.nw-body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.025;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

body.nw-menu-is-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button,
input,
select {
  font: inherit;
}

.nw-main {
  min-height: 60vh;
}

.nw-skip-link {
  position: absolute;
  left: -999px;
  top: auto;
}

.nw-skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 10000;
  background: var(--nw-dark);
  color: var(--nw-bg);
  padding: 12px 16px;
}

.nw-eyebrow {
  margin: 0;
  color: var(--nw-brass);
  font-family: var(--nw-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

/* ============================================================
   Header
   ============================================================ */

.nw-announcement {
  background: var(--nw-dark);
  color: var(--nw-brass-bright);
  text-align: center;
  padding: 10px 18px;
  font-family: var(--nw-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.nw-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(245, 239, 228, 0.94);
  border-bottom: 1px solid var(--nw-line);
  backdrop-filter: blur(18px);
}

.nw-header.is-scrolled {
  box-shadow: 0 1px 30px rgba(24, 22, 20, 0.08);
}

.nw-header__inner {
  max-width: 1500px;
  margin: 0 auto;
  min-height: 76px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 44px;
}

.nw-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nw-logo__mark {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.nw-logo__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.nw-logo__word {
  font-family: var(--nw-display);
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.045em;
}

.nw-logo__reg {
  font-size: 0.5em;
  vertical-align: super;
  margin-left: 1px;
}

.nw-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  flex: 1;
}

.nw-nav__link,
.nw-header__link {
  font-family: var(--nw-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--nw-muted);
  transition: color 0.2s ease;
}

.nw-nav__link:hover,
.nw-header__link:hover {
  color: var(--nw-ink);
}

.nw-header__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nw-cart {
  background: var(--nw-dark);
  color: var(--nw-bg);
  padding: 11px 18px;
  font-family: var(--nw-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.2s ease;
}

.nw-cart:hover {
  background: var(--nw-brass);
}

.nw-cart__count {
  margin-left: 6px;
}

.nw-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  background: transparent;
  border: 1px solid var(--nw-line);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nw-menu-button span {
  width: 18px;
  height: 1px;
  background: var(--nw-ink);
}

/* ============================================================
   Mobile menu
   ============================================================ */

.nw-mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(24, 22, 20, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.nw-mobile-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.nw-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
  width: min(360px, 88vw);
  height: 100vh;
  background: var(--nw-bg);
  border-left: 1px solid var(--nw-line);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.nw-mobile-menu.is-open {
  transform: translateX(0);
}

.nw-mobile-menu__inner {
  padding: 28px;
}

.nw-mobile-menu__close {
  display: block;
  margin-left: auto;
  margin-bottom: 36px;
  background: transparent;
  border: 0;
  color: var(--nw-muted);
  font-family: var(--nw-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
}

.nw-mobile-nav {
  display: flex;
  flex-direction: column;
}

.nw-mobile-nav a {
  padding: 16px 0;
  border-bottom: 1px solid var(--nw-line);
  font-family: var(--nw-display);
  font-size: 31px;
  line-height: 1;
  letter-spacing: -0.04em;
}

/* ============================================================
   Buttons
   ============================================================ */

.nw-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  font-family: var(--nw-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.24s ease;
}

.nw-button span {
  transition: transform 0.24s ease;
}

.nw-button:hover {
  transform: translateY(-2px);
}

.nw-button:hover span {
  transform: translateX(5px);
}

.nw-button--dark {
  background: var(--nw-dark);
  color: var(--nw-bg);
  padding: 16px 28px;
}

.nw-button--dark:hover {
  background: var(--nw-brass);
}

.nw-button--text {
  color: var(--nw-ink);
  padding: 12px 24px;
  border: 1px solid rgba(138, 99, 50, 0.38);
}

.nw-button--text:hover {
  color: var(--nw-brass);
  border-color: var(--nw-brass);
}

.nw-button--light {
  width: fit-content;
  background: var(--nw-bg);
  color: var(--nw-dark);
  padding: 16px 28px;
  margin-top: 36px;
}

.nw-button--light:hover {
  background: var(--nw-brass-bright);
}

/* ============================================================
   Homepage hero
   ============================================================ */

.nw-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--nw-line);
  background: var(--nw-bg);
}

.nw-hero--goal,
.nw-hero--premium {
  min-height: 620px;
}

.nw-hero__inner {
  max-width: none;
  margin: 0;
  padding: 0;
  min-height: 620px;
  display: grid;
  grid-template-columns: 41% 59%;
  gap: 0;
  align-items: stretch;
}

.nw-hero__copy {
  max-width: none;
  padding: 76px 42px 82px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 3;
  background:
    linear-gradient(
      90deg,
      rgba(245, 239, 228, 1) 0%,
      rgba(245, 239, 228, 0.96) 76%,
      rgba(245, 239, 228, 0) 100%
    );
}

.nw-hero__title {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--nw-ink);
  font-family: var(--nw-display);
  font-size: clamp(5rem, 7vw, 8.7rem);
  font-weight: 300;
  line-height: 0.86;
  letter-spacing: -0.065em;
}

.nw-hero__title em {
  color: var(--nw-brass);
  font-style: italic;
  font-weight: 300;
}

.nw-hero__lede {
  max-width: 440px;
  margin: 30px 0 0;
  color: rgba(24, 22, 20, 0.72);
  font-size: 18px;
  line-height: 1.75;
}

.nw-hero__buttons {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  align-items: center;
}

.nw-hero__media {
  min-height: 620px;
  height: 100%;
  padding: 0;
  overflow: hidden;
  background: var(--nw-bg-soft);
}

.nw-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 620px;
  max-height: none;
  object-fit: cover;
  object-position: center center;
  opacity: 1;
  visibility: visible;
  filter: none;
  transform: none;
}

/* ============================================================
   Marquee
   ============================================================ */

.nw-marquee {
  overflow: hidden;
  background: var(--nw-dark);
  color: var(--nw-bg);
  border-bottom: 1px solid var(--nw-line-dark);
  padding: 20px 0;
}

.nw-marquee__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: nw-marquee 38s linear infinite;
}

.nw-marquee span {
  flex-shrink: 0;
  margin: 0 26px;
  font-family: var(--nw-display);
  font-size: 24px;
  font-style: italic;
  color: rgba(245, 239, 228, 0.8);
}

.nw-marquee b {
  flex-shrink: 0;
  color: var(--nw-brass-bright);
  font-weight: 400;
}

@keyframes nw-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ============================================================
   Shared sections
   ============================================================ */

.nw-section {
  padding: 96px 32px;
}

.nw-section__inner {
  max-width: 1400px;
  margin: 0 auto;
}

.nw-section__header {
  margin-bottom: 56px;
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 44px;
  align-items: end;
}

.nw-section__title {
  margin: 18px 0 0;
  color: var(--nw-ink);
  font-family: var(--nw-display);
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.nw-section__lede {
  margin: 0;
  color: var(--nw-muted);
  font-size: 17px;
  line-height: 1.75;
}

.nw-empty {
  border: 1px solid var(--nw-line);
  background: var(--nw-bg-soft);
  padding: 28px;
  color: var(--nw-muted);
}

.nw-empty code {
  display: inline-block;
  background: var(--nw-bg);
  padding: 4px 8px;
  color: var(--nw-ink);
}

/* ============================================================
   Choose Your Weapon
   ============================================================ */

.nw-blends {
  padding: 58px 32px 70px;
  background:
    radial-gradient(circle at 12% 50%, rgba(138, 99, 50, 0.08), transparent 28%),
    var(--nw-bg);
  border-bottom: 1px solid var(--nw-line);
}

.nw-blends__inner {
  max-width: 1400px;
  margin: 0 auto;
}

.nw-blends__heading {
  margin-bottom: 36px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: center;
  text-align: center;
}

.nw-blends__heading h2 {
  margin: 8px 0 0;
  font-family: var(--nw-display);
  font-size: clamp(2.6rem, 4.2vw, 4.5rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: var(--nw-ink);
}

.nw-blends__line {
  height: 1px;
  background: var(--nw-line);
  position: relative;
}

.nw-blends__line::after {
  content: "✦";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--nw-brass);
  font-size: 13px;
}

.nw-blends__line:first-child::after {
  right: -8px;
}

.nw-blends__line:last-child::after {
  left: -8px;
}

.nw-blends__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--nw-line);
  border: 1px solid var(--nw-line);
}

.nw-blend-card {
  min-height: 315px;
  padding: 28px 30px;
  background:
    radial-gradient(circle at 12% 70%, rgba(138, 99, 50, 0.08), transparent 28%),
    var(--nw-bg);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 28px;
  align-items: center;
  overflow: hidden;
  transition: background 0.25s ease, transform 0.25s ease;
}

.nw-blend-card:hover {
  background: var(--nw-bg-soft);
  transform: translateY(-3px);
}

.nw-blend-card__image {
  width: 100%;
  min-height: 270px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.nw-blend-card__image img {
  width: 100%;
  height: 270px;
  max-height: none;
  object-fit: contain;
  object-position: center center;
  transform: scale(1.12);
  filter: drop-shadow(0 22px 30px rgba(24, 22, 20, 0.2));
  transition: transform 0.35s ease;
}

.nw-blend-card:hover .nw-blend-card__image img {
  transform: scale(1.18) translateY(-4px);
}

.nw-blend-card__copy {
  position: relative;
  z-index: 2;
}

.nw-blend-card__label {
  margin: 0 0 14px;
  color: var(--nw-ink);
  font-family: var(--nw-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.nw-blend-card__copy h3 {
  max-width: 260px;
  margin: 0;
  color: var(--nw-muted);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
}

.nw-blend-card__meta {
  margin: 24px 0 0;
  color: var(--nw-brass);
  font-family: var(--nw-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  line-height: 1.7;
  text-transform: uppercase;
}

.nw-blend-card__copy span {
  display: inline-flex;
  margin-top: 18px;
  color: var(--nw-ink);
  font-family: var(--nw-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

/* ============================================================
   Scroll drop animation for coffee bags
   ============================================================ */

.nw-bag-drop {
  transform-origin: center bottom;
}

body.nw-js-ready .nw-bag-drop {
  opacity: 0;
  transform: translateY(-120px) rotate(-4deg) scale(0.94);
  filter: blur(6px);
}

body.nw-js-ready .nw-bag-drop.is-visible {
  animation: nwBagDrop 0.95s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.nw-blend-card:nth-child(1) .nw-bag-drop.is-visible {
  animation-delay: 0.02s;
}

.nw-blend-card:nth-child(2) .nw-bag-drop.is-visible {
  animation-delay: 0.12s;
}

.nw-blend-card:nth-child(3) .nw-bag-drop.is-visible {
  animation-delay: 0.22s;
}

@keyframes nwBagDrop {
  0% {
    opacity: 0;
    transform: translateY(-120px) rotate(-4deg) scale(0.94);
    filter: blur(6px);
  }

  62% {
    opacity: 1;
    transform: translateY(12px) rotate(1deg) scale(1.02);
    filter: blur(0);
  }

  78% {
    opacity: 1;
    transform: translateY(-6px) rotate(-0.5deg) scale(1);
    filter: blur(0);
  }

  100% {
    opacity: 1;
    transform: translateY(0) rotate(0) scale(1);
    filter: blur(0);
  }
}

/* ============================================================
   Story + gear rows
   ============================================================ */

.nw-story-row,
.nw-gear-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  border-bottom: 1px solid var(--nw-line);
  background: var(--nw-bg);
}

.nw-story-row__image,
.nw-gear-row__image {
  min-height: 560px;
  overflow: hidden;
  position: relative;
}

.nw-story-row__image img,
.nw-gear-row__image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.nw-story-row__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(24, 22, 20, 0.52), rgba(24, 22, 20, 0.12)),
    radial-gradient(circle at 25% 45%, rgba(184, 137, 90, 0.18), transparent 38%);
  pointer-events: none;
}

.nw-story-row__copy,
.nw-gear-row__copy {
  padding: 76px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nw-story-row__copy {
  background:
    radial-gradient(circle at 90% 10%, rgba(138, 99, 50, 0.1), transparent 34%),
    var(--nw-bg);
}

.nw-gear-row__copy {
  background:
    radial-gradient(circle at 15% 80%, rgba(138, 99, 50, 0.1), transparent 34%),
    var(--nw-bg);
}

.nw-story-row__copy h2,
.nw-gear-row__copy h2 {
  margin: 18px 0 0;
  color: var(--nw-ink);
  font-family: var(--nw-display);
  font-size: clamp(4rem, 6.3vw, 7.2rem);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.nw-gear-row__copy h2 em {
  color: var(--nw-brass);
  font-style: italic;
}

.nw-story-row__copy p:not(.nw-eyebrow),
.nw-gear-row__copy p:not(.nw-eyebrow) {
  max-width: 460px;
  margin: 28px 0 0;
  color: var(--nw-muted);
  font-size: 17px;
  line-height: 1.75;
}

.nw-story-row__copy a,
.nw-gear-row__copy a {
  width: fit-content;
  margin-top: 34px;
  color: var(--nw-brass);
  border-bottom: 1px solid var(--nw-brass);
  padding-bottom: 8px;
  font-family: var(--nw-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.nw-gear-row__image {
  min-height: 560px;
  overflow: hidden;
  position: relative;
  background: var(--nw-dark);
}

.nw-gear-row__image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center center;
  padding: 0;
  filter: none;
}

/* Legacy split feature support. Keep hidden once new markup is used. */
.nw-split-feature {
  display: none;
}

/* ============================================================
   Product grids / collection pages
   ============================================================ */

.nw-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--nw-line);
  border: 1px solid var(--nw-line);
}

.nw-product-card {
  position: relative;
  overflow: hidden;
  background: var(--nw-bg);
  padding: 34px;
  min-height: 100%;
  transition: background 0.22s ease, transform 0.22s ease;
}

.nw-product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(184, 137, 90, 0.16), transparent 44%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.nw-product-card:hover {
  background: var(--nw-bg-soft);
}

.nw-product-card:hover::before {
  opacity: 1;
}

.nw-product-card__top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  color: var(--nw-faint);
  font-family: var(--nw-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nw-product-card__top span:first-child {
  color: var(--nw-brass);
}

.nw-product-card__image {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--nw-bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.nw-product-card__image::after {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: 999px;
  background: rgba(184, 137, 90, 0.18);
  filter: blur(28px);
  opacity: 0;
  transform: scale(0.88);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.nw-product-card:hover .nw-product-card__image::after {
  opacity: 1;
  transform: scale(1);
}

.nw-product-card__image img {
  position: relative;
  z-index: 2;
  width: 82%;
  height: 82%;
  object-fit: contain;
  transition: transform 0.45s ease;
}

.nw-product-card:hover .nw-product-card__image img {
  transform: translateY(-6px) rotate(-1deg);
}

.nw-product-card__placeholder {
  font-family: var(--nw-display);
  font-size: 62px;
  color: var(--nw-brass);
}

.nw-product-card__info {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--nw-line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: baseline;
}

.nw-product-card__info h3 {
  margin: 0;
  color: var(--nw-ink);
  font-family: var(--nw-display);
  font-size: 28px;
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.nw-product-card__info p {
  margin: 0;
  color: var(--nw-brass);
  font-family: var(--nw-display);
  font-size: 22px;
}

.nw-product-card__cta {
  display: inline-flex;
  margin-top: 22px;
  color: var(--nw-brass);
  font-family: var(--nw-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

/* ============================================================
   Page hero
   ============================================================ */

.nw-page-hero {
  padding: 76px 32px 48px;
  border-bottom: 1px solid var(--nw-line);
  background:
    radial-gradient(circle at 85% 0%, rgba(184, 137, 90, 0.13), transparent 34%),
    var(--nw-bg);
}

.nw-page-hero__inner {
  max-width: 1400px;
  margin: 0 auto;
}

.nw-page-hero__title {
  margin: 18px 0 0;
  color: var(--nw-ink);
  font-family: var(--nw-display);
  font-size: clamp(3rem, 7vw, 6.8rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.nw-page-hero__lede {
  max-width: 42rem;
  margin-top: 24px;
  color: var(--nw-muted);
  font-size: 18px;
  line-height: 1.75;
}

/* ============================================================
   Product page
   ============================================================ */

.nw-product-page {
  border-bottom: 1px solid var(--nw-line);
  background:
    radial-gradient(circle at 82% 8%, rgba(184, 137, 90, 0.14), transparent 34%),
    var(--nw-bg);
}

.nw-product-page__inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 76px 32px 96px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
}

.nw-product-page__media {
  background: var(--nw-bg-soft);
  border: 1px solid var(--nw-line);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.nw-product-page__media img {
  width: 82%;
  height: 82%;
  object-fit: contain;
  filter: drop-shadow(0 24px 38px rgba(24, 22, 20, 0.18));
  animation: nwFloat 5.5s ease-in-out infinite;
}

.nw-product-page__placeholder {
  font-family: var(--nw-display);
  font-size: 80px;
  color: var(--nw-brass);
}

.nw-product-page__details {
  max-width: 620px;
}

.nw-product-page__title {
  margin: 20px 0 0;
  color: var(--nw-ink);
  font-family: var(--nw-display);
  font-size: clamp(3.2rem, 6vw, 6.6rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.nw-product-page__price {
  margin: 28px 0 0;
  color: var(--nw-brass);
  font-family: var(--nw-display);
  font-size: 34px;
  font-weight: 300;
}

.nw-product-page__description {
  margin-top: 28px;
  color: var(--nw-muted);
  font-size: 17px;
  line-height: 1.8;
}

.nw-product-page__description p {
  margin: 0 0 18px;
}

.nw-product-page__description ul {
  margin: 20px 0;
  padding-left: 22px;
  list-style: disc;
}

.nw-product-page__description li {
  margin-bottom: 8px;
}

.nw-product-form {
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--nw-line);
}

.nw-product-form__variants {
  margin-bottom: 22px;
}

.nw-product-form__variants label,
.nw-product-form__qty label {
  display: block;
  margin-bottom: 8px;
  color: var(--nw-brass);
  font-family: var(--nw-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.nw-product-form__variants select,
.nw-product-form__qty input {
  width: 100%;
  border: 1px solid var(--nw-line);
  background: var(--nw-bg-soft);
  color: var(--nw-ink);
  padding: 13px 14px;
  border-radius: 0;
}

.nw-product-form__qty {
  max-width: 130px;
  margin-bottom: 22px;
}

.nw-product-form__button {
  width: 100%;
  max-width: 360px;
}

.nw-product-form__button[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
}

.nw-product-page__meta {
  margin-top: 26px;
}

.nw-product-page__meta a {
  color: var(--nw-brass);
  font-family: var(--nw-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.nw-product-gallery {
  background: var(--nw-bg);
}

.nw-product-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--nw-line);
  border: 1px solid var(--nw-line);
}

.nw-product-gallery__item {
  background: var(--nw-bg-soft);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.nw-product-gallery__item img {
  width: 86%;
  height: 86%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.nw-product-gallery__item:hover img {
  transform: scale(1.05);
}

/* ============================================================
   Cart page
   ============================================================ */

.nw-cart-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 48px;
  align-items: start;
}

.nw-cart-page__items {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--nw-line);
}

.nw-cart-item {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 30px;
  padding: 30px 0;
  border-bottom: 1px solid var(--nw-line);
}

.nw-cart-item__image {
  background: var(--nw-bg-soft);
  border: 1px solid var(--nw-line);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.nw-cart-item__image img {
  width: 84%;
  height: 84%;
  object-fit: contain;
  filter: drop-shadow(0 18px 26px rgba(24, 22, 20, 0.14));
}

.nw-cart-item__content {
  display: flex;
  justify-content: space-between;
  gap: 28px;
}

.nw-cart-item__main {
  min-width: 0;
}

.nw-cart-item__label {
  margin: 0 0 12px;
  color: var(--nw-brass);
  font-family: var(--nw-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.nw-cart-item__title {
  margin: 0;
  color: var(--nw-ink);
  font-family: var(--nw-display);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.nw-cart-item__title a:hover {
  color: var(--nw-brass);
}

.nw-cart-item__variant,
.nw-cart-item__price {
  margin: 12px 0 0;
  color: var(--nw-muted);
}

.nw-cart-item__price {
  color: var(--nw-brass);
  font-family: var(--nw-display);
  font-size: 25px;
}

.nw-cart-item__controls {
  min-width: 140px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nw-cart-item__controls label {
  color: var(--nw-brass);
  font-family: var(--nw-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.nw-cart-item__controls input {
  width: 100%;
  border: 1px solid var(--nw-line);
  background: var(--nw-bg-soft);
  color: var(--nw-ink);
  padding: 12px 13px;
  border-radius: 0;
}

.nw-cart-item__remove {
  color: var(--nw-muted);
  font-family: var(--nw-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nw-cart-item__remove:hover {
  color: var(--nw-brass);
}

.nw-cart-summary {
  position: sticky;
  top: 104px;
  border: 1px solid var(--nw-line);
  background: var(--nw-bg-soft);
  padding: 30px;
}

.nw-cart-summary__row {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--nw-line);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 20px;
}

.nw-cart-summary__row strong {
  color: var(--nw-brass);
  font-family: var(--nw-display);
  font-size: 30px;
  font-weight: 300;
}

.nw-cart-summary__note {
  margin: 14px 0 24px;
  color: var(--nw-muted);
  font-size: 14px;
}

.nw-cart-summary__buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nw-cart-summary__buttons .nw-button {
  width: 100%;
}

.nw-cart-summary__continue {
  display: inline-flex;
  margin-top: 22px;
  color: var(--nw-brass);
  font-family: var(--nw-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* ============================================================
   Newsletter
   ============================================================ */

.nw-newsletter {
  background: var(--nw-dark);
  color: var(--nw-bg);
  padding: 96px 24px;
  text-align: center;
}

.nw-newsletter__inner {
  max-width: 680px;
  margin: 0 auto;
}

.nw-newsletter .nw-eyebrow {
  color: var(--nw-brass-bright);
}

.nw-newsletter .nw-section__title {
  color: var(--nw-bg);
}

.nw-newsletter .nw-section__lede {
  margin: 24px auto 36px;
  color: rgba(245, 239, 228, 0.66);
}

.nw-newsletter__form {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  border: 1px solid var(--nw-line-dark);
  background: rgba(255, 255, 255, 0.04);
}

.nw-newsletter__form input[type="email"] {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--nw-bg);
  padding: 17px 18px;
}

.nw-newsletter__form input::placeholder {
  color: rgba(245, 239, 228, 0.42);
}

.nw-newsletter__form button {
  border: 0;
  background: var(--nw-brass);
  color: var(--nw-dark);
  padding: 0 28px;
  font-family: var(--nw-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  cursor: pointer;
}

.nw-form-message {
  flex-basis: 100%;
  margin: 14px 0 0;
  color: var(--nw-brass-bright);
}

.nw-form-message--error {
  color: #e9a18b;
}

/* ============================================================
   Footer
   ============================================================ */

.nw-footer {
  background: var(--nw-dark);
  color: var(--nw-bg);
  border-top: 1px solid var(--nw-line-dark);
}

.nw-footer__inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 74px 32px 48px;
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 42px;
}

.nw-logo--footer .nw-logo__mark {
  border-color: transparent;
}

.nw-footer__tagline {
  margin: 22px 0 0;
  font-family: var(--nw-display);
  font-size: 22px;
  letter-spacing: -0.03em;
}

.nw-footer__copy {
  max-width: 330px;
  margin: 14px 0 0;
  color: rgba(245, 239, 228, 0.58);
  font-size: 14px;
  line-height: 1.75;
}

.nw-footer__heading {
  margin: 0 0 18px;
  color: var(--nw-brass-bright);
  font-family: var(--nw-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.nw-footer__col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.nw-footer__col a,
.nw-footer__col span {
  margin-bottom: 10px;
  color: rgba(245, 239, 228, 0.58);
  font-size: 14px;
}

.nw-footer__col a:hover {
  color: var(--nw-bg);
}

.nw-footer__bottom {
  max-width: 1500px;
  margin: 0 auto;
  padding: 24px 32px;
  border-top: 1px solid var(--nw-line-dark);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.nw-footer__bottom p {
  margin: 0;
  color: rgba(245, 239, 228, 0.36);
  font-family: var(--nw-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ============================================================
   Animations
   ============================================================ */

.nw-reveal {
  animation: nwFadeUpSoft 1.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.nw-product-card:nth-child(1),
.nw-blend-card:nth-child(1) {
  animation-delay: 0.12s;
}

.nw-product-card:nth-child(2),
.nw-blend-card:nth-child(2) {
  animation-delay: 0.28s;
}

.nw-product-card:nth-child(3),
.nw-blend-card:nth-child(3) {
  animation-delay: 0.44s;
}

@keyframes nwFadeUpSoft {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.985);
    filter: blur(2px);
  }

  60% {
    opacity: 1;
    filter: blur(0);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1024px) {
  .nw-header__inner {
    padding: 0 22px;
    gap: 20px;
  }

  .nw-nav,
  .nw-header__actions {
    display: none;
  }

  .nw-menu-button {
    display: inline-flex;
  }

  .nw-hero__inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .nw-hero__media {
    order: 1;
    min-height: 420px;
  }

  .nw-hero__media img {
    min-height: 420px;
    height: 420px;
    object-fit: cover;
  }

  .nw-hero__copy {
    order: 2;
    padding: 52px 24px 64px;
    background: var(--nw-bg);
  }

  .nw-hero__title {
    font-size: clamp(4rem, 14vw, 6.5rem);
  }

  .nw-section__header {
    grid-template-columns: 1fr;
  }

  .nw-product-grid,
  .nw-blends__grid {
    grid-template-columns: 1fr;
  }

  .nw-blends__heading {
    grid-template-columns: 1fr;
  }

  .nw-blends__line {
    display: none;
  }

  .nw-blend-card {
    grid-template-columns: 0.9fr 1.1fr;
    min-height: 300px;
  }

  .nw-blend-card__image img {
    height: 250px;
    transform: scale(1.08);
  }

  .nw-story-row,
  .nw-gear-row {
    grid-template-columns: 1fr;
  }

  .nw-story-row__image,
  .nw-gear-row__image,
  .nw-story-row__image img,
  .nw-gear-row__image img {
    min-height: 420px;
  }

  .nw-story-row__copy,
  .nw-gear-row__copy {
    padding: 58px 28px;
  }

  .nw-gear-row__copy {
    order: 1;
  }

  .nw-gear-row__image {
    order: 2;
  }

  .nw-product-page__inner {
    grid-template-columns: 1fr;
    padding: 54px 22px 72px;
    gap: 42px;
  }

  .nw-product-page__details {
    max-width: none;
  }

  .nw-product-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nw-cart-page {
    grid-template-columns: 1fr;
  }

  .nw-cart-summary {
    position: static;
  }

  .nw-cart-item {
    grid-template-columns: 130px minmax(0, 1fr);
  }

  .nw-cart-item__content {
    flex-direction: column;
  }

  .nw-footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .nw-announcement {
    font-size: 9px;
    letter-spacing: 0.18em;
  }

  .nw-header__inner {
    min-height: 68px;
  }

  .nw-logo__word {
    font-size: 18px;
  }

  .nw-logo__mark {
    width: 38px;
    height: 38px;
  }

  .nw-hero__media {
    min-height: 320px;
  }

  .nw-hero__media img {
    min-height: 320px;
    height: 320px;
  }

  .nw-hero__copy {
    padding: 42px 20px 52px;
  }

  .nw-hero__title {
    font-size: clamp(3.4rem, 16vw, 5.2rem);
  }

  .nw-hero__lede {
    font-size: 16px;
  }

  .nw-hero__buttons {
    align-items: stretch;
    flex-direction: column;
  }

  .nw-button--dark,
  .nw-button--light,
  .nw-button--text {
    width: 100%;
  }

  .nw-section,
  .nw-blends {
    padding: 64px 20px;
  }

  .nw-section__title {
    font-size: clamp(2.6rem, 14vw, 4.2rem);
  }

  .nw-blend-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 30px 24px 34px;
  }

  .nw-blend-card__image {
    min-height: 260px;
  }

  .nw-blend-card__image img {
    height: 260px;
    transform: scale(1.08);
  }

  .nw-blend-card__copy h3 {
    max-width: none;
  }

  .nw-product-card {
    padding: 24px;
  }

  .nw-product-card__info {
    flex-direction: column;
    gap: 8px;
  }

  .nw-story-row__image,
  .nw-gear-row__image,
  .nw-story-row__image img,
  .nw-gear-row__image img {
    min-height: 320px;
  }

  .nw-story-row__copy,
  .nw-gear-row__copy {
    padding: 44px 22px;
  }

  .nw-story-row__copy h2,
  .nw-gear-row__copy h2 {
    font-size: clamp(3.3rem, 14vw, 5rem);
  }

  .nw-gear-row__image img {
    padding: 0;
    object-fit: cover;
  }

  .nw-page-hero {
    padding: 54px 20px 36px;
  }

  .nw-product-page__title {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .nw-product-form__button {
    max-width: none;
  }

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

  .nw-cart-item {
    grid-template-columns: 1fr;
  }

  .nw-cart-item__image {
    max-width: 230px;
  }

  .nw-newsletter__form {
    flex-direction: column;
  }

  .nw-newsletter__form button {
    padding: 16px;
  }

  .nw-footer__inner {
    grid-template-columns: 1fr;
    padding: 54px 22px 36px;
  }

  .nw-footer__bottom {
    padding: 22px;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nw-reveal,
  .nw-marquee__track,
  .nw-product-page__media img,
  .nw-bag-drop {
    animation: none !important;
  }

  .nw-product-card,
  .nw-product-card__image img,
  .nw-blend-card,
  .nw-blend-card__image img,
  .nw-button,
  .nw-product-gallery__item img {
    transition: none !important;
  }

  body.nw-js-ready .nw-bag-drop {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
<style>
  .nw-story-row__image {
    min-height: 720px;
    background: #f4efe4;
  }

  .nw-story-row__image img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    object-position: center 35% !important;
  }

  @media screen and (max-width: 749px) {
    .nw-story-row__image {
      min-height: 420px;
    }

    .nw-story-row__image img {
      object-position: center top !important;
    }
  }
</style>