/* ───────────────────────────────────────────────────────────────
   Baseline Nutrition — Global Stylesheet
   Brand: Olive #4f5a2b · Warm Brown #896651 · Berry #7b2e64
   Cream #fefef6 background · Black text · Playfair + Inter
   ─────────────────────────────────────────────────────────────── */

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

:root {
  --bn-cream:        #fefef6;
  --bn-cream-2:      #f7f5ea;
  --bn-cream-3:      #ede9d8;
  --bn-olive:        #4f5a2b;
  --bn-olive-dark:   #3a4220;
  --bn-olive-soft:   #c8ceb1;
  --bn-brown:        #896651;
  --bn-brown-soft:   #d6c4b8;
  --bn-berry:        #7b2e64;
  --bn-rule:         #d8d2bd;
  --bn-rule-soft:    #ece7d3;
  --bn-ink:          #000000;
  --bn-ink-2:        #2a2a2a;

  --bn-serif: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --bn-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  --bn-step--2: clamp(11px, 0.72vw, 13px);
  --bn-step--1: clamp(13px, 0.85vw, 14px);
  --bn-step-0:  clamp(15px, 1vw, 17px);
  --bn-step-1:  clamp(17px, 1.2vw, 20px);
  --bn-step-2:  clamp(22px, 1.6vw, 26px);
  --bn-step-3:  clamp(26px, 2.2vw, 34px);
  --bn-step-4:  clamp(34px, 3.2vw, 48px);
  --bn-step-5:  clamp(44px, 4.4vw, 64px);

  --bn-gutter: 56px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--bn-sans);
  color: var(--bn-ink);
  background: var(--bn-cream);
  font-size: var(--bn-step-0);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
button { font: inherit; color: inherit; cursor: pointer; }

/* ── Atoms ──────────────────────────────────────────────────── */
.eyebrow {
  font-family: var(--bn-sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bn-brown);
  font-weight: 500;
}
.serif    { font-family: var(--bn-serif); font-weight: 500; letter-spacing: -0.01em; }
.serif em { font-style: italic; font-weight: 400; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: 999px;
  background: var(--bn-olive);
  color: var(--bn-cream);
  font-family: var(--bn-sans);
  font-size: 15px;
  font-weight: 500;
  border: 0;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background .15s ease, transform .15s ease;
}
.btn:hover { background: var(--bn-olive-dark); transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--bn-olive);
  border: 1px solid var(--bn-olive);
}
.btn--ghost:hover { background: var(--bn-olive); color: var(--bn-cream); }
.btn--lg { padding: 16px 30px; font-size: 16px; }
.btn--sm { padding: 9px 18px; font-size: 13px; }

