@font-face {
  font-family: Bricolage;
  src: url("assets/fonts/bricolage-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Figtree;
  src: url("assets/fonts/figtree-latin.woff2") format("woff2");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}
/* Layers: content 0, sticky header 20, mobile navigation 30, focus skip 40. */
:root {
  --ink: #470a08;
  --muted: #725850;
  --paper: #fffcf5;
  --surface: #fff1d2;
  --soft: #f5e8cb;
  --amber: #ffbb12;
  --line: rgba(71, 10, 8, 0.2);
  --header: rgba(255, 252, 245, 0.96);
  --button: #470a08;
  --button-text: #fffcf5;
  --display: Bricolage, Arial, sans-serif;
  --body: Figtree, Arial, sans-serif;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --shell: min(1440px, calc(100% - 112px));
  color-scheme: light;
}
:root[data-theme="dark"] {
  --ink: #fff1d2;
  --muted: #cfbca6;
  --paper: #261714;
  --surface: #34211c;
  --soft: #442c24;
  --line: rgba(255, 241, 210, 0.22);
  --header: rgba(38, 23, 20, 0.96);
  --button: #ffbb12;
  --button-text: #470a08;
  color-scheme: dark;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 18px/1.6 var(--body);
  -webkit-font-smoothing: antialiased;
}
body.menu-open {
  overflow: hidden;
}
h1,
h2,
h3,
h4,
p,
figure,
blockquote {
  margin: 0;
}
h1,
h2,
h3,
h4 {
  font-family: var(--display);
  font-weight: 700;
  text-wrap: balance;
}
h1 {
  font-size: clamp(64px, 6.9vw, 104px);
  line-height: 0.99;
  letter-spacing: -0.065em;
}
h2 {
  font-size: clamp(40px, 4.1vw, 60px);
  line-height: 1.06;
  letter-spacing: -0.055em;
}
h3 {
  font-size: 30px;
  line-height: 1.14;
  letter-spacing: -0.035em;
}
h4 {
  font-size: 23px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}
h1 em,
h2 em,
h3 em {
  font-style: normal;
}
p {
  color: var(--muted);
}
p + p {
  margin-top: 20px;
}
a {
  color: inherit;
  text-decoration: none;
}
a,
button,
input,
summary {
  -webkit-tap-highlight-color: transparent;
}
button,
input {
  font: inherit;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: wait;
}
button,
a,
summary {
  touch-action: manipulation;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button {
  color: inherit;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 5px;
}
::selection {
  background: var(--amber);
  color: #470a08;
}
[hidden] {
  display: none !important;
}
.shell {
  width: var(--shell);
  margin-inline: auto;
}
.section {
  padding-block: 88px;
}
.eyebrow {
  font-size: 15px;
  font-weight: 650;
  margin-bottom: 23px;
  color: var(--ink);
}
.section-heading {
  max-width: 840px;
  margin-bottom: 56px;
}
.section-heading > p:last-child:not(.eyebrow) {
  max-width: 680px;
  margin-top: 26px;
}
.section-heading h2 {
  max-width: 840px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  white-space: nowrap;
  min-height: 58px;
  padding: 15px 28px;
  border-radius: 100px;
  border: 1.5px solid transparent;
  background: var(--button);
  color: var(--button-text);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.3;
  transition:
    transform 0.25s var(--ease),
    background 0.25s,
    color 0.25s;
  position: relative;
}
.button:hover {
  transform: translateY(-3px);
  background: #742118;
  color: #fffcf5;
}
.button:active {
  transform: translateY(0) scale(0.98);
}
.button-outline {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}
.text-link,
.text-button {
  display: inline-block;
  text-decoration: underline;
  text-underline-offset: 6px;
  font-weight: 600;
}
.text-button {
  border: 0;
  background: none;
  padding: 0;
  color: var(--ink);
}
.brand-logo {
  width: 158px;
  height: auto;
}
.brand-mark {
  width: 100px;
}
.skip-link {
  position: absolute;
  top: -70px;
  left: 20px;
  padding: 12px 20px;
  background: var(--paper);
  z-index: 40;
}
.skip-link:focus {
  top: 10px;
}
.announcement {
  min-height: 32px;
  padding: 5px 20px;
  background: #470a08;
  color: #fff1d2;
  text-align: center;
  font-size: 12px;
  line-height: 1.8;
}
.announcement a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.site-header {
  position: sticky;
  top: 0;
  background: var(--header);
  z-index: 20;
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
}
.header-inner {
  width: var(--shell);
  margin: auto;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.home-link {
  flex-shrink: 0;
}
.desktop-nav {
  display: flex;
  gap: 30px;
  margin-left: auto;
  align-items: center;
}
.desktop-nav > a {
  position: relative;
  font-size: 14px;
  font-weight: 550;
  padding-block: 12px;
  white-space: nowrap;
}
.desktop-nav > a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.desktop-nav > a:hover:after,
.desktop-nav > a[aria-current]:after {
  transform: scaleX(1);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 13px;
}
.nav-cta {
  font-size: 14px;
  min-height: 46px;
  padding: 12px 22px;
}
.theme-toggle {
  border: 0;
  background: transparent;
  width: 34px;
  height: 34px;
  padding: 0;
  font-size: 24px;
  line-height: 1;
}
.menu-toggle {
  display: none;
  border: 0;
  background: none;
  width: 40px;
  height: 40px;
  padding: 9px;
}
.menu-toggle span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  margin: 6px 0;
  transition: transform 0.25s;
}
.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}
.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--paper);
  padding: 24px 28px 40px;
  z-index: 30;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.08);
}
.mobile-nav > a:not(.button) {
  display: block;
  font: 700 32px/1.5 var(--display);
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.mobile-nav .button {
  margin-top: 18px;
}
.page-index .site-header {
  background: var(--amber);
}
/* The opening composition uses the brand's intersecting curved forms. */
.home-hero {
  background: var(--amber);
  overflow: hidden;
  color: #470a08;
}
.home-hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 1fr;
  align-items: center;
  gap: 32px;
  min-height: 660px;
}
.hero-copy {
  position: relative;
  z-index: 1;
  padding: 34px 0 58px;
}
.launch-label {
  display: inline-flex;
  padding: 6px 13px;
  border: 1px solid currentColor;
  border-radius: 30px;
  font-size: 13px;
  color: inherit;
  margin-bottom: 30px;
  line-height: 1.4;
}
.hero-copy h1 {
  max-width: 710px;
}
.hero-lead {
  font-size: 19px;
  line-height: 1.55;
  max-width: 460px;
  margin-top: 28px;
  color: #470a08;
}
.hero-copy .button {
  margin-top: 30px;
  background: #470a08;
  color: #fff1d2;
}
.hero-copy .button:hover {
  background: #742118;
}
.hero-art {
  height: 635px;
  position: relative;
  isolation: isolate;
}
.hero-photo {
  position: absolute;
  inset: 20px 0 38px 30px;
  overflow: hidden;
  border-radius: 48% 48% 43% 43%;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% 50%;
}
.hero-pack-link {
  position: absolute;
  bottom: -8px;
  left: -34px;
  width: 220px;
  z-index: 2;
  transform: rotate(-11deg);
  transition: transform 0.65s var(--ease);
  filter: drop-shadow(12px 20px 14px rgba(71, 10, 8, 0.18));
}
.hero-pack-link:hover {
  transform: rotate(-6deg) translateY(-12px);
}
.hero-pack {
  width: 100%;
}
.hero-mark {
  position: absolute;
  right: -70px;
  bottom: 24px;
  width: 180px;
  opacity: 0.85;
  z-index: -1;
  transform: rotate(20deg);
}
.trust-strip {
  background: var(--surface);
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
}
.trust-strip .shell {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.trust-strip span {
  font-size: 14px;
  font-weight: 550;
  text-align: center;
}
.intro-section {
  padding-top: 100px;
}
.intro-statement {
  max-width: 1080px;
  font: 700 clamp(28px, 3.1vw, 44px) / 1.22 var(--display);
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 64px;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10%;
}
.why-heading h2 {
  font-size: clamp(40px, 4vw, 61px);
  max-width: 580px;
}
.why-story {
  padding-top: 42px;
}
.why-story p {
  font-size: 17px;
  line-height: 1.75;
}
.why-story .statement-close {
  margin-top: 30px;
  font-size: 25px;
  line-height: 1.35;
}
.protein-stat {
  margin-top: 46px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
}
.stat-number {
  font: 700 clamp(54px, 5vw, 76px) / 1 var(--display);
  letter-spacing: -0.07em;
}
.protein-stat p {
  font-size: 13px;
  line-height: 1.6;
  max-width: 265px;
}
.statement-close {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--ink);
}
/* Range: the family colours communicate product identity, never random accents. */
.range-section {
  background: var(--surface);
}
.range-section .section-heading {
  max-width: 890px;
}
.range-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 0;
}
.range-tabs button {
  background: transparent;
  border: 1px solid var(--line);
  padding: 21px 23px;
  text-align: left;
  border-radius: 12px 12px 0 0;
  transition:
    background 0.25s,
    color 0.25s,
    border-color 0.25s;
  min-width: 0;
}
.range-tabs button > span:first-child {
  display: block;
  font: 700 32px/1 var(--display);
  letter-spacing: -0.04em;
}
.tab-caption {
  display: block;
  font-size: 12px;
  line-height: 1.45;
  margin-top: 9px;
}
.range-tabs [aria-selected="true"] {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.range-tabs button:hover:not([aria-selected="true"]) {
  background: var(--soft);
}
.range-panel {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 465px;
  overflow: hidden;
  border-radius: 0 0 24px 24px;
  position: relative;
  background: #ffbb12;
  color: #470a08;
  scroll-margin-top: 100px;
}
.range-panel + .range-panel {
  margin-top: 24px;
}
.range-panels.is-enhanced .range-panel {
  margin-top: 0;
}
.range-panel.blend-meno {
  background: #e6a0f6;
}
.range-panel.blend-pro {
  background: #78dff9;
}
.range-panel.blend-core {
  background: #c5db68;
}
.range-art {
  min-height: 465px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.range-pack {
  width: 285px;
  position: relative;
  z-index: 1;
  transform: rotate(-9deg);
  filter: drop-shadow(15px 18px 15px rgba(71, 10, 8, 0.2));
  transition: transform 0.6s var(--ease);
}
.range-art:hover .range-pack {
  transform: rotate(-3deg) translateY(-7px);
}
.range-mark {
  position: absolute;
  width: 380px;
  opacity: 0.12;
  transform: rotate(17deg);
}
.range-copy {
  align-self: center;
  padding: 40px 54px 40px 14px;
}
.product-status {
  font-size: 14px;
  display: inline-block;
  margin-bottom: 23px;
}
.range-copy h3 {
  font-size: clamp(45px, 5vw, 72px);
  letter-spacing: -0.06em;
}
.range-copy h4 {
  font-family: var(--body);
  font-size: 18px;
  letter-spacing: 0;
  margin-top: 12px;
}
.range-copy p {
  color: #60312b;
  line-height: 1.7;
  font-size: 17px;
  max-width: 470px;
  margin-top: 22px;
}
.range-copy .button {
  margin-top: 30px;
  background: #470a08;
  color: #fff1d2;
}
.range-lifestyle {
  width: 72%;
  height: 390px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}
.blend-meno .range-lifestyle {
  object-position: 62% center;
}
.blend-core .range-lifestyle {
  border-radius: 160px 160px 25px 25px;
}
.range-large-name {
  position: absolute;
  bottom: 3px;
  left: 28px;
  font: 700 120px/1 var(--display);
  letter-spacing: -0.07em;
  z-index: 2;
  color: #470a08;
}
.future-formats {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 11%;
  padding-top: 56px;
}
.future-formats h3 {
  font-size: 35px;
  max-width: 520px;
}
.future-formats p:not(.eyebrow) {
  font-size: 16px;
  margin-top: 20px;
}
.format-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-content: center;
}
.format-list article {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.format-list h4 {
  font-size: 23px;
}
.format-list span {
  display: block;
  margin-top: 21px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.format-list p {
  margin-top: 12px !important;
}
/* Ingredient photography gets room to breathe; full copy lives in disclosures. */
.ingredient-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 7%;
  align-items: start;
}
.ingredient-photo img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 200px 200px 24px 24px;
}
.ingredient-photo figcaption {
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 520px;
  margin-top: 22px;
}
.ingredient-explorer {
  padding-top: 15px;
}
.ingredient-explorer > h3 {
  font-family: var(--body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 28px;
}
.ingredient-row {
  border-bottom: 1px solid var(--line);
}
summary {
  list-style: none;
  cursor: pointer;
}
summary::-webkit-details-marker {
  display: none;
}
.ingredient-row summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 23px 0;
  font: 700 33px/1.15 var(--display);
  letter-spacing: -0.04em;
}
.disclosure-icon {
  font-family: var(--body);
  font-weight: 400;
  font-size: 30px;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.25s var(--ease);
}
details[open] > .disclosure-icon,
details[open] > summary > .disclosure-icon {
  transform: rotate(45deg);
}
.ingredient-answer {
  padding: 2px 24px 26px 0;
  font-size: 16px;
}
.ingredient-source {
  display: block;
  font-size: 12px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}
.ingredient-answer p {
  max-width: 470px;
}
.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 55px;
  margin-top: 70px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.principles h3 {
  font-size: 23px;
  margin-bottom: 15px;
}
.principles p {
  font-size: 15px;
}
.science-note {
  background: var(--surface);
}
.science-note-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: center;
  gap: 80px;
  max-width: 1140px;
}
.science-note-inner > .brand-mark {
  width: 250px;
  margin: auto;
}
.science-note-inner h2 {
  font-size: clamp(40px, 4vw, 60px);
}
.science-note-inner p {
  margin-top: 28px;
  max-width: 630px;
}
.science-note-inner .button {
  margin-top: 30px;
}
/* Founders and membership. */
.founder-section .section-heading {
  max-width: 820px;
}
.founder-quotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8%;
}
.founder-quote {
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.quote-person {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
}
.quote-person img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 35%;
}
.quote-person span {
  font-weight: 600;
  font-size: 17px;
}
.founder-quote blockquote p {
  font-size: 18px;
  line-height: 1.75;
}
.founder-quote blockquote strong {
  font-weight: 600;
  color: var(--ink);
}
.founder-invite {
  margin-top: 56px;
  text-align: center;
  color: var(--muted);
}
.founder-invite a {
  display: inline-block;
  margin-top: 12px;
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 6px;
  color: var(--ink);
}
.signup-section {
  background: var(--amber);
  color: #470a08;
}
.signup-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 12%;
  align-items: center;
}
.signup-grid h2 {
  max-width: 590px;
  font-size: clamp(40px, 4.4vw, 64px);
}
.signup-grid > div > p {
  color: #60312b;
  max-width: 500px;
  margin-top: 25px;
}
.signup-perks {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}
.signup-perks li {
  position: relative;
  padding-left: 30px;
  margin: 13px 0;
  font-size: 16px;
}
.signup-perks li:before {
  content: "✓";
  position: absolute;
  left: 0;
  font-size: 17px;
}
.signup-form {
  background: var(--paper);
  padding: 42px;
  border-radius: 24px;
  color: var(--ink);
}
.signup-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}
.signup-form input {
  display: block;
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--paper);
  padding: 12px 14px;
  color: var(--ink);
  font-size: 16px;
  margin-bottom: 22px;
}
.signup-form input::placeholder {
  color: var(--muted);
}
.signup-form .button {
  width: 100%;
  margin-top: 4px;
}
.form-fine {
  font-size: 12px;
  line-height: 1.6;
  margin-top: 20px;
}
.demo-note {
  font-size: 11px;
  line-height: 1.5;
  margin-top: 14px;
}
.form-error {
  font-size: 13px;
  color: #ae291b;
  margin: -12px 0 18px;
}
.form-success h3 {
  font-size: 32px;
  margin-bottom: 20px;
}
.form-success p {
  font-size: 16px;
}
.success-mark {
  font-size: 38px;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  background: var(--surface);
  border-radius: 50%;
  margin-bottom: 25px;
}
.form-success .text-button {
  font-size: 14px;
  margin-top: 20px;
}
.principle-section .shell {
  position: relative;
  text-align: center;
  padding-inline: 8%;
  max-width: 1200px;
}
.principle-section h2 {
  font-size: 22px;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.principle-section p {
  font: 700 clamp(25px, 3vw, 42px) / 1.3 var(--display);
  letter-spacing: -0.03em;
  color: var(--ink);
}
.principle-section .brand-mark {
  width: 60px;
  margin: 35px auto 0;
}
/* Product page. */
.product-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8%;
  padding-block: 44px 62px;
  align-items: center;
}
.product-stage {
  height: 605px;
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  background: var(--surface);
  border-radius: 46% 46% 24px 24px;
  overflow: hidden;
}
.product-stage > .brand-mark {
  position: absolute;
  width: 78%;
  opacity: 0.14;
  transform: rotate(10deg);
  z-index: -1;
}
.product-halo {
  position: absolute;
  inset: 16% 12%;
  border-radius: 50%;
  background: var(--amber);
  z-index: -2;
}
.product-pack {
  height: 550px;
  max-width: 85%;
  object-fit: contain;
  transform: rotate(-8deg);
  filter: drop-shadow(15px 20px 18px rgba(71, 10, 8, 0.17));
}
.product-intro h1 {
  font-size: clamp(62px, 6.2vw, 94px);
}
.product-intro h2 {
  font: 700 26px/1.25 var(--display);
  letter-spacing: -0.03em;
  margin-top: 23px;
  max-width: 450px;
}
.product-intro > p:not(.launch-label) {
  font-size: 17px;
  max-width: 515px;
  margin-top: 24px;
}
.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.product-meta span {
  font-size: 12px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 30px;
}
.product-intro .button {
  margin-top: 32px;
}
.product-intro .text-link {
  font-size: 14px;
  margin-left: 24px;
}
.product-statement {
  background: var(--surface);
  text-align: center;
}
.product-statement h2 {
  max-width: 930px;
  margin: auto;
}
.product-statement p {
  max-width: 730px;
  margin: 28px auto 0;
  font-size: 18px;
}
.protein-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 8%;
  align-items: center;
}
.protein-grid figure {
  height: 520px;
}
.protein-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.protein-grid h3 {
  font-size: 30px;
  margin-bottom: 24px;
}
.protein-grid p {
  font-size: 17px;
}
.protein-fact {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 25px;
  align-items: center;
  margin-block: 33px;
}
.protein-fact > span {
  font: 700 76px/1 var(--display);
  letter-spacing: -0.07em;
}
.protein-fact p {
  font-size: 14px;
}
.support-section {
  background: var(--surface);
}
.support-section .section-heading {
  max-width: 900px;
}
.support-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 7%;
}
.support-list li {
  border-top: 1px solid var(--line);
  padding: 22px 0;
  font: 700 clamp(25px, 2.7vw, 39px) / 1.2 var(--display);
  letter-spacing: -0.035em;
}
.how-section {
  background: var(--surface);
}
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10%;
  align-items: center;
}
.how-grid figure {
  height: 555px;
  overflow: hidden;
  border-radius: 50% 50% 20px 20px;
}
.how-grid img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.steps article {
  position: relative;
  padding: 0 0 33px 62px;
}
.steps article + article {
  margin-top: 18px;
}
.step-index {
  position: absolute;
  left: 0;
  top: 3px;
  font: 700 25px/1 var(--display);
  letter-spacing: -0.04em;
  color: var(--muted);
}
.steps h3 {
  font-size: 33px;
  margin-bottom: 16px;
}
.steps p {
  font-size: 17px;
}
.nutrition-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7%;
  align-items: start;
}
.nutri-table {
  border-collapse: collapse;
  width: 100%;
  font-size: 16px;
  color: var(--ink);
}
.nutri-table caption {
  text-align: left;
  font: 700 25px/1.25 var(--display);
  letter-spacing: -0.035em;
  margin-bottom: 26px;
}
.nutri-table th,
.nutri-table td {
  padding: 12px 0;
  text-align: left;
}
.nutri-table th:last-child,
.nutri-table td:last-child {
  text-align: right;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.nutri-table thead {
  border-bottom: 1px solid var(--line);
}
.nutri-table tbody tr:nth-child(even) {
  background: var(--surface);
}
.nutri-table tbody td {
  padding-inline: 10px;
}
.nutrition-grid > div > p {
  font-size: 12px;
  margin-top: 18px;
}
.ingredients-list {
  background: var(--surface);
  padding: 30px;
  border-radius: 15px;
}
.ingredients-list h4 {
  font-size: 25px;
  margin-bottom: 18px;
}
.ingredients-list p {
  font-size: 15px;
  line-height: 1.8;
}
.ingredients-list .allergen {
  font-weight: 650;
  color: var(--ink);
}
.rni-note {
  margin-top: 28px;
}
.rni-note p {
  font-size: 16px;
}
.closing {
  padding: 90px 0;
  background: var(--surface);
}
.closing-inner {
  display: flex;
  align-items: center;
  gap: 9%;
  max-width: 1140px;
}
.closing-inner > .brand-mark {
  width: 160px;
  flex-shrink: 0;
}
.closing-inner h2 {
  font-size: clamp(39px, 4vw, 58px);
  max-width: 800px;
}
.closing-inner p {
  margin-top: 23px;
  max-width: 640px;
}
.closing-inner .button {
  margin-top: 28px;
}
/* Story and science use different compositions under the same system. */
.story-hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 7%;
  align-items: center;
  padding-block: 65px 90px;
}
.story-hero h1 {
  font-size: clamp(62px, 6.5vw, 94px);
}
.story-hero p:not(.eyebrow) {
  max-width: 580px;
  margin-top: 30px;
}
.story-hero figure {
  height: 580px;
  overflow: hidden;
  border-radius: 48% 48% 20px 20px;
}
.story-hero img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: 72% center;
}
.origin-section {
  background: var(--surface);
}
.origin-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 13%;
  align-items: start;
}
.origin-art {
  position: sticky;
  top: 165px;
  padding-top: 50px;
}
.origin-art .brand-mark {
  width: 75%;
  margin: auto;
  transform: rotate(-9deg);
}
.origin-art span {
  display: block;
  text-align: center;
  font: 700 84px/1 var(--display);
  letter-spacing: -0.05em;
  margin-top: 45px;
}
.long-read {
  max-width: 750px;
}
.long-read h2,
.long-read h3 {
  font-size: 36px;
  line-height: 1.15;
  margin-bottom: 30px;
}
.long-read p {
  font-size: 17px;
  line-height: 1.8;
}
.founder-bio {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 9%;
  align-items: center;
  padding-block: 25px 80px;
}
.founder-bio + .founder-bio {
  padding-top: 70px;
  border-top: 1px solid var(--line);
}
.founder-bio figure {
  height: 560px;
  background: var(--surface);
  border-radius: 180px 180px 20px 20px;
  overflow: hidden;
}
.founder-bio img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: 50% 25%;
}
.founder-bio .bio-role {
  font-size: 13px;
  margin-bottom: 18px;
}
.founder-bio h3 {
  font-size: 53px;
  margin-bottom: 28px;
}
.founder-bio p {
  font-size: 17px;
  line-height: 1.75;
}
.founder-bio:nth-of-type(2) figure {
  order: 2;
  border-radius: 20px 20px 180px 180px;
}
.science-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8%;
  align-items: center;
  padding-block: 65px 85px;
}
.science-hero h1 {
  font-size: clamp(61px, 6vw, 91px);
}
.science-hero p:not(.eyebrow) {
  margin-top: 28px;
  max-width: 550px;
}
.science-hero .button {
  margin-top: 30px;
}
.science-hero figure {
  height: 570px;
  overflow: hidden;
  border-radius: 48%;
}
.science-hero img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: 30%;
}
.science-principles {
  background: var(--surface);
}
.science-principles h2 {
  font-size: clamp(40px, 4vw, 60px);
}
.large-body {
  max-width: 950px;
  font-size: 24px;
  line-height: 1.55;
  margin-top: 30px;
}
.research-section {
  background: var(--surface);
}
.research-section .shell {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 12%;
  align-items: center;
  max-width: 1120px;
}
.research-section .brand-mark {
  width: 240px;
  margin: auto;
}
.research-section p {
  margin-top: 28px;
}
/* Quiet, complete utility pages. */
.contact-hero {
  padding-block: 70px 50px;
  max-width: 1200px;
}
.contact-hero h1 {
  max-width: 900px;
}
.contact-hero > p:last-child {
  max-width: 650px;
  margin-top: 30px;
  font-size: 20px;
}
.contact-body {
  max-width: 1200px;
  padding-bottom: 100px;
}
.contact-body > .section-head {
  display: none;
}
.contact-body > .wrap {
  width: 100%;
}
.contact-body .section-head {
  display: none;
}
.contact-body .contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 35px;
}
.contact-body .contact-card {
  padding: 38px;
  background: var(--surface);
  border-radius: 20px;
}
.contact-body h3 {
  font-size: 29px;
  margin-bottom: 18px;
}
.contact-body p {
  font-size: 17px;
}
.contact-body .email {
  display: inline-block;
  font: 700 clamp(23px, 2.5vw, 36px) / 1.2 var(--display);
  letter-spacing: -0.03em;
  margin-top: 28px;
  text-decoration: underline;
  text-underline-offset: 8px;
}
.contact-body a.btn {
  display: inline-flex;
  margin-top: 24px;
  padding: 12px 0;
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 6px;
}
.faq-section {
  background: var(--surface);
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 12%;
}
.faq-grid > div:first-child {
  position: sticky;
  top: 145px;
  align-self: start;
}
.faq-grid .brand-mark {
  width: 110px;
  margin-top: 45px;
  opacity: 0.4;
}
.faq-row {
  border-bottom: 1px solid var(--line);
}
.faq-row:first-child {
  border-top: 1px solid var(--line);
}
.faq-row summary {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
  padding: 25px 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}
