/* ===== NaturaRest — main stylesheet ===== */
:root {
  --green-900: #1a3324;
  --green-800: #2d5a3d;
  --green-700: #3d6b4d;
  --green-100: #d9e1d9;
  --taupe-700: #6b5b45;
  --taupe-500: #9b8568;
  --taupe-300: #c7b89a;
  --cream-50:  #faf7f1;
  --cream-100: #f5f1ea;
  --cream-200: #ebe5d8;
  --cream-300: #ddd4be;
  --ink:       #1d1c19;
  --ink-mute:  #5a5550;
  --ink-soft:  #8a847b;
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans:  "Work Sans", -apple-system, system-ui, sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, monospace;
  --sidebar-w: 280px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--cream-50);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; }
.nr-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* ===== Shell ===== */
.nr-shell {
  display: grid;
  grid-template-columns: var(--sidebar-w) 1fr;
  min-height: 100vh;
}
.nr-main {
  min-width: 0;
  background: var(--cream-50);
}

/* ===== Sidebar ===== */
.nr-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  background: var(--green-900);
  color: var(--cream-100);
  border-right: 1px solid rgba(245,241,234,0.08);
  overflow: hidden;
}
.nr-sidebar-inner {
  height: 100%;
  padding: 36px 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
.nr-sidebar-edge {
  position: absolute;
  inset: 18px 14px 18px 14px;
  border: 1px solid rgba(245,241,234,0.08);
  pointer-events: none;
  z-index: 0;
}
.nr-logo img {
  width: 100%;
  max-width: 200px;
  height: auto;
}
.nr-nav { margin-top: 56px; flex: 1; }
.nr-nav-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--taupe-300);
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 28px 0 14px;
}
.nr-nav-label:first-child { margin-top: 0; }
.nr-nav-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--taupe-500);
}
.nr-nav ul { list-style: none; margin: 0; padding: 0; }
.nr-nav li { margin: 0; }
.nr-nav a {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.6;
  color: var(--cream-100);
  display: block;
  padding: 2px 0;
  transition: color .2s, transform .2s;
  position: relative;
}
.nr-nav a:hover { color: #fff; transform: translateX(4px); }
.nr-nav a:hover::after {
  content: "·";
  position: absolute;
  left: -16px;
  color: var(--taupe-300);
}
.nr-nav a.is-active {
  color: var(--taupe-300);
  font-style: italic;
}
.nr-nav a.is-active::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 50%;
  width: 8px;
  height: 1px;
  background: var(--taupe-300);
}
.nr-sidebar-foot {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(245,241,234,0.1);
}
.nr-sidebar-tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--cream-200);
  margin: 12px 0 18px;
  line-height: 1.45;
  opacity: 0.85;
  width: 100%;
  max-width: 200px;
}
.nr-sidebar-cart {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  margin: 0;
  border: 1px solid rgba(245,241,234,0.15);
  border-radius: 999px;
  color: var(--cream-100);
  text-decoration: none;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  transition: background .2s ease, border-color .2s ease;
}
.nr-sidebar-cart:hover { background: rgba(245,241,234,0.08); border-color: rgba(245,241,234,0.3); }
.nr-cart-count {
  display: inline-flex;
  min-width: 22px;
  height: 22px;
  padding: 0 7px;
  border-radius: 999px;
  background: var(--cream-100);
  color: var(--green-900);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  align-items: center;
  justify-content: center;
}
.nr-mobilenav-cart {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
}
.nr-mobilenav-cart .nr-cart-count {
  background: var(--green-900);
  color: var(--cream-100);
}
.nr-pdp-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 14px 22px;
  color: #128c7e;
  border-color: #128c7e;
}
.nr-pdp-whatsapp:hover { background: #128c7e; color: #fff; }
.nr-pdp-whatsapp svg { flex-shrink: 0; }

/* ===== Mobile nav ===== */
.nr-mobilenav { display: none; }

/* ===== Hero ===== */
.nr-hero {
  position: relative;
  background: var(--green-900);
  color: var(--cream-100);
  overflow: hidden;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}
.nr-hero-image { position: absolute; inset: 0; }
.nr-hero-image > div { height: 100%; }
.nr-hero-image img { width: 100%; height: 100%; object-fit: cover; }
.nr-hero-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.65) 48%, rgba(0,0,0,.48) 100%);
}
.nr-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 72px 80px 118px;
  max-width: 880px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.nr-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--taupe-300);
  display: inline-block;
  padding-bottom: 16px;
}
.nr-eyebrow--light { color: var(--taupe-500); }
.nr-eyebrow--dark  { color: var(--taupe-700); }
.nr-hero-h {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(48px, 6.2vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 8px 0 28px;
  color: var(--cream-50);
}
.nr-hero-h em { font-style: italic; font-weight: 400; color: var(--taupe-300); }
.nr-hero-sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--cream-200);
  max-width: 540px;
  margin: 0 0 36px;
  font-weight: 300;
}
.nr-hero-cta { display: flex; gap: 18px; flex-wrap: wrap; }
.nr-hero-scroll {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 72px;
  width: 34px;
  height: 48px;
  transform: translateX(-50%);
  color: var(--cream-100);
  opacity: .78;
  transition: opacity .2s ease, transform .2s ease;
}
.nr-hero-scroll:hover {
  opacity: 1;
  transform: translateX(-50%) translateY(3px);
}
.nr-hero-scroll-icon {
  width: 24px;
  height: 38px;
  margin: 0 auto;
  border: 1px solid rgba(245,241,234,.72);
  border-radius: 999px;
  display: block;
  position: relative;
}
.nr-hero-scroll-icon span {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 3px;
  height: 7px;
  border-radius: 999px;
  background: var(--cream-100);
  transform: translateX(-50%);
  animation: nr-scroll-cue 1.8s ease-in-out infinite;
}
@keyframes nr-scroll-cue {
  0% { opacity: 0; transform: translate(-50%, 0); }
  30% { opacity: 1; }
  70% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 12px); }
}