.text-link {
  color: var(--bn-olive);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

/* ── Navigation ─────────────────────────────────────────────── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--bn-gutter);
  border-bottom: 1px solid var(--bn-rule);
  background: var(--bn-cream);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav__logo {
  font-family: var(--bn-serif);
  font-size: 24px;
  letter-spacing: -0.015em;
  color: var(--bn-ink);
  text-decoration: none;
  font-weight: 500;
}
.nav__logo span { color: var(--bn-olive); }
.nav__links {
  display: flex;
  gap: 32px;
  font-size: 14px;
}
.nav__links a {
  color: var(--bn-ink-2);
  text-decoration: none;
  transition: color .15s ease;
}
.nav__links a:hover { color: var(--bn-olive); }
.nav__links a[aria-current="page"] { color: var(--bn-olive); }
.nav__cta { display: flex; align-items: center; gap: 12px; }

/* ── Hero (standard page hero, smaller) ─────────────────────── */
.page-hero {
  padding: 80px var(--bn-gutter) 64px;
  max-width: 1100px;
}
.page-hero__eyebrow { margin-bottom: 20px; }
.page-hero__h {
  font-family: var(--bn-serif);
  font-weight: 500;
  font-size: var(--bn-step-5);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0 0 24px;
  max-width: 18ch;
}
.page-hero__h em { font-style: italic; color: var(--bn-olive); font-weight: 400; }
.page-hero__sub {
  font-size: var(--bn-step-1);
  color: var(--bn-ink-2);
  line-height: 1.5;
  max-width: 640px;
  margin: 0;
}

/* ── Home Hero (with product image) ─────────────────────────── */
.hero {
  padding: 56px var(--bn-gutter) 64px;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}
.hero__eyebrow { margin-bottom: 24px; }
.hero__h1 {
  font-family: var(--bn-serif);
  font-weight: 500;
  font-size: var(--bn-step-5);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0 0 24px;
  max-width: 14ch;
}
.hero__h1 em { font-style: italic; color: var(--bn-olive); font-weight: 400; }
.hero__sub {
  font-size: var(--bn-step-1);
  color: var(--bn-ink-2);
  margin: 0 0 36px;
  max-width: 460px;
  line-height: 1.5;
}
.hero__cta { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }

/* Product render — photo frame for the homepage hero */
.product-render {
  aspect-ratio: 4/3;
  width: 100%;
  max-height: 80vh;
  margin: 0 auto;
  background: var(--bn-cream-2);
  border-radius: 6px;
  border: 1px solid var(--bn-rule);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-render img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-render svg { width: 78%; height: 78%; }

/* ── Press bar ──────────────────────────────────────────────── */
.press-bar {
  background: var(--bn-cream);
  border-top: 0.5px solid #e8e4d8;
  border-bottom: 0.5px solid #e8e4d8;
  text-align: center;
}
.press-bar a {
  display: block;
  padding: 22px var(--bn-gutter);
  text-decoration: none;
  color: inherit;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: background .15s ease;
}
.press-bar a:hover {
  background: rgba(79, 90, 43, 0.04);
}
.press-bar__label {
  font-family: var(--bn-sans);
  font-size: 12px;
  color: var(--bn-brown);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  margin-right: 16px;
}
.press-bar__pub {
  font-family: var(--bn-serif);
  font-size: 16px;
  color: var(--bn-ink);
  font-weight: 500;
  letter-spacing: -0.005em;
}

/* ── Stats Bar ──────────────────────────────────────────────── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--bn-rule);
  border-bottom: 1px solid var(--bn-rule);
  background: var(--bn-cream-2);
}
/* When stats bar follows a cream2 section, pull it up so it feels continuous */
.section--cream2 + .stats-bar {
  margin-top: -40px;
}
.stat {
  padding: 16px var(--bn-gutter) 28px;
  border-right: 1px solid var(--bn-rule);
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.stat:last-child { border-right: 0; }
.stat__n {
  font-family: var(--bn-serif);
  font-size: var(--bn-step-3);
  color: var(--bn-olive);
  font-weight: 500;
  line-height: 1;
}
.stat__label {
  font-size: 14px;
  color: var(--bn-ink-2);
}

/* ── Section primitives ─────────────────────────────────────── */
.section {
  padding: 72px var(--bn-gutter);
}
.section--cream2 { background: var(--bn-cream-2); }
.section--olive  { background: var(--bn-olive); color: var(--bn-cream); }
.section--olive .eyebrow { color: var(--bn-cream); opacity: 0.7; }

.section__head {
  margin-bottom: 56px;
  max-width: 720px;
}
.section__h {
  font-family: var(--bn-serif);
  font-weight: 500;
  font-size: var(--bn-step-4);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 16px 0 0;
}
.section__h em { font-style: italic; color: var(--bn-olive); font-weight: 400; }
.section__sub {
  margin: 20px 0 0;
  font-size: var(--bn-step-1);
  color: var(--bn-ink-2);
  line-height: 1.55;
  max-width: 640px;
}

/* ── What It Is ─────────────────────────────────────────────── */
.what-it-is {
  padding: 80px var(--bn-gutter);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
  border-bottom: 1px solid var(--bn-rule);
}
.what-it-is__h {
  font-family: var(--bn-serif);
  font-weight: 500;
  font-size: var(--bn-step-2);
  margin: 0;
  letter-spacing: -0.01em;
}
.what-it-is__body {
  font-size: var(--bn-step-1);
  color: var(--bn-ink-2);
  line-height: 1.55;
  margin: 0;
}

/* ── Benefit cards ──────────────────────────────────────────── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--bn-rule);
}
.benefit-card {
  padding: 40px 28px 40px 0;
  border-right: 1px solid var(--bn-rule);
}
.benefit-card:last-child { border-right: 0; }
.benefit-card__n {
  font-family: var(--bn-serif);
  font-size: 28px;
  color: var(--bn-brown);
  font-style: italic;
  font-weight: 400;
}
.benefit-card__h {
  font-family: var(--bn-serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 20px 0 14px;
  line-height: 1.2;
}
.benefit-card__p {
  font-size: 15px;
  color: var(--bn-ink-2);
  margin: 0;
  line-height: 1.55;
}

/* ── Ingredients teaser ─────────────────────────────────────── */
.ing-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.ing-callout {
  border-top: 1px solid var(--bn-rule);
  padding: 24px 0;
}
.ing-callout__h {
  font-family: var(--bn-serif);
  font-weight: 500;
  font-size: 20px;
  margin: 0 0 8px;
  color: var(--bn-olive);
}
.ing-callout__p {
  margin: 0;
  font-size: 15px;
  color: var(--bn-ink-2);
  line-height: 1.55;
}
.ing-category-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--bn-rule);
}
.ing-category-bar span {
  font-size: 13px;
  color: var(--bn-brown);
  letter-spacing: 0.04em;
}
.ing-category-bar span::after {
  content: '·';
  margin-left: 20px;
  color: var(--bn-rule);
}
.ing-category-bar span:last-child::after { content: ''; }

/* ── Email capture ──────────────────────────────────────────── */
.email-capture {
  display: flex;
  gap: 8px;
  max-width: 460px;
  padding: 6px;
  background: var(--bn-cream);
  border: 1px solid var(--bn-rule);
  border-radius: 999px;
}
.email-capture input[type="email"] {
  flex: 1;
  border: 0;
  background: transparent;
  font-family: var(--bn-sans);
  font-size: 14px;
  padding: 8px 16px;
  color: var(--bn-ink);
  outline: none;
  min-width: 0;
}
.email-capture input[type="email"]::placeholder {
  color: var(--bn-brown);
  opacity: 0.7;
}
.email-capture button {
  background: var(--bn-olive);
  color: var(--bn-cream);
  border: 0;
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: background .15s ease;
  white-space: nowrap;
}
.email-capture button:hover { background: var(--bn-olive-dark); }
.email-capture__label {
  display: block;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--bn-ink-2);
}