.faq-answer {
  padding: 0 34px 28px 0;
  font-size: 16px;
  color: var(--muted);
}
.faq-answer a {
  text-decoration: underline;
  text-underline-offset: 4px;
  color: var(--ink);
}
.faq-answer p + p {
  margin-top: 18px;
}
.legal-header {
  padding-top: 55px;
  padding-bottom: 50px;
}
.legal-header .text-link {
  font-size: 14px;
  margin-bottom: 30px;
}
.legal-header h1 {
  font-size: clamp(52px, 6vw, 84px);
}
.legal-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 8%;
  padding-bottom: 110px;
}
.legal-grid aside {
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: sticky;
  top: 130px;
  align-self: start;
  font-size: 15px;
}
.legal-copy {
  max-width: 800px;
}
.legal-copy .updated {
  font-size: 14px;
  margin-bottom: 25px;
}
.legal-copy p {
  font-size: 16px;
  line-height: 1.8;
}
.legal-copy h2 {
  font-size: 28px;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 40px 0 17px;
}
.legal-copy ul {
  color: var(--muted);
  font-size: 16px;
  padding-left: 22px;
}
.legal-copy li + li {
  margin-top: 12px;
}
.legal-copy a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.legal-copy .notice,
.legal-copy .draft,
.legal-copy .draft-banner {
  background: var(--surface);
  padding: 24px;
  border-radius: 10px;
  margin-bottom: 25px;
}
.legal-copy .notice p,
.legal-copy .draft p {
  font-size: 14px;
}
/* Footer retains every original destination. */
.site-footer {
  background: var(--surface);
  padding-top: 65px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 60px;
}
.footer-brand {
  max-width: 350px;
}
.footer-brand .brand-logo {
  width: 175px;
  margin-bottom: 25px;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.65;
}
.footer-top h3 {
  font-family: var(--body);
  font-size: 13px;
  letter-spacing: 0;
  margin-bottom: 22px;
}
.footer-top > div > a {
  display: block;
  font-size: 14px;
  margin: 11px 0;
  color: var(--muted);
}
.footer-top a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.footer-signature {
  font: 700 clamp(70px, 11.3vw, 174px) / 1 var(--display);
  letter-spacing: -0.065em;
  margin-top: 67px;
  white-space: nowrap;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  padding-block: 27px 35px;
}
.footer-bottom p {
  font-size: 10px;
  line-height: 1.6;
  max-width: 530px;
}
.footer-bottom p + p {
  margin: 0;
}
/* System/manual dark theme preserves the original family colours and logo geometry. */
[data-theme="dark"] .brand-logo,
[data-theme="dark"] .brand-mark:not(.range-mark):not(.hero-mark) {
  filter: brightness(0) saturate(100%) invert(92%) sepia(13%) saturate(470%)
    hue-rotate(336deg) brightness(104%) contrast(101%);
}
[data-theme="dark"] .page-index .site-header {
  background: var(--header);
}
[data-theme="dark"] .home-hero {
  background: var(--surface);
  color: var(--amber);
}
[data-theme="dark"] .hero-lead {
  color: var(--ink);
}
[data-theme="dark"] .hero-copy .button {
  background: var(--amber);
  color: #470a08;
}
[data-theme="dark"] .hero-mark {
  filter: brightness(0) saturate(100%) invert(79%) sepia(61%) saturate(1453%)
    hue-rotate(346deg) brightness(102%) contrast(101%);
}
[data-theme="dark"] .signup-section {
  background: var(--surface);
  color: var(--ink);
}
[data-theme="dark"] .signup-grid > div > p {
  color: var(--muted);
}
[data-theme="dark"] .signup-form {
  background: var(--paper);
}
[data-theme="dark"] .form-error {
  color: #ffac91;
}
/* An opening sequence introduces hierarchy; subsequent motion is user feedback. */
@media (prefers-reduced-motion: no-preference) {
  .hero-copy h1 {
    animation: title-enter 0.85s var(--ease) both;
  }
  .hero-copy .launch-label {
    animation: soft-enter 0.65s var(--ease) both;
  }
  .hero-copy .hero-lead,
  .hero-copy > .button {
    animation: soft-enter 0.75s 0.14s var(--ease) both;
  }
  .hero-photo {
    animation: photo-enter 1.1s 0.1s var(--ease) both;
  }
  .hero-pack-link {
    animation: pack-enter 1.1s 0.3s var(--ease) both;
  }
  .range-panel.is-entering .range-copy {
    animation: soft-enter 0.45s var(--ease) both;
  }
  .range-panel.is-entering .range-art {
    animation: soft-enter 0.55s var(--ease) both;
  }
  .ingredient-answer,
  .faq-answer {
    animation: soft-enter 0.25s var(--ease);
  }
  .form-success {
    animation: soft-enter 0.4s var(--ease);
  }
  @keyframes title-enter {
    from {
      opacity: 0;
      transform: translateY(28px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes soft-enter {
    from {
      opacity: 0;
      transform: translateY(12px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes photo-enter {
    from {
      opacity: 0;
      transform: scale(0.96) translateY(24px);
    }
    to {
      opacity: 1;
      transform: scale(1) translateY(0);
    }
  }
  @keyframes pack-enter {
    from {
      opacity: 0;
      transform: rotate(-18deg) translateY(50px);
    }
    to {
      opacity: 1;
      transform: rotate(-11deg) translateY(0);
    }
  }
}
@media (min-width: 1600px) {
  .home-hero-grid {
    min-height: 740px;
  }
  .hero-art {
    height: 710px;
  }
  .hero-copy h1 {
    font-size: 110px;
  }
  .hero-pack-link {
    width: 250px;
  }
  .hero-photo {
    inset: 25px 0 40px 30px;
  }
}
@media (max-width: 1199px) {
  :root {
    --shell: calc(100% - 64px);
  }
  .desktop-nav {
    gap: 18px;
  }
  .header-inner {
    gap: 20px;
  }
  .header-actions {
    gap: 8px;
  }
  .brand-logo {
    width: 137px;
  }
  .nav-cta {
    font-size: 12px;
    padding-inline: 16px;
  }
  .desktop-nav > a {
    font-size: 13px;
  }
  .hero-copy h1 {
    font-size: 80px;
  }
  .home-hero-grid {
    gap: 25px;
    min-height: 615px;
  }
  .hero-art {
    height: 610px;
  }
  .hero-photo {
    inset: 18px 0 45px 15px;
  }
  .hero-pack-link {
    width: 190px;
    left: -22px;
  }
  .hero-mark {
    width: 130px;
    right: -35px;
  }
  .hero-lead {
    font-size: 18px;
  }
  .range-copy {
    padding-right: 35px;
  }
  .range-art,
  .range-panel {
    min-height: 435px;
  }
  .range-pack {
    width: 255px;
  }
  .ingredient-photo img {
    height: 420px;
  }
  .why-grid {
    gap: 7%;
  }
  .protein-stat {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .protein-stat p {
    max-width: 350px;
  }
  .future-formats {
    gap: 7%;
  }
  .science-note-inner {
    gap: 50px;
  }
  .signup-grid {
    gap: 7%;
  }
  .signup-form {
    padding: 32px;
  }
  .product-stage {
    height: 535px;
  }
  .product-pack {
    height: 500px;
  }
  .product-intro .text-link {
    margin: 18px 0 0;
    display: block;
  }
  .founder-bio figure {
    height: 490px;
  }
  .footer-top {
    gap: 30px;
  }
  .section {
    padding-block: 90px;
  }
}
@media (max-width: 1023px) {
  .desktop-nav {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .header-actions {
    margin-left: auto;
    gap: 18px;
  }
  .header-inner {
    height: 72px;
  }
  .brand-logo {
    width: 142px;
  }
  .home-hero-grid {
    grid-template-columns: 1.05fr 1fr;
    gap: 10px;
    min-height: 565px;
  }
  .hero-copy h1 {
    font-size: 65px;
  }
  .hero-copy {
    padding-bottom: 45px;
  }
  .hero-art {
    height: 540px;
  }
  .hero-photo {
    inset: 18px 0 35px 4px;
  }
  .hero-pack-link {
    width: 165px;
    left: -8px;
    bottom: 2px;
  }
  .hero-lead {
    font-size: 17px;
    max-width: 330px;
  }
  .hero-copy .launch-label {
    margin-bottom: 24px;
  }
  .hero-copy .button {
    font-size: 14px;
    min-height: 52px;
    padding-inline: 23px;
  }
  .trust-strip span {
    font-size: 12px;
  }
  .intro-statement {
    margin-bottom: 65px;
  }
  .why-grid {
    gap: 6%;
  }
  .why-heading h2 {
    font-size: 43px;
  }
  .why-story {
    padding-top: 30px;
  }
  .range-tabs button {
    padding: 20px 15px;
  }
  .tab-caption {
    font-size: 11px;
  }
  .range-panel {
    grid-template-columns: 1fr 1fr;
  }
  .range-art,
  .range-panel {
    min-height: 455px;
  }
  .range-copy {
    padding: 30px 30px 30px 0;
  }
  .range-copy h3 {
    font-size: 53px;
  }
  .range-copy p {
    font-size: 15px;
  }
  .range-copy h4 {
    font-size: 16px;
  }
  .range-pack {
    width: 220px;
  }
  .range-lifestyle {
    height: 320px;
  }
  .range-large-name {
    font-size: 88px;
  }
  .future-formats {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .future-formats > div:first-child {
    max-width: 630px;
  }
  .format-list {
    gap: 40px;
    max-width: 660px;
  }
  .ingredient-grid {
    gap: 6%;
    grid-template-columns: 1fr 1fr;
  }
  .ingredient-photo img {
    height: 370px;
  }
  .ingredient-row summary {
    font-size: 28px;
    padding-block: 20px;
  }
  .ingredient-explorer > h3 {
    margin-bottom: 15px;
  }
  .ingredient-answer {
    font-size: 15px;
    padding-right: 0;
  }
  .principles {
    gap: 30px;
  }
  .science-note-inner {
    grid-template-columns: 0.7fr 1.5fr;
    gap: 35px;
  }
  .science-note-inner > .brand-mark {
    width: 180px;
  }
  .signup-grid {
    gap: 6%;
  }
  .signup-form {
    padding: 28px;
  }
  .signup-grid h2 {
    font-size: 44px;
  }
  .signup-perks li {
    font-size: 14px;
  }
  .founder-quotes {
    gap: 6%;
  }
  .founder-quote blockquote p {
    font-size: 16px;
  }
  .product-hero {
    gap: 6%;
  }
  .product-stage {
    height: 490px;
  }
  .product-pack {
    height: 450px;
  }
  .product-intro h1 {
    font-size: 64px;
  }
  .product-intro h2 {
    font-size: 24px;
  }
  .product-intro > p:not(.launch-label) {
    font-size: 16px;
  }
  .product-meta {
    gap: 6px;
  }
  .product-meta span {
    font-size: 11px;
  }
  .protein-grid {
    gap: 6%;
  }
  .protein-grid figure {
    height: 480px;
  }
  .protein-fact {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .how-grid {
    gap: 7%;
  }
  .how-grid figure {
    height: 530px;
  }
  .steps article {
    padding-left: 48px;
  }
  .nutrition-grid {
    gap: 5%;
  }
  .ingredients-list {
    padding: 25px;
  }
  .founder-bio {
    gap: 7%;
  }
  .founder-bio figure {
    height: 500px;
  }
  .founder-bio h3 {
    font-size: 42px;
  }
  .founder-bio p {
    font-size: 16px;
  }
  .story-hero,
  .science-hero {
    gap: 6%;
  }
  .story-hero h1,
  .science-hero h1 {
    font-size: 64px;
  }
  .story-hero figure,
  .science-hero figure {
    height: 520px;
  }
  .origin-grid {
    gap: 8%;
    grid-template-columns: 0.7fr 1.3fr;
  }
  .origin-art span {
    font-size: 70px;
  }
  .legal-grid {
    grid-template-columns: 170px 1fr;
    gap: 6%;
  }
  .faq-grid {
    gap: 8%;
    grid-template-columns: 0.7fr 1.3fr;
  }
}
@media (max-width: 767px) {
  :root {
    --shell: calc(100% - 40px);
  }
  body {
    font-size: 16px;
  }
  .section {
    padding-block: 70px;
  }
  h1 {
    font-size: 58px;
    letter-spacing: -0.06em;
  }
  h2 {
    font-size: 40px;
  }
  h3 {
    font-size: 28px;
  }
  .announcement {
    font-size: 10px;
    padding-inline: 17px;
    line-height: 1.5;
    min-height: 32px;
  }
  .header-inner {
    height: 68px;
    gap: 10px;
  }
  .brand-logo {
    width: 127px;
  }
  .header-actions {
    gap: 10px;
  }
  .nav-cta {
    font-size: 11px;
    padding: 9px 14px;
    min-height: 38px;
  }
  .theme-toggle {
    width: 28px;
    font-size: 21px;
  }
  .menu-toggle {
    width: 34px;
    padding: 7px;
  }
  .home-hero-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: 0;
  }
  .hero-copy {
    width: 100%;
    padding: 32px 0 0;
    max-width: 620px;
  }
  .hero-copy h1 {
    font-size: clamp(53px, 9.7vw, 73px);
    max-width: 650px;
    line-height: 1;
  }
  .hero-copy .launch-label {
    font-size: 11px;
    padding: 5px 10px;
    margin-bottom: 20px;
  }
  .hero-lead {
    font-size: 16px;
    max-width: 520px;
    margin-top: 23px;
  }
  .hero-copy .button {
    margin-top: 24px;
    min-height: 50px;
  }
  .hero-art {
    height: 420px;
    width: 100%;
    max-width: 540px;
    margin-top: 26px;
    align-self: center;
  }
  .hero-photo {
    inset: 5px 5px 28px 40px;
    border-radius: 45% 45% 43% 43%;
  }
  .hero-photo img {
    object-position: 55% 45%;
  }
  .hero-pack-link {
    width: 162px;
    left: 0;
    bottom: -2px;
  }
  .hero-mark {
    width: 105px;
    right: -26px;
    bottom: 30px;
  }
  .trust-strip {
    padding-block: 20px;
  }
  .trust-strip .shell {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 12px;
  }
  .trust-strip span {
    font-size: 12px;
    text-align: left;
  }
  .intro-statement {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 54px;
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .why-heading h2 {
    font-size: 44px;
    max-width: 570px;
  }
  .protein-stat {
    grid-template-columns: auto 1fr;
    gap: 25px;
    margin-top: 27px;
  }
  .stat-number {
    font-size: 65px;
  }
  .protein-stat p {
    font-size: 12px;
    max-width: none;
  }
  .why-story {
    padding: 0;
  }
  .why-story p {
    font-size: 16px;
  }
  .why-story .statement-close {
    font-size: 23px;
  }
  .section-heading {
    margin-bottom: 35px;
  }
  .section-heading > p:last-child:not(.eyebrow) {
    margin-top: 22px;
    font-size: 16px;
  }
  .eyebrow {
    font-size: 13px;
    margin-bottom: 19px;
  }
  .range-tabs {
    gap: 0;
    margin-bottom: 10px;
  }
  .range-tabs button {
    padding: 17px 5px;
    border-radius: 0;
    border-left: 0;
    text-align: center;
  }
  .range-tabs button:first-child {
    border-left: 1px solid var(--line);
    border-top-left-radius: 10px;
  }
  .range-tabs button:last-child {
    border-top-right-radius: 10px;
  }
  .range-tabs button > span:first-child {
    font-size: 24px;
  }
  .tab-caption {
    display: none;
  }
  .range-panel {
    grid-template-columns: 1fr;
    border-radius: 0 0 18px 18px;
    min-height: 0;
  }
  .range-art {
    min-height: 330px;
    height: 330px;
  }
  .range-pack {
    width: 210px;
    max-height: 320px;
    object-fit: contain;
  }
  .range-mark {
    width: 270px;
  }
  .range-copy {
    padding: 10px 28px 34px;
  }
  .range-copy h3 {
    font-size: 53px;
  }
  .product-status {
    font-size: 12px;
    margin-bottom: 14px;
  }
  .range-copy h4 {
    font-size: 17px;
  }
  .range-copy p {
    font-size: 16px;
    margin-top: 18px;
    max-width: 600px;
  }
  .range-copy .button {
    font-size: 14px;
    min-height: 51px;
    margin-top: 25px;
  }
  .range-lifestyle {
    height: 290px;
    width: 70%;
  }
  .range-large-name {
    font-size: 85px;
    bottom: 0;
    left: 25px;
  }
  .future-formats {
    padding-top: 48px;
    gap: 28px;
  }
  .future-formats h3 {
    font-size: 31px;
  }
  .format-list {
    gap: 26px;
  }
  .format-list h4 {
    font-size: 22px;
  }
  .format-list p {
    font-size: 14px !important;
  }
  .ingredient-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .ingredient-photo img {
    height: auto;
    aspect-ratio: 1.15;
    max-height: 480px;
    border-radius: 150px 150px 18px 18px;
    object-position: center;
  }
  .ingredient-photo figcaption {
    font-size: 13px;
    max-width: 550px;
  }
  .ingredient-explorer {
    padding-top: 0;
  }
  .ingredient-explorer > h3 {
    margin-bottom: 15px;
  }
  .ingredient-row summary {
    font-size: 31px;
    padding-block: 21px;
  }
  .ingredient-answer {
    font-size: 16px;
    max-width: 580px;
  }
  .principles {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 42px;
    padding-top: 32px;
  }
  .principles article {
    max-width: 570px;
  }
  .principles h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .principles p {
    font-size: 15px;
  }
  .science-note-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .science-note-inner > .brand-mark {
    width: 85px;
    margin: 0;
  }
  .science-note-inner h2 {
    font-size: 41px;
    max-width: 650px;
  }
  .science-note-inner p {
    font-size: 16px;
    margin-top: 23px;
  }
  .science-note-inner .button {
    font-size: 14px;
    min-height: 52px;
    margin-top: 25px;
  }
  .founder-quotes {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .quote-person {
    margin-bottom: 20px;
  }
  .founder-quote blockquote p {
    font-size: 17px;
  }
  .founder-invite {
    font-size: 15px;
    margin-top: 38px;
  }
  .signup-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .signup-grid h2 {
    font-size: 43px;
    max-width: 620px;
  }
  .signup-grid > div > p {
    font-size: 16px;
    margin-top: 22px;
  }
  .signup-perks li {
    font-size: 15px;
  }
  .signup-form {
    padding: 30px;
    max-width: 620px;
    width: 100%;
  }
  .principle-section .shell {
    padding-inline: 0;
  }
  .principle-section p {
    font-size: 28px;
  }
  .principle-section h2 {
    font-size: 18px;
  }
  .principle-section .brand-mark {
    width: 48px;
  }
  .product-hero {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-block: 32px 55px;
  }
  .product-stage {
    height: 420px;
    max-width: 530px;
    width: 100%;
    margin: auto;
  }
  .product-pack {
    height: 390px;
  }
  .product-intro {
    max-width: 630px;
  }
  .product-intro .launch-label {
    margin-bottom: 20px;
  }
  .product-intro h1 {
    font-size: 70px;
  }
  .product-intro h2 {
    font-size: 25px;
    margin-top: 20px;
  }
  .product-intro > p:not(.launch-label) {
    font-size: 17px;
    max-width: 600px;
  }
  .product-intro .text-link {
    display: inline-block;
    margin: 0 0 0 20px;
  }
  .product-meta span {
    font-size: 12px;
  }
  .product-statement h2 {
    font-size: 40px;
  }
  .product-statement p {
    font-size: 16px;
  }
  .protein-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .protein-grid figure {
    height: 370px;
  }
  .protein-grid h3 {
    font-size: 28px;
  }
  .protein-grid p {
    font-size: 16px;
  }
  .protein-fact {
    grid-template-columns: auto 1fr;
    gap: 25px;
    margin-block: 28px;
  }
  .protein-fact > span {
    font-size: 67px;
  }
  .protein-fact p {
    font-size: 13px;
  }
  .how-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .how-grid figure {
    height: 380px;
    max-width: 540px;
  }
  .steps article {
    padding: 0 0 28px 52px;
    max-width: 600px;
  }
  .steps article + article {
    margin-top: 9px;
  }
  .steps h3 {
    font-size: 30px;
  }
  .steps p {
    font-size: 16px;
  }
  .nutrition-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .nutri-table {
    font-size: 15px;
  }
  .nutri-table caption {
    font-size: 23px;
  }
  .ingredients-list {
    padding: 25px;
  }
  .rni-note p {
    font-size: 15px;
  }
  .closing {
    padding-block: 65px;
  }
  .closing-inner {
    display: block;
  }
  .closing-inner > .brand-mark {
    width: 64px;
    margin-bottom: 28px;
  }
  .closing-inner h2 {
    font-size: 41px;
  }
  .closing-inner p {
    font-size: 16px;
  }
  .closing-inner .button {
    font-size: 14px;
  }
  .story-hero,
  .science-hero {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-block: 38px 65px;
  }
  .story-hero h1,
  .science-hero h1 {
    font-size: clamp(53px, 10vw, 73px);
    max-width: 660px;
  }
  .story-hero p:not(.eyebrow),
  .science-hero p:not(.eyebrow) {
    font-size: 17px;
    max-width: 620px;
  }
  .story-hero figure,
  .science-hero figure {
    height: 380px;
    width: 100%;
    max-width: 600px;
    margin: auto;
  }
  .science-hero figure {
    height: 400px;
    border-radius: 45%;
  }
  .origin-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .origin-art {
    display: none;
  }
  .long-read h2,
  .long-read h3 {
    font-size: 32px;
  }
  .long-read p {
    font-size: 16px;
  }
  .founder-bio {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 0 50px;
  }
  .founder-bio figure {
    height: 440px;
    width: 100%;
    max-width: 470px;
  }
  .founder-bio h3 {
    font-size: 44px;
    margin-bottom: 23px;
  }
  .founder-bio p {
    font-size: 16px;
  }
  .founder-bio + .founder-bio {
    padding-top: 45px;
  }
  .founder-bio:nth-of-type(2) figure {
    order: 0;
    border-radius: 180px 180px 20px 20px;
  }
  .large-body {
    font-size: 21px;
  }
  .research-section .shell {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .research-section .brand-mark {
    width: 90px;
    margin: 0;
  }
  .research-section p {
    font-size: 16px;
  }
  .contact-hero {
    padding-block: 40px;
  }
  .contact-hero h1 {
    font-size: 58px;
  }
  .contact-hero > p:last-child {
    font-size: 18px;
    margin-top: 25px;
  }
  .contact-body {
    padding-bottom: 65px;
  }
  .contact-body .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .contact-body .contact-card {
    padding: 28px;
  }
  .contact-body h3 {
    font-size: 27px;
  }
  .contact-body p {
    font-size: 16px;
  }
  .contact-body .email {
    font-size: 28px;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .faq-grid > div:first-child {
    position: static;
  }
  .faq-grid .brand-mark {
    display: none;
  }
  .faq-row summary {
    font-size: 18px;
    padding-block: 22px;
  }
  .faq-answer {
    font-size: 16px;
    padding-right: 12px;
  }
  .legal-header {
    padding-top: 35px;
    padding-bottom: 32px;
  }
  .legal-header h1 {
    font-size: 49px;
  }
  .legal-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 70px;
  }
  .legal-grid aside {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 13px;
  }
  .legal-copy h2 {
    font-size: 25px;
  }
  .legal-copy p {
    font-size: 16px;
  }
  .site-footer {
    padding-top: 48px;
  }
  .footer-top {
    grid-template-columns: repeat(3, 1fr);
    gap: 35px 16px;
  }
  .footer-brand {
    grid-column: 1/-1;
    max-width: 460px;
  }
  .footer-brand .brand-logo {
    width: 153px;
  }
  .footer-top h3 {
    font-size: 12px;
    margin-bottom: 17px;
  }
  .footer-top > div > a {
    font-size: 13px;
  }
  .footer-signature {
    font-size: clamp(46px, 10.5vw, 80px);
    margin-top: 45px;
    padding-bottom: 25px;
  }
  .footer-bottom {
    display: block;
    padding-block: 24px 30px;
  }
  .footer-bottom p {
    font-size: 10px;
    max-width: 550px;
  }
  .footer-bottom p + p {
    margin-top: 12px;
  }
}
@media (max-width: 389px) {
  :root {
    --shell: calc(100% - 32px);
  }
  .header-actions {
    gap: 5px;
  }
  .brand-logo {
    width: 114px;
  }
  .nav-cta {
    font-size: 10px;
    padding-inline: 11px;
  }
  .theme-toggle {
    width: 26px;
  }
  .hero-copy h1 {
    font-size: 51px;
  }
  .hero-art {
    height: 370px;
  }
  .hero-pack-link {
    width: 145px;
  }
  .hero-photo {
    left: 28px;
  }
  .protein-stat {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .product-intro .text-link {
    display: block;
    margin: 20px 0 0;
  }
  .product-intro h1 {
    font-size: 61px;
  }
  .signup-form {
    padding: 24px;
  }
  .contact-body .email {
    font-size: 24px;
  }
  .range-tabs button > span:first-child {
    font-size: 22px;
  }
  .footer-signature {
    font-size: 10.2vw;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .hero-pack-link:hover,
  .range-art:hover .range-pack {
    transform: none;
  }
}
@media print {
  .announcement,
  .site-header,
  .theme-toggle,
  .mobile-nav,
  .skip-link {
    display: none;
  }
  body {
    font-size: 12pt;
    background: white;
    color: #470a08;
  }
  .shell {
    width: 100%;
  }
  .section {
    padding-block: 30px;
  }
  .range-panel[hidden] {
    display: grid !important;
  }
  details > * {
    display: block !important;
  }
  .site-footer {
    page-break-before: auto;
  }
  .footer-signature {
    font-size: 65px;
  }
  .button {
    border: 1px solid #470a08;
  }
  h1 {
    font-size: 48pt;
  }
  h2 {
    font-size: 28pt;
  }
  img {
    break-inside: avoid;
  }
}

@media (min-width: 768px) and (max-width: 899px) {
  .hero-copy h1 {
    font-size: 56px;
  }
  .hero-copy .hero-lead {
    font-size: 16px;
  }
  .hero-copy .launch-label {
    margin-bottom: 21px;
  }
  .hero-art {
    height: 510px;
  }
  .home-hero-grid {
    min-height: 545px;
  }
}

@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .product-pack {
    transform: perspective(900px) rotateX(var(--tilt-x, 0deg))
      rotateY(var(--tilt-y, 0deg)) rotate(-8deg);
    transition: transform 0.45s var(--ease);
  }
}

/* Refinements from the September screenshot review. Layout changes are grouped
   here so the baseline evidence can be compared with one coherent revision. */
.section-heading.split-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 0 7%;
  max-width: none;
  margin-bottom: 40px;
}
.split-heading > .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 18px;
}
.split-heading > h2 {
  grid-column: 1;
  max-width: 760px;
  font-size: clamp(40px, 3.75vw, 56px);
}
.split-heading > p:last-child:not(.eyebrow) {
  grid-column: 2;
  align-self: end;
  max-width: 470px;
  margin: 0 0 3px;
  font-size: 17px;
  line-height: 1.65;
}
.hero-photo img {
  object-position: right center;
  transform: scale(1.055);
  transform-origin: right center;
}
.blend-meno .range-lifestyle {
  object-position: right center;
}
.range-section {
  padding-top: 76px;
}
.range-tabs {
  gap: 0;
}
.range-tabs button {
  border-radius: 0;
  border-right-width: 0;
}
.range-tabs button:last-child {
  border-right-width: 1px;
}
.range-tabs button:first-child {
  border-top-left-radius: 16px;
}
.range-tabs button:last-child {
  border-top-right-radius: 16px;
}
.range-tabs [aria-selected="true"] {
  position: relative;
}
.range-tabs [aria-selected="true"]:after {
  content: "";
  position: absolute;
  bottom: 12px;
  right: 18px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}
.range-panel {
  border-radius: 0 0 20px 20px;
}
.future-formats {
  border-top: 1px solid var(--line);
  margin-top: 44px;
  padding-top: 36px;
}
.future-formats .eyebrow {
  margin-bottom: 15px;
}
.intro-statement {
  max-width: 1100px;
  font-size: clamp(28px, 2.6vw, 38px);
}
.protein-stat {
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

/* Every ingredient remains a native disclosure. Its photograph and index now
   respond to the same selection, without moving the surrounding layout. */
.ingredient-photo {
  position: sticky;
  top: 112px;
}
.ingredient-visual {
  position: relative;
  height: 460px;
  overflow: hidden;
  background: #eee1c7;
  border-radius: 16px 160px 16px 16px;
  isolation: isolate;
}
.ingredient-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.ingredient-frame img {
  width: 100%;
  height: 100%;
  max-height: none;
  aspect-ratio: auto;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
}
.frame-grapes img {
  object-position: 24% center;
}
.frame-turmeric img {
  object-position: right bottom;
  transform: scale(1.45);
  transform-origin: right bottom;
}
.ingredient-plate {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #470a08;
  background: #fff1d2;
  border-radius: 8px;
  padding: 15px 19px;
}
.ingredient-plate > span:first-child {
  font-size: 12px;
  letter-spacing: 0.07em;
}
.ingredient-plate > span:last-child {
  font: 700 25px/1.1 var(--display);
  letter-spacing: -0.035em;
}
.ingredient-row summary {
  font-size: 32px;
  padding-block: 21px;
  gap: 16px;
}
.ingredient-row[open] {
  border-bottom-color: var(--ink);
}
.ingredient-row[open] summary {
  color: var(--ink);
}
.ingredient-source {
  font-size: 11px;
  letter-spacing: 0.09em;
}
.ingredient-explorer > h3 {
  margin-bottom: 18px;
}
.principles {
  margin-top: 52px;
  padding-top: 30px;
}

/* The science is a deliberate change of pace, followed by human stories. */
.science-note,
.research-section,
.site-footer {
  --ink: #fff1d2;
  --muted: #dbc1ab;
  --line: rgba(255, 241, 210, 0.25);
  --button: #ffbb12;
  --button-text: #470a08;
  color: var(--ink);
  background: #470a08;
}
.science-note,
.research-section {
  position: relative;
  overflow: hidden;
  padding-block: 92px;
}
.science-note-inner,
.research-section .shell {
  max-width: none;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 11%;
}
.science-note-inner > .brand-mark,
.research-section .brand-mark {
  width: min(270px, 78%);
  filter: brightness(0) saturate(100%) invert(77%) sepia(68%) saturate(2000%)
    hue-rotate(347deg) brightness(103%) contrast(105%);
  transform: rotate(-12deg);
}
.science-note-inner > div,
.research-section .shell > div:last-child {
  border-top: 1px solid var(--line);
  padding-top: 30px;
}
.science-note-inner h2,
.research-section h2 {
  max-width: 750px;
  font-size: clamp(43px, 4.6vw, 66px);
}
.science-note-inner p,
.research-section p {
  color: var(--muted);
  max-width: 610px;
  font-size: 17px;
}
.science-note .button-outline {
  border-color: var(--line);
  color: var(--ink);
  background: transparent;
}
.science-note .button-outline:hover {
  background: #fff1d2;
  color: #470a08;
}
.site-footer {
  padding-top: 72px;
}
.site-footer .brand-logo {
  filter: brightness(0) invert(94%) sepia(13%) saturate(600%) hue-rotate(334deg);
}
.site-footer .footer-signature {
  color: #ffbb12;
  padding-block: 45px 34px;
}
.site-footer .footer-bottom {
  border-top: 1px solid var(--line);
}
.site-footer .footer-top a:hover {
  color: #ffbb12;
}
[data-theme="dark"] .science-note-inner > .brand-mark,
[data-theme="dark"] .research-section .brand-mark {
  filter: brightness(0) saturate(100%) invert(77%) sepia(68%) saturate(2000%)
    hue-rotate(347deg) brightness(103%) contrast(105%);
}

/* Portrait proportions are intrinsic, preventing David's wider second column
   from cropping his chin. Supplied identities are preserved. */
.founder-bio {
  grid-template-columns: 0.85fr 1.15fr;
  gap: 9%;
}
.founder-bio:nth-of-type(2) {
  grid-template-columns: 1.15fr 0.85fr;
}
.founder-bio figure,
.founder-bio:nth-of-type(2) figure {
  height: auto;
  aspect-ratio: 4 / 5;
  border-radius: 16px 140px 16px 16px;
}
.founder-bio:nth-of-type(2) figure {
  border-radius: 140px 16px 16px 16px;
}
.founder-bio img {
  object-position: center;
}
.founder-bio:nth-of-type(2) img {
  object-position: center 60%;
}
.quote-person img {
  width: 88px;
  height: 104px;
  border-radius: 44px 44px 8px 8px;
  object-position: center 55%;
}
.quote-person {
  align-items: end;
}
.quote-person span {
  padding-bottom: 9px;
}
.founder-quote {
  padding-top: 22px;
}
.founder-quote blockquote p {
  font-size: 18px;
  line-height: 1.7;
}
.origin-grid {
  grid-template-columns: 0.7fr 1.3fr;
  gap: 11%;
}
.origin-art {
  padding-top: 15px;
}
.origin-art .brand-mark {
  width: 150px;
  margin-left: 0;
}
.origin-art span {
  text-align: left;
  font-size: 40px;
  line-height: 1.1;
  max-width: 340px;
  margin-top: 30px;
}
.long-read > p:first-child {
  font: 700 30px/1.25 var(--display);
  color: var(--ink);
  letter-spacing: -0.035em;
  margin-bottom: 30px;
}
.science-hero figure {
  border-radius: 16px 160px 16px 160px;
  height: 555px;
}
.science-hero img {
  object-position: center;
}
.nutrition-grid {
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.nutri-table tbody tr:last-child {
  border-bottom: 1px solid var(--line);
}
.nutri-table td {
  font-variant-numeric: tabular-nums;
}
.contact-body .contact-card {
  border-top: 2px solid var(--ink);
  border-radius: 0 0 14px 14px;
}

@media (prefers-reduced-motion: no-preference) {
  .ingredient-frame:not([hidden]) {
    animation: ingredient-arrive 500ms var(--ease) both;
  }
  @keyframes ingredient-arrive {
    from {
      opacity: 0.25;
    }
    to {
      opacity: 1;
    }
  }
  [data-reveal].is-revealed > .shell,
  .founder-bio.is-revealed > * {
    animation: editorial-arrive 700ms var(--ease) both;
  }
  @keyframes editorial-arrive {
    from {
      opacity: 0.5;
      transform: translateY(18px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
@media (max-width: 1199px) {
  .section-heading.split-heading {
    gap: 0 6%;
    grid-template-columns: 1.15fr 0.85fr;
  }
  .split-heading > h2 {
    font-size: 43px;
  }
  .split-heading > p:last-child:not(.eyebrow) {
    font-size: 16px;
  }
  .ingredient-visual {
    height: 390px;
  }
  .range-tabs button {
    padding-inline: 18px;
  }
}
@media (max-width: 1023px) {
  .section-heading.split-heading {
    grid-template-columns: 1fr;
  }
  .split-heading > p:last-child:not(.eyebrow) {
    grid-column: 1;
    margin-top: 22px;
    max-width: 640px;
  }
  .split-heading > h2 {
    max-width: 720px;
  }
  .range-section .section-heading {
    max-width: 760px;
  }
  .science-note-inner,
  .research-section .shell {
    gap: 7%;
  }
  .science-note-inner h2,
  .research-section h2 {
    font-size: 44px;
  }
  .ingredient-visual {
    height: 350px;
    border-top-right-radius: 110px;
  }
  .ingredient-plate {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 13px;
  }
  .ingredient-plate > span:last-child {
    font-size: 22px;
  }
  .science-hero figure {
    height: 470px;
    border-radius: 16px 100px 16px 100px;
  }
  .support-list li {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .announcement {
    font-size: 11px;
    line-height: 1.5;
    padding: 7px 22px;
    text-wrap: balance;
  }
  .header-inner {
    height: 66px;
  }
  .header-inner .brand-logo {
    width: 116px;
  }
  .header-actions {
    gap: 6px;
  }
  .theme-toggle {
    width: 26px;
  }
  .nav-cta {
    font-size: 10px;
    padding-inline: 12px;
    min-height: 36px;
  }
  .hero-copy {
    padding-top: 26px;
  }
  .hero-copy h1 {
    font-size: clamp(49px, 10.8vw, 68px);
  }
  .hero-photo img {
    object-position: right center;
  }
  .hero-art {
    height: 370px;
    margin-top: 24px;
  }
  .hero-pack-link {
    width: 145px;
  }
  .hero-photo {
    inset: 5px 0 28px 26px;
  }
  .section {
    padding-block: 58px;
  }
  .intro-statement {
    font-size: 27px;
    margin-bottom: 42px;
  }
  .why-heading h2 {
    font-size: 39px;
  }
  .protein-stat {
    grid-template-columns: auto 1fr;
    gap: 20px;
  }
  .protein-stat p {
    font-size: 12px;
  }
  .stat-number {
    font-size: 60px;
  }
  .section-heading.split-heading {
    display: block;
    margin-bottom: 30px;
  }
  .split-heading > h2 {
    font-size: 36px;
    line-height: 1.08;
  }
  .split-heading > p:last-child:not(.eyebrow) {
    margin-top: 20px;
  }
  .range-tabs {
    margin-bottom: 0;
  }
  .range-tabs button {
    padding: 17px 5px;
  }
  .range-tabs button:first-child {
    border-top-left-radius: 12px;
  }
  .range-tabs button:last-child {
    border-top-right-radius: 12px;
  }
  .range-tabs button > span:first-child {
    font-size: 23px;
  }
  .range-tabs [aria-selected="true"]:after {
    display: none;
  }
  .range-art {
    min-height: 245px;
    height: 245px;
  }
  .range-pack {
    width: 168px;
    max-height: 235px;
  }
  .range-mark {
    width: 230px;
  }
  .range-lifestyle {
    height: 218px;
    width: 69%;
  }
  .range-large-name {
    font-size: 68px;
    bottom: 8px;
  }
  .range-copy {
    padding: 20px 24px 28px;
  }
  .range-copy h3 {
    font-size: 47px;
  }
  .future-formats {
    margin-top: 34px;
    padding-top: 30px;
  }
  .ingredient-photo {
    position: static;
  }
  .ingredient-visual {
    height: 300px;
    border-radius: 12px 100px 12px 12px;
  }
  .ingredient-frame img {
    height: 100%;
    aspect-ratio: auto;
    max-height: none;
    border-radius: 0;
  }
  .ingredient-grid {
    gap: 25px;
  }
  .ingredient-photo figcaption {
    margin-top: 15px;
  }
  .ingredient-row summary {
    font-size: 29px;
    padding-block: 20px;
  }
  .ingredient-answer {
    min-height: 114px;
  }
  .principles {
    margin-top: 36px;
    padding-top: 24px;
  }
  .science-note,
  .research-section {
    padding-block: 60px;
  }
  .science-note-inner,
  .research-section .shell {
    display: block;
  }
  .science-note-inner > .brand-mark,
  .research-section .brand-mark {
    width: 74px;
    margin: 0 0 32px;
  }
  .science-note-inner > div,
  .research-section .shell > div:last-child {
    padding-top: 24px;
  }
  .science-note-inner h2,
  .research-section h2 {
    font-size: 40px;
  }
  .science-note-inner p,
  .research-section p {
    font-size: 16px;
    margin-top: 22px;
  }
  .founder-bio,
  .founder-bio:nth-of-type(2) {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .founder-bio figure,
  .founder-bio:nth-of-type(2) figure {
    max-width: 420px;
    border-radius: 12px 100px 12px 12px;
  }
  .quote-person img {
    width: 74px;
    height: 88px;
  }
  .founder-quote blockquote p {
    font-size: 16px;
  }
  .origin-grid {
    grid-template-columns: 1fr;
  }
  .long-read > p:first-child {
    font-size: 27px;
    margin-bottom: 25px;
  }
  .product-intro {
    order: -1;
  }
  .product-intro h1 {
    font-size: 65px;
  }
  .product-intro .launch-label {
    margin-bottom: 18px;
  }
  .product-hero {
    gap: 32px;
  }
  .product-stage {
    height: 345px;
    border-radius: 150px 150px 16px 16px;
  }
  .product-pack {
    height: 325px;
  }
  .product-meta {
    gap: 7px;
  }
  .product-meta span {
    font-size: 11px;
    padding-inline: 9px;
  }
  .product-statement h2 {
    font-size: 36px;
  }
  .support-list {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .support-list li {
    font-size: 26px;
    padding-block: 17px;
  }
  .support-list li:last-child {
    border-bottom: 1px solid var(--line);
  }
  .science-hero figure {
    height: 345px;
    border-radius: 12px 100px 12px 100px;
  }
  .nutrition-grid {
    padding-top: 24px;
  }
  .site-footer {
    padding-top: 55px;
  }
  .site-footer .footer-signature {
    padding-block: 36px 25px;
  }
  .closing {
    padding-block: 60px;
  }
}
@media (max-width: 389px) {
  .header-inner .brand-logo {
    width: 103px;
  }
  .header-actions {
    gap: 4px;
  }
  .nav-cta {
    padding-inline: 10px;
  }
  .hero-art {
    height: 335px;
  }
  .hero-pack-link {
    width: 133px;
  }
  .hero-copy h1 {
    font-size: 48px;
  }
  .split-heading > h2 {
    font-size: 34px;
  }
  .ingredient-visual {
    height: 280px;
  }
  .ingredient-plate > span:last-child {
    font-size: 21px;
  }
  .product-intro h1 {
    font-size: 60px;
  }
}
@media print {
  .science-note,
  .research-section,
  .site-footer {
    --ink: #470a08;
    --muted: #470a08;
    background: white;
    color: #470a08;
  }
  .site-footer .footer-signature {
    color: #470a08;
  }
  .site-footer .brand-logo {
    filter: none;
  }
  .ingredient-photo {
    position: static;
  }
}

/* Product discovery comes before the longer rationale. */
.intro-section {
  padding-block: 64px;
}
.intro-statement {
  margin-bottom: 0;
}
.why-section {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.page-index .site-header.is-past-hero {
  background: var(--header);
  border-bottom-color: var(--line);
}
.site-header {
  transition:
    background 280ms,
    border-color 280ms;
}
.story-portraits {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
  padding-block: 16px 55px;
}
.story-portraits figure {
  height: auto;
  border-radius: 110px 110px 12px 12px;
  overflow: hidden;
  background: var(--surface);
  transform: rotate(-4deg);
  position: relative;
  z-index: 1;
}
.story-portraits figure:nth-child(2) {
  margin-top: 130px;
  transform: rotate(5deg);
}
.story-portraits img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 55%;
}
.story-portraits figcaption {
  font-size: 14px;
  font-weight: 600;
  padding: 14px 18px;
  text-align: center;
}
.story-portraits > .brand-mark {
  position: absolute;
  width: 105px;
  right: 40px;
  top: 5px;
  opacity: 0.65;
  transform: rotate(14deg);
}
@media (max-width: 1023px) {
  .story-portraits {
    gap: 14px;
  }
  .story-portraits figure:nth-child(2) {
    margin-top: 90px;
  }
  .story-portraits > .brand-mark {
    width: 65px;
    right: 25px;
  }
  .story-portraits figcaption {
    padding: 13px 6px;
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .intro-section {
    padding-block: 42px;
  }
  .intro-statement {
    font-size: 25px;
  }
  .story-portraits {
    padding: 10px 8px 20px;
    gap: 20px;
  }
  .story-portraits figure {
    margin: 0;
    border-radius: 80px 80px 10px 10px;
  }
  .story-portraits figure:nth-child(2) {
    margin-top: 76px;
  }
  .story-portraits > .brand-mark {
    width: 60px;
    right: 45px;
  }
}

.hero-photo {
  border-radius: 200px 200px 140px 32px;
}
@media (max-width: 767px) {
  .hero-photo {
    border-radius: 140px 140px 100px 24px;
  }
}

/* Second rendered review: keep the subject centred while the hero uses its
   narrow, two-column layout. The wide and stacked crops were verified already. */
@media (min-width: 768px) and (max-width: 1439px) {
  .hero-photo img {
    object-position: 55% center;
    transform: none;
  }
}

/* On phones the selected image belongs with its disclosure, so a tap never
   updates a photograph that has scrolled out of view. Native details also work
   without JavaScript. The wide-screen image selector is unchanged. */
.ingredient-mobile-photo {
  display: none;
}
@media (max-width: 767px) {
  .ingredient-grid {
    display: flex;
    flex-direction: column;
    gap: 22px;
  }
  .ingredient-photo {
    order: 2;
    width: 100%;
  }
  .ingredient-photo .ingredient-visual {
    display: none;
  }
  .ingredient-photo figcaption {
    margin-top: 0;
  }
  .ingredient-explorer {
    width: 100%;
  }
  .ingredient-answer {
    padding-right: 0;
  }
  .ingredient-mobile-photo {
    display: block;
    width: 100%;
    aspect-ratio: 1.6;
    max-height: 300px;
    margin: 0 0 20px;
    border-radius: 12px 64px 12px 12px;
    overflow: hidden;
    background: #eee1c7;
  }
  .ingredient-mobile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