/* ===== Buttons ===== */
.nr-btn {
  display: inline-block;
  padding: 16px 28px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: all .2s;
  cursor: pointer;
  border: 1px solid transparent;
  text-align: center;
}
.nr-btn-primary { background: var(--cream-50); color: var(--green-900); }
.nr-btn-primary:hover { background: var(--taupe-300); }
.nr-btn-ghost {
  background: transparent;
  color: var(--cream-100);
  border-color: rgba(245,241,234,0.35);
}
.nr-btn-ghost:hover { border-color: var(--cream-100); background: rgba(245,241,234,0.06); }
.nr-btn-dark {
  background: var(--green-900);
  color: var(--cream-50);
}
.nr-btn-dark:hover { background: var(--green-800); }
.nr-btn-outline {
  background: transparent;
  color: var(--green-900);
  border-color: var(--green-900);
}
.nr-btn-outline:hover { background: var(--green-900); color: var(--cream-50); }
.nr-btn-block { display: block; width: 100%; }

/* ===== Section heads ===== */
.nr-section-head {
  padding: 100px 80px 40px;
  max-width: 780px;
}
.nr-section-head--center {
  margin: 0 auto;
  text-align: center;
}
.nr-section-head h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 4.4vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 8px 0 0;
  color: var(--green-900);
}

/* ===== Products (homepage, simplified) ===== */
.nr-products { padding-bottom: 80px; }
.nr-product-grid {
  padding: 0 80px;
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr 1fr;
}
.nr-product {
  background: var(--cream-100);
  transition: transform .35s ease;
  display: flex;
  flex-direction: column;
}
.nr-product:hover { transform: translateY(-4px); }
.nr-product-media { position: relative; overflow: hidden; display: block; }
.nr-product-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1 / 1; }
.nr-product-tag {
  position: absolute;
  top: 18px; left: 18px;
  background: var(--cream-50);
  color: var(--green-800);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.nr-product-body {
  padding: 24px 28px 26px;
  border-top: 1px solid var(--cream-200);
}
.nr-product-name-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}
.nr-product h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.1;
  margin: 0;
  color: var(--green-900);
}
.nr-product h3 a {
  transition: color .2s ease;
}
.nr-product h3 a:hover { color: var(--green-700); }
.nr-product-price {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--taupe-700);
  white-space: nowrap;
}
.nr-product-price del { opacity: 0.55; margin-right: 6px; font-weight: 300; }
.nr-product-price ins { text-decoration: none; }