/* ── Testimonials ───────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--bn-cream-2);
  border: 1px solid var(--bn-rule);
  padding: 36px 32px;
  border-radius: 4px;
}
.testimonial__quote {
  font-family: var(--bn-serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.4;
  margin: 0 0 24px;
  color: var(--bn-ink-2);
}
.testimonial__attr {
  font-size: 13px;
  color: var(--bn-brown);
  letter-spacing: 0.04em;
  padding-top: 20px;
  border-top: 1px solid var(--bn-rule);
}

/* ── Trusted by ─────────────────────────────────────────────── */
.trusted {
  text-align: center;
  padding: 64px var(--bn-gutter);
  border-top: 1px solid var(--bn-rule);
  border-bottom: 1px solid var(--bn-rule);
  background: var(--bn-cream-2);
}
.trusted__line {
  font-family: var(--bn-serif);
  font-style: italic;
  font-weight: 400;
  font-size: var(--bn-step-2);
  color: var(--bn-ink-2);
  margin: 0;
  max-width: 820px;
  margin-inline: auto;
  line-height: 1.4;
}

/* ── Steps (How to Order) ───────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--bn-rule);
}
.step {
  padding: 48px 32px 48px 0;
  border-right: 1px solid var(--bn-rule);
}
.step:last-child { border-right: 0; }
.step__n {
  font-family: var(--bn-serif);
  font-style: italic;
  font-size: 22px;
  color: var(--bn-brown);
  font-weight: 400;
}
.step__h {
  font-family: var(--bn-serif);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.01em;
  margin: 16px 0 14px;
  line-height: 1.2;
}
.step__p { margin: 0; color: var(--bn-ink-2); font-size: 15px; line-height: 1.55; }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}
.faq-list details {
  border-top: 1px solid var(--bn-rule);
  padding: 22px 0;
}
.faq-list details:last-child { border-bottom: 1px solid var(--bn-rule); }
.faq-list summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  list-style: none;
  font-family: var(--bn-serif);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.005em;
  gap: 24px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span.toggle {
  color: var(--bn-olive);
  font-family: var(--bn-sans);
  font-size: 22px;
  font-weight: 300;
  transition: transform .2s ease;
  flex-shrink: 0;
  line-height: 1;
}
.faq-list details[open] summary span.toggle { transform: rotate(45deg); }
.faq-list details p {
  margin: 18px 0 0;
  color: var(--bn-ink-2);
  font-size: 16px;
  line-height: 1.65;
  max-width: 720px;
}

.faq-section { margin-bottom: 56px; }
.faq-section h2 {
  font-family: var(--bn-serif);
  font-weight: 500;
  font-size: var(--bn-step-3);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}

/* ── Pricing cards ──────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.pricing-card {
  background: var(--bn-cream);
  border: 1px solid var(--bn-rule);
  border-radius: 6px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.pricing-card--popular {
  border: 2px solid var(--bn-olive);
  background: var(--bn-cream);
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(79, 90, 43, 0.08);
}
.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bn-olive);
  color: var(--bn-cream);
  font-size: 11px;
  padding: 5px 14px;
  border-radius: 999px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}
.pricing-card__name {
  font-family: var(--bn-serif);
  font-weight: 500;
  font-size: 22px;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.pricing-card__save { font-size: 13px; color: var(--bn-brown); margin-bottom: 24px; min-height: 18px; }
.pricing-card__price {
  font-family: var(--bn-serif);
  font-weight: 500;
  font-size: 44px;
  color: var(--bn-olive);
  line-height: 1;
}
.pricing-card__price-unit { font-size: 16px; color: var(--bn-ink-2); margin-left: 4px; font-family: var(--bn-sans); font-weight: 400; }
.pricing-card__sub { color: var(--bn-ink-2); font-size: 14px; margin: 12px 0 28px; line-height: 1.45; }
.pricing-card__features { display: flex; flex-direction: column; gap: 12px; margin: 0 0 32px; flex: 1; }
.pricing-card__features li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: var(--bn-ink-2);
  align-items: flex-start;
}
.pricing-card__features li::before {
  content: '+';
  color: var(--bn-olive);
  font-weight: 500;
  flex-shrink: 0;
}
.pricing-card .btn { width: 100%; justify-content: center; }

.savings-callout {
  padding: 32px var(--bn-gutter);
  background: var(--bn-cream-2);
  border-radius: 6px;
  text-align: center;
  margin-bottom: 24px;
  border: 1px solid var(--bn-rule);
}
.savings-callout p {
  margin: 0;
  font-family: var(--bn-serif);
  font-style: italic;
  font-size: var(--bn-step-2);
  color: var(--bn-ink-2);
  line-height: 1.4;
}
.savings-callout strong { color: var(--bn-olive); font-style: normal; font-weight: 500; }

/* ── Ingredient categories ──────────────────────────────────── */
.ing-section {
  padding: 72px var(--bn-gutter);
  border-bottom: 1px solid var(--bn-rule);
}
.ing-section:nth-of-type(even) { background: var(--bn-cream-2); }
.ing-section__head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: baseline;
  margin-bottom: 36px;
}
.ing-section__title {
  font-family: var(--bn-serif);
  font-weight: 500;
  font-size: var(--bn-step-3);
  margin: 0;
  letter-spacing: -0.01em;
}
.ing-section__count {
  font-size: 13px;
  color: var(--bn-brown);
  letter-spacing: 0.04em;
  font-style: italic;
}
.ing-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 64px;
}
.ing-item__name {
  font-family: var(--bn-serif);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.005em;
  margin: 0 0 8px;
}
.ing-item__p {
  margin: 0;
  font-size: 15px;
  color: var(--bn-ink-2);
  line-height: 1.55;
}
.ing-more {
  font-family: var(--bn-serif);
  font-style: italic;
  color: var(--bn-brown);
  margin-top: 28px;
  font-size: 16px;
}