.nr-link-arrow {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--green-800);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--green-800);
  transition: gap .2s;
}
.nr-link-arrow:hover { gap: 14px; }
.nr-link-arrow span { font-family: var(--serif); font-size: 18px; line-height: 1; }

/* ===== Story ===== */
.nr-story {
  background: var(--cream-100);
  padding: 100px 80px;
}
.nr-story-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
}
.nr-story-media img { width: 100%; height: auto; aspect-ratio: 3 / 4; object-fit: cover; }
.nr-story-copy h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  margin: 8px 0 24px;
  color: var(--green-900);
}
.nr-story-copy p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-mute);
  margin: 0 0 22px;
  max-width: 54ch;
}
.nr-quote {
  margin: 28px 0;
  padding: 22px 28px;
  border-left: 2px solid var(--taupe-500);
  background: var(--cream-50);
}
.nr-quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  color: var(--green-900);
  margin: 0 0 8px !important;
}
.nr-quote footer {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--taupe-700);
}

/* ===== Certifications ===== */
.nr-certs {
  padding: 60px 80px 80px;
  border-top: 1px solid var(--cream-200);
  border-bottom: 1px solid var(--cream-200);
  background: var(--cream-50);
}
.nr-certs-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--taupe-700);
  text-align: center;
  margin-bottom: 36px;
}
.nr-certs ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.nr-certs li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--cream-100);
  min-width: 0;
}
.nr-certs li > div:last-child {
  min-width: 0;
  overflow-wrap: anywhere;
}
.nr-cert-mark {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--cream-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nr-certs strong {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 18px;
  color: var(--green-900);
  display: block;
  line-height: 1.1;
}
.nr-certs span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ===== Reviews ===== */
.nr-reviews { padding: 0 80px 100px; }
.nr-review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.nr-review {
  background: var(--cream-100);
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.nr-review h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  color: var(--green-900);
  margin: 0;
}
.nr-review p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-mute);
  margin: 0;
}
.nr-review footer {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--cream-300);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nr-review footer strong {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 16px;
  color: var(--green-900);
}
.nr-review footer span {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  color: var(--ink-soft);
  text-transform: uppercase;
}
.nr-review footer em {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--taupe-700);
  margin-top: 4px;
}

/* ===== Signup ===== */
.nr-signup {
  background: var(--cream-100);
  color: var(--ink);
  padding: 100px 80px;
  border-top: 1px solid var(--cream-200);
}
.nr-signup-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.nr-signup h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.05;
  margin: 8px 0 16px;
  color: var(--green-900);
}
.nr-signup p {
  color: var(--ink-mute);
  font-size: 16px;
  margin: 0;
  max-width: 36ch;
  line-height: 1.6;
}
.nr-signup-form {
  display: flex;
  border: 1px solid var(--cream-300);
  background: #fff;
  box-shadow: 0 14px 40px rgba(26, 51, 36, 0.08);
}
.nr-signup-form input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  padding: 20px 22px;
  outline: none;
}
.nr-signup-form input::placeholder { color: var(--ink-soft); }
.nr-signup-form button {
  background: var(--green-900);
  color: var(--cream-50);
  border: none;
  padding: 20px 28px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: background .2s;
}
.nr-signup-form button:hover { background: var(--green-800); }
.nr-signup-form button[disabled] { opacity: 0.6; cursor: progress; }
.nr-signup-sent {
  padding: 20px 22px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--green-800);
}
.nr-signup-error {
  padding: 14px 22px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #9b3c2c;
}