/* ── Dual CTA ───────────────────────────────────────────────── */
.dual-cta {
  background: var(--bn-cream-2);
  padding: 64px var(--bn-gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  border-top: 1px solid var(--bn-rule);
  border-bottom: 1px solid var(--bn-rule);
}
.dual-cta__h {
  font-family: var(--bn-serif);
  font-weight: 500;
  font-size: var(--bn-step-2);
  margin: 0 0 12px;
}
.dual-cta__right { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }

/* ── Not-In / Sourcing ──────────────────────────────────────── */
.plain-block {
  padding: 80px var(--bn-gutter);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  border-bottom: 1px solid var(--bn-rule);
}
.plain-block h3 {
  font-family: var(--bn-serif);
  font-weight: 500;
  font-size: var(--bn-step-3);
  margin: 0;
  letter-spacing: -0.01em;
}
.plain-block p { margin: 0; color: var(--bn-ink-2); font-size: var(--bn-step-1); line-height: 1.55; }
.not-in-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.not-in-list li {
  font-family: var(--bn-serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.005em;
  position: relative;
  padding-left: 32px;
}
.not-in-list li::before {
  content: '×';
  position: absolute;
  left: 0;
  color: var(--bn-berry);
  font-weight: 400;
  font-size: 22px;
}

/* ── Story page blocks ──────────────────────────────────────── */
.story-block {
  padding: 80px var(--bn-gutter);
  max-width: 920px;
  border-bottom: 1px solid var(--bn-rule);
}
.story-block h2 {
  font-family: var(--bn-serif);
  font-weight: 500;
  font-size: var(--bn-step-3);
  margin: 0 0 28px;
  letter-spacing: -0.01em;
}
.story-block h2 em { font-style: italic; color: var(--bn-olive); font-weight: 400; }
.story-block p {
  font-size: var(--bn-step-1);
  line-height: 1.65;
  color: var(--bn-ink-2);
  margin: 0 0 20px;
  max-width: 720px;
}
.story-block p:last-child { margin-bottom: 0; }

/* Section label — tracked uppercase treatment for story page section breaks */
.story-block__label {
  font-family: var(--bn-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bn-brown);
  margin: 0 0 28px;
}
/* Lead phrase inside narrative paragraphs */
.story-block p .lead {
  font-family: var(--bn-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--bn-olive);
  margin-right: 4px;
}
/* Italic citation line (e.g. "As featured in The Globe and Mail...") */
.story-cite {
  margin: 8px 0 0 !important;
  font-family: var(--bn-serif) !important;
  font-style: italic;
  font-size: 16px !important;
  color: var(--bn-brown) !important;
}
.story-cite a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 0.5px;
  text-underline-offset: 5px;
  text-decoration-color: rgba(137, 102, 81, 0.4);
  transition: color .15s ease, text-decoration-color .15s ease;
}
.story-cite a:hover {
  color: var(--bn-olive);
  text-decoration-color: var(--bn-olive);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--bn-rule);
}
.value {
  padding: 40px 40px 40px 0;
  border-right: 1px solid var(--bn-rule);
  border-bottom: 1px solid var(--bn-rule);
}
.value:nth-child(2n) { border-right: 0; padding-right: 0; padding-left: 40px; }
.value:nth-last-child(-n+2) { border-bottom: 0; }
.value h4 {
  font-family: var(--bn-serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.005em;
  margin: 0 0 12px;
}
.value p { margin: 0; color: var(--bn-ink-2); font-size: 15px; line-height: 1.6; }

/* ── Page CTA band ──────────────────────────────────────────── */
.page-cta {
  background: var(--bn-olive);
  color: var(--bn-cream);
  padding: 72px var(--bn-gutter);
  text-align: center;
}
.page-cta h2 {
  font-family: var(--bn-serif);
  font-weight: 500;
  font-size: var(--bn-step-4);
  margin: 0 0 28px;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.page-cta h2 em { font-style: italic; font-weight: 400; }
.page-cta .btn {
  background: var(--bn-cream);
  color: var(--bn-olive);
}
.page-cta .btn:hover { background: var(--bn-cream-2); }

/* ── Pricing snapshot ───────────────────────────────────────── */
.snapshot {
  padding: 64px var(--bn-gutter);
  background: var(--bn-cream-2);
  border-top: 1px solid var(--bn-rule);
  border-bottom: 1px solid var(--bn-rule);
  text-align: center;
}
.snapshot__price {
  font-family: var(--bn-serif);
  font-weight: 500;
  font-size: var(--bn-step-4);
  color: var(--bn-olive);
  margin: 0 0 16px;
}
.snapshot__detail {
  font-size: var(--bn-step-1);
  color: var(--bn-ink-2);
  margin: 0 0 24px;
}

/* ── Coming Soon ────────────────────────────────────────────── */
.coming-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px var(--bn-gutter);
  min-height: 60vh;
}
.coming-soon__eyebrow { margin-bottom: 24px; }
.coming-soon__h {
  font-family: var(--bn-serif);
  font-weight: 500;
  font-size: var(--bn-step-5);
  letter-spacing: -0.015em;
  line-height: 1.05;
  margin: 0 0 20px;
}
.coming-soon__h em { font-style: italic; color: var(--bn-olive); font-weight: 400; }
.coming-soon__p {
  font-size: var(--bn-step-1);
  color: var(--bn-ink-2);
  max-width: 520px;
  line-height: 1.55;
  margin: 0;
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--bn-cream-2);
  border-top: 1px solid var(--bn-rule);
  padding: 72px var(--bn-gutter) 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer__brand {
  font-family: var(--bn-serif);
  font-size: 28px;
  letter-spacing: -0.015em;
  font-weight: 500;
  color: var(--bn-ink);
  margin-bottom: 14px;
}
.footer__brand span { color: var(--bn-olive); }
.footer__tagline {
  color: var(--bn-ink-2);
  font-size: 14px;
  max-width: 280px;
  margin: 0;
  line-height: 1.55;
  font-family: var(--bn-serif);
  font-style: italic;
}
.footer__col-h {
  font-size: 12px;
  color: var(--bn-brown);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 500;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  color: var(--bn-ink-2);
  text-decoration: none;
  font-size: 14px;
  transition: color .15s ease;
}
.footer__links a:hover { color: var(--bn-olive); }
.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid var(--bn-rule);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--bn-brown);
  letter-spacing: 0.04em;
}