/* ===== Footer ===== */
.nr-footer {
  background: var(--cream-50);
  color: var(--ink-mute);
  padding: 80px 80px 28px;
  border-top: 1px solid var(--cream-300);
}
.nr-footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2.5fr;
  gap: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--cream-300);
}
.nr-footer-logo { width: 180px; margin-bottom: 22px; }
.nr-footer-logo--dark { display: none; }
.nr-footer-brand p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-mute);
  max-width: 36ch;
  margin: 0;
}
.nr-footer-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
}
.nr-footer-cols h5 {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--taupe-700);
  margin: 0 0 18px;
  font-weight: 400;
}
.nr-footer-cols ul { list-style: none; padding: 0; margin: 0; }
.nr-footer-cols a,
.nr-footer-cols span {
  display: block;
  font-size: 14.5px;
  line-height: 2;
  color: var(--ink-mute);
  transition: color .2s;
}
.nr-footer-cols a:hover { color: var(--green-800); }
.nr-footer-cols span { opacity: 0.6; font-size: 12.5px; margin-top: 6px; }
.nr-footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--taupe-700);
  flex-wrap: wrap;
}

/* ===== Page header (interior pages) ===== */
.nr-pagehead {
  padding: 60px 80px 60px;
  border-bottom: 1px solid var(--cream-200);
  background: var(--cream-50);
}
.nr-pagehead-inner {
  max-width: 1100px;
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 60px;
  align-items: end;
}
.nr-pagehead h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(44px, 5.4vw, 78px);
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--green-900);
  margin: 8px 0 0;
}
.nr-pagehead h1 em { font-style: italic; color: var(--taupe-700); font-weight: 400; }
.nr-pagehead-lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  line-height: 1.5;
  color: var(--ink-mute);
  margin: 0;
  max-width: 44ch;
}

/* ===== Crumbs ===== */
.nr-crumbs {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--taupe-700);
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
}
.nr-crumbs a { color: var(--taupe-700); }
.nr-crumbs a:hover { color: var(--green-800); }
.nr-crumbs .sep { opacity: 0.5; }

/* ===== Product detail ===== */
.nr-pdp {
  padding: 60px 80px 100px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: start;
  max-width: 1300px;
}
.nr-pdp-gallery {
  display: grid;
  gap: 14px;
  position: sticky;
  top: 24px;
}
.nr-pdp-main {
  background: var(--cream-100);
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.nr-pdp-main img { width: 100%; height: 100%; object-fit: cover; }
.nr-pdp-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.nr-pdp-thumb {
  cursor: pointer;
  border: 1px solid transparent;
  transition: border-color .2s;
  background: var(--cream-100);
  padding: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.nr-pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.nr-pdp-thumb.is-active { border-color: var(--green-800); }

.nr-pdp-info { padding: 0; }
.nr-pdp-info h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 3.8vw, 52px);
  line-height: 1.05;
  color: var(--green-900);
  margin: 8px 0 12px;
}
.nr-pdp-stars {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.nr-pdp-reviewcount {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--ink-soft);
  text-transform: uppercase;
}
.nr-pdp-pricerow {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--cream-200);
  margin-bottom: 26px;
}
.nr-pdp-price {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--green-900);
}
.nr-pdp-price del { font-size: 18px; color: var(--ink-soft); text-decoration: line-through; margin-right: 12px; }
.nr-pdp-price ins { text-decoration: none; }
.nr-pdp-priceold {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink-soft);
  text-decoration: line-through;
}
.nr-pdp-stock {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--green-800);
  text-transform: uppercase;
  margin-left: auto;
}
.nr-pdp-stock.is-out { color: #b3543f; }
.nr-pdp-lede {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-mute);
  margin: 0 0 30px;
}

.nr-opt {
  margin-bottom: 26px;
}
.nr-opt-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}
.nr-opt-value {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--taupe-700);
}
.nr-opt-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.nr-chip {
  background: transparent;
  border: 1px solid var(--cream-300);
  padding: 12px 16px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: all .15s;
  letter-spacing: .03em;
}
.nr-chip:hover { border-color: var(--green-800); }
.nr-chip:disabled {
  opacity: .4;
  cursor: not-allowed;
  text-decoration: line-through;
}
.nr-chip.is-active {
  background: var(--green-900);
  color: var(--cream-50);
  border-color: var(--green-900);
}
.nr-chip[disabled],
.nr-chip.is-disabled {
  opacity: 0.4;
  cursor: not-allowed;
  text-decoration: line-through;
}
.nr-chip-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 12px 18px;
}
.nr-chip-stack small {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: 0.7;
  font-weight: 400;
}