/* ── Arrow icon (inline) ────────────────────────────────────── */
.arrow { display: inline-block; vertical-align: middle; margin-left: 2px; }

/* ── What It Is — 3-card feature row ────────────────────────── */
.feature-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 24px;
  margin-top: 56px;
}
.feature-3-card {
  background: var(--bn-cream);
  border: 1px solid var(--bn-rule);
  border-radius: 4px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.feature-3-card h3 {
  font-family: var(--bn-serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.005em;
  margin: 0 0 18px;
  line-height: 1.25;
}
.feature-3-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--bn-ink-2);
}
.feature-3-card__eyebrow {
  font-family: var(--bn-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bn-brown);
  margin-bottom: 14px;
  font-weight: 500;
}

/* ── Why It's Different — comparison cards ──────────────────── */
.compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 24px;
  margin-top: 56px;
}
.compare-card {
  background: var(--bn-cream);
  border: 1px solid var(--bn-rule);
  border-radius: 4px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.compare-card__head {
  font-family: var(--bn-serif);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.005em;
  margin: 0 0 8px;
  line-height: 1.3;
}
.compare-card__sub {
  font-family: var(--bn-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bn-brown);
  margin: 0 0 24px;
}
.compare-row {
  padding: 18px 0;
  border-top: 1px solid var(--bn-rule);
}
.compare-row__label {
  font-family: var(--bn-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bn-ink-3);
  margin-bottom: 8px;
}
.compare-row__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--bn-ink-2);
}
.compare-row--baseline {
  background: rgba(79, 90, 43, 0.04);
  margin: 0 -32px;
  padding: 18px 32px;
  border-top: 1px solid var(--bn-olive-soft);
}
.compare-row--baseline .compare-row__label {
  color: var(--bn-olive);
  font-weight: 600;
}
.compare-row--baseline .compare-row__text {
  color: var(--bn-olive);
  font-weight: 500;
}