.nr-pdp-qty {
  display: flex;
  align-items: stretch;
  gap: 16px;
  margin: 30px 0 14px;
}
.nr-qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--cream-300);
  background: var(--cream-50);
}
.nr-qty button {
  background: transparent;
  border: none;
  width: 44px;
  height: 52px;
  font-size: 20px;
  color: var(--green-900);
  cursor: pointer;
}
.nr-qty input {
  width: 40px;
  text-align: center;
  border: none;
  background: transparent;
  font-family: var(--mono);
  font-size: 14px;
  color: var(--green-900);
}
.nr-pdp-add { flex: 1; padding: 16px 22px; border: 0; }
.nr-pdp-native-cart { margin-top: 26px; }
.nr-pdp-native-cart form.cart {
  display: flex;
  align-items: end;
  gap: 14px;
  flex-wrap: wrap;
}
.nr-pdp-native-cart .single_add_to_cart_button,
.nr-pdp-native-cart .button {
  min-height: 52px;
}
.nr-pdp-native-cart table.group_table {
  width: 100%;
  margin-bottom: 18px;
  border-collapse: collapse;
  background: var(--cream-100);
}
.nr-pdp-native-cart table.group_table td {
  padding: 14px;
  border-bottom: 1px solid var(--cream-200);
}
.nr-pdp-native-cart table.group_table td:first-child { width: 84px; }
.nr-pdp-native-cart .woocommerce-grouped-product-list-item__label a {
  color: var(--green-900);
  font-family: var(--serif);
  font-size: 18px;
}

.nr-pdp-perks {
  list-style: none;
  padding: 24px 0 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.nr-pdp-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  color: var(--ink-mute);
}
.nr-pdp-perks li::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--green-800);
  border-radius: 50%;
  flex-shrink: 0;
}

/* PDP detail sections */
.nr-pdp-details {
  padding: 0 80px 100px;
}
.nr-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  align-items: start;
  margin-bottom: 100px;
}
.nr-detail-grid.is-reverse { direction: rtl; }
.nr-detail-grid.is-reverse > * { direction: ltr; }
.nr-detail-grid img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.nr-detail-grid h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.1;
  margin: 8px 0 18px;
  color: var(--green-900);
}
.nr-detail-grid p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-mute);
  margin: 0 0 16px;
  max-width: 50ch;
}

.nr-specs {
  background: var(--cream-100);
  padding: 50px 80px;
  margin-bottom: 100px;
}
.nr-specs-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}
.nr-specs h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 32px;
  margin: 0 0 8px;
  color: var(--green-900);
}
.nr-specs > div > p {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--taupe-700);
  text-transform: uppercase;
  margin: 0;
}
.nr-specs dl {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--cream-200);
  border: 1px solid var(--cream-200);
}
.nr-specs dt,
.nr-specs dd {
  background: var(--cream-100);
  padding: 16px 20px;
  margin: 0;
}
.nr-specs dt {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.nr-specs dd {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--green-900);
}

/* ===== FAQ ===== */
.nr-faq {
  padding: 0 80px 100px;
  max-width: 1000px;
}
.nr-faq h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 3.8vw, 48px);
  margin: 0 0 36px;
  color: var(--green-900);
}
.nr-faq-item {
  border-top: 1px solid var(--cream-200);
}
.nr-faq-item:last-child { border-bottom: 1px solid var(--cream-200); }
.nr-faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  padding: 22px 0;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--green-900);
  text-align: left;
  cursor: pointer;
}
.nr-faq-q .toggle { font-family: var(--mono); font-size: 14px; color: var(--taupe-700); }
.nr-faq-a {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-mute);
  padding: 0 60px 26px 0;
  max-width: 70ch;
  display: none;
}
.nr-faq-item.is-open .nr-faq-a { display: block; }

/* ===== Story page ===== */
.nr-storypage {
  padding: 0;
}
.nr-storyhero {
  position: relative;
  height: 60vh;
  min-height: 480px;
  overflow: hidden;
}
.nr-storyhero > div { height: 100%; }
.nr-storyhero img { width: 100%; height: 100%; object-fit: cover; }
.nr-storyhero-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,51,36,0.4) 0%, rgba(26,51,36,0.85) 100%);
}
.nr-storyhero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 60px 80px;
  color: var(--cream-50);
  z-index: 1;
}
.nr-storyhero-content h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1.0;
  margin: 0;
  max-width: 16ch;
}
.nr-storyhero-content h1 em { font-style: italic; color: var(--taupe-300); }

.nr-story-section {
  padding: 100px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1300px;
}
.nr-story-section.is-reverse { direction: rtl; }
.nr-story-section.is-reverse > * { direction: ltr; }
.nr-story-section img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.nr-story-section h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  color: var(--green-900);
  margin: 8px 0 22px;
}
.nr-story-section p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-mute);
  margin: 0 0 18px;
  max-width: 50ch;
}
.nr-story-section.is-dark {
  max-width: none;
  background: var(--green-900);
  color: var(--cream-100);
}
.nr-story-section.is-dark h2 { color: var(--cream-50); }
.nr-story-section.is-dark p { color: var(--cream-200); }

.nr-values {
  background: var(--cream-100);
  padding: 100px 80px;
}
.nr-values-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.nr-values-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 60px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.nr-values-head h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  margin: 8px 0 0;
  color: var(--green-900);
  max-width: 16ch;
}
.nr-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
.nr-value-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--taupe-700);
  display: block;
  margin-bottom: 16px;
}
.nr-value h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  color: var(--green-900);
  margin: 0 0 12px;
  line-height: 1.2;
}
.nr-value p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-mute);
  margin: 0;
}

/* ===== Contact ===== */
.nr-contact {
  padding: 80px 80px 100px;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  max-width: 1300px;
  align-items: start;
}
.nr-contact-aside h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  color: var(--green-900);
  margin: 24px 0 6px;
}
.nr-contact-aside p {
  font-size: 15px;
  color: var(--ink-mute);
  margin: 0 0 6px;
}
.nr-contact-aside a {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--green-800);
  border-bottom: 1px solid var(--cream-300);
  padding-bottom: 2px;
}
.nr-contact-aside a:hover { border-color: var(--green-800); }
.nr-contact-address {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--green-900);
  margin-top: 10px;
  line-height: 1.5;
}

.nr-form {
  display: grid;
  gap: 22px;
}
.nr-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.nr-field { display: flex; flex-direction: column; gap: 6px; }
.nr-field label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.nr-field input,
.nr-field select,
.nr-field textarea {
  font-family: var(--sans);
  font-size: 15px;
  padding: 14px 16px;
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  color: var(--ink);
  outline: none;
  transition: border-color .2s;
}
.nr-field input:focus,
.nr-field select:focus,
.nr-field textarea:focus { border-color: var(--green-800); }
.nr-field textarea { min-height: 160px; resize: vertical; font-family: var(--sans); }
.nr-form-success {
  padding: 60px 40px;
  text-align: center;
  background: var(--cream-100);
}
.nr-form-success h3 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  color: var(--green-900);
  margin: 0 0 12px;
}
.nr-form-success p {
  color: var(--ink-mute);
  margin: 0;
}
.nr-form-error {
  background: #f3d8d2;
  color: #6e2418;
  padding: 14px 16px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.nr-field--order { display: none; }
.nr-field--order.is-visible { display: flex; }

/* ===== Policy / Long-form content ===== */
.nr-policy {
  padding: 60px 80px 100px;
  max-width: 880px;
}
.nr-policy-toc {
  background: var(--cream-100);
  padding: 28px 32px;
  margin-bottom: 60px;
}
.nr-policy-toc strong {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--taupe-700);
  display: block;
  margin-bottom: 12px;
  font-weight: 400;
}
.nr-policy-toc ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: toc;
  columns: 2;
  gap: 20px;
}
.nr-policy-toc li {
  counter-increment: toc;
  padding: 4px 0;
}
.nr-policy-toc li a {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--green-900);
}
.nr-policy-toc li a::before {
  content: "0" counter(toc) "  ";
  font-family: var(--mono);
  font-size: 11px;
  color: var(--taupe-500);
  letter-spacing: .12em;
}
.nr-policy-toc li a:hover { color: var(--taupe-700); }