/* ── Credibility signal ─────────────────────────────────────── */
.credibility {
  text-align: center;
  padding: 72px var(--bn-gutter);
  background: var(--bn-cream);
  border-top: 1px solid var(--bn-rule);
}
.credibility__line {
  font-family: var(--bn-sans);
  font-size: 13px;
  color: var(--bn-brown);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0;
  font-weight: 500;
}

/* ── Benefits grid override for 2x2 (overrides 4-col default) ─ */
.benefits-grid--2x2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.benefits-grid--2x2 .benefit-card {
  padding: 40px 32px;
  border-right: 1px solid var(--bn-rule);
  border-bottom: 1px solid var(--bn-rule);
}
.benefits-grid--2x2 .benefit-card:nth-child(even) { border-right: 0; padding-right: 32px; }
.benefits-grid--2x2 .benefit-card:nth-last-child(-n+2) { border-bottom: 0; }

/* ── Story page — two-column hero with image ────────────────── */
.page-hero--with-image {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: none;
  padding: 80px var(--bn-gutter);
}
.page-hero--with-image .page-hero__text {
  max-width: 640px;
}
.page-hero--with-image .page-hero__h {
  max-width: 14ch;
}
.page-hero__media {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--bn-rule);
}
.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Bottom-pair: two plain blocks side by side ─────────────── */
.bottom-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--bn-rule);
}
.bottom-pair > .plain-block {
  display: block;
  grid-template-columns: none;
  padding: 64px var(--bn-gutter);
  border-bottom: 0;
  border-right: 1px solid var(--bn-rule);
}
.bottom-pair > .plain-block:last-child { border-right: 0; }
.bottom-pair > .plain-block h3 {
  margin-bottom: 24px;
}

/* ── Ingredients v3 — interactive two-column explorer ──────── */
.ing-explorer {
  display: grid;
  grid-template-columns: 28% 1fr;
  gap: 56px;
  padding: 64px var(--bn-gutter);
  align-items: start;
  background: var(--bn-cream);
}
.ing-sidebar {
  position: sticky;
  top: 96px; /* below sticky nav with breathing room */
  align-self: start;
}
.ing-sidebar__head {
  font-family: var(--bn-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bn-brown);
  margin: 0 0 18px;
  padding: 0 22px;
  font-weight: 500;
}
.ing-tabs {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 0.5px solid #e8e4d8;
}
.ing-tab {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  border-bottom: 0.5px solid #e8e4d8;
  padding: 18px 22px;
  font-family: var(--bn-sans);
  font-size: 16px;
  color: var(--bn-ink);
  cursor: pointer;
  transition: background .15s ease, color .15s ease, padding-left .15s ease;
}
.ing-tab:hover {
  background: rgba(79, 90, 43, 0.06);
  padding-left: 26px;
}
.ing-tab--active,
.ing-tab--active:hover {
  background: var(--bn-olive);
  color: var(--bn-cream);
  padding-left: 22px;
}
.ing-tab__count {
  font-family: var(--bn-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  opacity: 0.7;
}
.ing-tab--active .ing-tab__count { opacity: 0.8; }

.ing-panel { min-height: 480px; }
.ing-panel__category { display: none; }
.ing-panel__category--active {
  display: block;
  animation: ing-fade-in .25s ease;
}
@keyframes ing-fade-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.ing-panel__head {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 0.5px solid #e8e4d8;
}
.ing-panel__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 12px;
}
.ing-panel__title {
  font-family: var(--bn-serif);
  font-weight: 500;
  font-size: var(--bn-step-4);
  color: var(--bn-olive);
  letter-spacing: -0.015em;
  margin: 0;
  line-height: 1;
}
.ing-panel__count {
  font-family: var(--bn-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bn-brown);
  white-space: nowrap;
  font-weight: 500;
}
.ing-panel__desc {
  margin: 0;
  font-size: var(--bn-step-1);
  color: var(--bn-ink);
  line-height: 1.5;
  max-width: 720px;
}

/* Ingredients v2 — category tables (legacy, retained for fallback) */
.stats-bar--ing { grid-template-columns: repeat(4, 1fr); }

.ing-cat-block {
  padding: 64px var(--bn-gutter);
  border-bottom: 1px solid var(--bn-rule);
}
.ing-cat-block:nth-of-type(odd) { background: var(--bn-cream); }
.ing-cat-block:nth-of-type(even) { background: var(--bn-cream-2); }

.ing-cat-block__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--bn-rule);
  gap: 24px;
}
.ing-cat-block__title {
  font-family: var(--bn-serif);
  font-weight: 500;
  font-size: var(--bn-step-3);
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1;
}
.ing-cat-block__count {
  font-family: var(--bn-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bn-brown);
}