.nr-policy-section { margin-bottom: 56px; scroll-margin-top: 24px; }
.nr-policy-section h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(26px, 2.8vw, 36px);
  line-height: 1.15;
  margin: 0 0 18px;
  color: var(--green-900);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--cream-200);
}
.nr-policy-section h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  margin: 24px 0 10px;
  color: var(--green-900);
}
.nr-policy-section p,
.nr-policy-section li {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--ink-mute);
  margin: 0 0 14px;
  max-width: 70ch;
}
.nr-policy-section ul { padding-left: 22px; margin: 0 0 18px; }
.nr-policy-section ul li { margin-bottom: 6px; }
.nr-policy-section strong { color: var(--ink); font-weight: 500; }
.nr-policy-meta {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--taupe-700);
  padding-bottom: 26px;
  border-bottom: 1px solid var(--cream-200);
  margin-bottom: 36px;
}
.nr-policy-callout {
  background: var(--cream-100);
  padding: 22px 26px;
  border-left: 2px solid var(--green-800);
  margin: 18px 0;
}
.nr-policy-callout p { margin: 0; }
.nr-policy-foot {
  border-top: 1px solid var(--cream-200);
  padding-top: 32px;
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.nr-policy-foot p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-mute);
  margin: 0;
}

/* Generic article (page.php) */
.nr-article { padding: 60px 80px 100px; max-width: 880px; }
.nr-article h1 { font-family: var(--serif); font-weight: 500; font-size: clamp(36px, 4vw, 56px); color: var(--green-900); margin: 0 0 28px; }
.nr-article p { font-size: 16px; line-height: 1.75; color: var(--ink-mute); margin: 0 0 18px; }

/* Transactional WooCommerce pages use the full content width. */
.nr-commerce-page {
  padding: 60px 80px 100px;
}
.nr-commerce-page-inner {
  width: 100%;
  max-width: 1240px;
}
.nr-commerce-page .nr-pagehead {
  padding: 0;
  background: transparent;
}
.nr-commerce-page .nr-pagehead h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 4vw, 60px);
  line-height: 1.05;
  color: var(--green-900);
  margin: 0 0 38px;
}

/* Screen-reader-only utility */
.screen-reader-text {
  border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
  height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; word-wrap: normal !important;
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .nr-hero-content { padding: 90px 56px 80px; }
  .nr-section-head, .nr-product-grid, .nr-story, .nr-certs, .nr-reviews,
  .nr-signup, .nr-footer, .nr-pagehead, .nr-pdp, .nr-pdp-details,
  .nr-specs, .nr-faq, .nr-storyhero-content, .nr-story-section,
  .nr-values, .nr-contact, .nr-policy, .nr-article {
    padding-left: 56px; padding-right: 56px;
  }
  .nr-commerce-page { padding-left: 56px; padding-right: 56px; }
  .nr-review-grid { grid-template-columns: 1fr 1fr; }
  .nr-review-grid > :last-child { grid-column: 1 / -1; }
  .nr-certs ul { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nr-footer-top { grid-template-columns: 1fr; gap: 50px; }
  .nr-pdp { grid-template-columns: 1fr; gap: 40px; }
  .nr-pdp-gallery { position: relative; top: auto; }
  .nr-values-grid { grid-template-columns: 1fr; gap: 32px; }
  .nr-contact { grid-template-columns: 1fr; gap: 50px; }
  .nr-pagehead-inner { grid-template-columns: 1fr; gap: 24px; }
  .nr-story-section { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  :root { --sidebar-w: 0px; }
  .nr-shell { grid-template-columns: 1fr; }
  .nr-sidebar { display: none; }

  .nr-mobilenav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 22px;
    background: var(--cream-50);
    border-bottom: 1px solid var(--cream-200);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .nr-mobilenav-logo img { height: 36px; width: auto; }
  .nr-mobilenav-btn {
    background: transparent;
    border: none;
    width: 28px; height: 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 0;
  }
  .nr-mobilenav-btn span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--green-900);
  }
  .nr-mobilenav-drop {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream-50);
    border-bottom: 1px solid var(--cream-200);
    padding: 20px 22px;
    display: none;
    flex-direction: column;
    gap: 14px;
  }
  .nr-mobilenav.is-open .nr-mobilenav-drop { display: flex; }
  .nr-mobilenav-drop a {
    font-family: var(--serif);
    font-size: 22px;
    color: var(--green-900);
  }

  .nr-hero {
    min-height: 0;
    display: block;
  }
  .nr-hero-content {
    padding: 72px 28px 64px;
    display: block;
  }
  .nr-hero-scroll { display: none; }
  .nr-hero-cta { flex-direction: column; align-items: stretch; }
  .nr-section-head, .nr-product-grid, .nr-story, .nr-certs, .nr-reviews,
  .nr-signup, .nr-footer, .nr-pagehead, .nr-pdp, .nr-pdp-details,
  .nr-specs, .nr-faq, .nr-storyhero-content, .nr-story-section,
  .nr-values, .nr-contact, .nr-policy, .nr-article {
    padding-left: 28px; padding-right: 28px;
  }
  .nr-commerce-page { padding: 44px 28px 72px; }
  .nr-section-head { padding-top: 72px; }
  .nr-product-grid,
  .nr-products--minimal .nr-product-grid { grid-template-columns: 1fr; }
  .nr-story-grid { grid-template-columns: 1fr; gap: 36px; }
  .nr-certs ul { grid-template-columns: repeat(2, 1fr); }
  .nr-review-grid { grid-template-columns: 1fr; }
  .nr-review-grid > :last-child { grid-column: auto; }
  .nr-signup-inner { grid-template-columns: 1fr; gap: 32px; }
  .nr-footer {
    background: var(--green-900);
    color: var(--cream-200);
    border-top-color: rgba(245,241,234,.08);
  }
  .nr-footer-top { border-bottom-color: rgba(245,241,234,.1); }
  .nr-footer-logo--light { display: none; }
  .nr-footer-logo--dark { display: block; }
  .nr-footer-brand p,
  .nr-footer-cols a,
  .nr-footer-cols span { color: var(--cream-200); }
  .nr-footer-cols h5,
  .nr-footer-bottom { color: var(--taupe-300); }
  .nr-footer-cols a:hover { color: #fff; }
  .nr-footer-cols { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .nr-footer-bottom { flex-direction: column; }
  .nr-signup-form { flex-direction: column; }
  .nr-signup-form button { padding: 16px; }
  .nr-specs-inner { grid-template-columns: 1fr; gap: 28px; }
  .nr-specs dl { grid-template-columns: 1fr; }
  .nr-form-row { grid-template-columns: 1fr; }
  .nr-policy-toc ol { columns: 1; }
  .nr-storyhero { min-height: 360px; height: 50vh; }
  .nr-storyhero-content { padding: 32px 28px; }
}

@media (max-width: 520px) {
  .nr-certs { padding-left: 20px; padding-right: 20px; }
  .nr-certs ul { gap: 12px; }
  .nr-certs li {
    padding: 16px 12px;
    gap: 10px;
    align-items: flex-start;
  }
  .nr-cert-mark {
    width: 32px;
    height: 32px;
  }
  .nr-certs strong { font-size: 16px; }
  .nr-certs span {
    font-size: 9px;
    letter-spacing: .08em;
  }
  .nr-product-name-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .nr-footer-cols {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nr-hero-scroll-icon span { animation: none; }
}