.ing-table {
  display: flex;
  flex-direction: column;
}
.ing-row {
  padding: 22px 0;
  border-bottom: 1px solid var(--bn-rule);
}
.ing-row:last-child { border-bottom: 0; }
.ing-row__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 32px;
}
.ing-row__name {
  font-family: var(--bn-serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.005em;
  color: var(--bn-ink);
  line-height: 1.3;
  margin: 0;
}
.ing-row--spotlight .ing-row__name {
  color: var(--bn-olive);
}
.ing-row__tag {
  font-family: var(--bn-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bn-brown);
  text-align: right;
  flex-shrink: 0;
  max-width: 50%;
  line-height: 1.5;
}
.ing-row__desc {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--bn-ink-2);
  max-width: 760px;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 980px) {
  :root { --bn-gutter: 28px; }
  .nav { flex-wrap: wrap; gap: 12px; padding: 16px var(--bn-gutter); }
  .nav__links { gap: 18px; font-size: 13px; order: 3; width: 100%; justify-content: center; padding-top: 4px; border-top: 1px solid var(--bn-rule); padding-top: 14px; }
  .hero__grid, .ing-teaser, .faq-grid, .what-it-is, .dual-cta, .plain-block, .ing-section__head { grid-template-columns: 1fr; gap: 32px; }
  .feature-3, .compare-grid { grid-template-columns: 1fr; gap: 20px; margin-top: 36px; }
  .compare-row--baseline { margin: 0; padding: 18px 0; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid--2x2 { grid-template-columns: repeat(2, 1fr); }
  .benefit-card:nth-child(odd) { border-right: 1px solid var(--bn-rule); }
  .benefit-card:nth-child(even) { border-right: 0; padding-right: 0; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .pricing-card--popular { transform: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--bn-rule); }
  .stat:last-child { border-bottom: 0; }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: 0; border-bottom: 1px solid var(--bn-rule); padding-right: 0; }
  .step:last-child { border-bottom: 0; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .ing-list { grid-template-columns: 1fr; gap: 28px; }
  .values-grid { grid-template-columns: 1fr; }
  .value, .value:nth-child(2n) { border-right: 0; padding: 32px 0; }
  .section { padding: 48px var(--bn-gutter); }
  .page-cta { padding: 48px var(--bn-gutter); }
  .credibility { padding: 48px var(--bn-gutter); }
  .hero { padding: 32px var(--bn-gutter); }
  .product-render { max-height: 60vh; }
  .section--cream2 + .stats-bar { margin-top: 0; }
  .stats-bar--ing { grid-template-columns: 1fr; }
  .page-hero--with-image {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px var(--bn-gutter);
  }
  .page-hero--with-image .page-hero__text { max-width: none; }
  .page-hero--with-image .page-hero__h { max-width: none; }
  .bottom-pair { grid-template-columns: 1fr; }
  .bottom-pair > .plain-block {
    border-right: 0;
    border-bottom: 1px solid var(--bn-rule);
    padding: 40px var(--bn-gutter);
  }
  .bottom-pair > .plain-block:last-child { border-bottom: 0; }
  .ing-cat-block { padding: 40px var(--bn-gutter); }
  .ing-row__top { flex-direction: column; gap: 8px; align-items: flex-start; }
  .ing-row__tag { text-align: left; max-width: 100%; }

  /* Ingredients Explorer — mobile */
  .ing-explorer {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 0;
  }
  .ing-sidebar {
    position: sticky;
    top: 73px;
    background: var(--bn-cream);
    z-index: 5;
    margin: 0;
    padding: 8px 0;
    border-bottom: 0.5px solid #e8e4d8;
  }
  .ing-sidebar__head { display: none; }
  .ing-tabs {
    flex-direction: row;
    overflow-x: auto;
    gap: 8px;
    padding: 0 var(--bn-gutter) 4px;
    border-top: 0;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .ing-tabs::-webkit-scrollbar { display: none; }
  .ing-tab {
    flex-shrink: 0;
    padding: 8px 16px;
    border: 0.5px solid #e8e4d8;
    border-radius: 999px;
    font-size: 13px;
  }
  .ing-tab:hover, .ing-tab--active, .ing-tab--active:hover {
    padding-left: 16px;
  }
  .ing-tab__count { display: none; }
  .ing-panel { padding: 0 var(--bn-gutter); }
  .ing-panel__title { font-size: 32px; }
}
@media (max-width: 600px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .benefit-card { border-right: 0 !important; padding-right: 0 !important; border-bottom: 1px solid var(--bn-rule); }
  .benefit-card:last-child { border-bottom: 0; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .page-hero__h, .hero__h1, .coming-soon__h { font-size: 40px; }
  .nav__cta a:not(.btn) { display: none; }
}
