@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("assets/fonts/inter-var-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("assets/fonts/inter-var-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191-2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #0a0a09;
  --ink-soft: #373633;
  --muted: #696762;
  --line: #dedbd3;
  --line-dark: #c7c1b3;
  --cream: #f6f2e9;
  --cream-deep: #eee8dc;
  --paper: #ffffff;
  --gold: #a9884e;
  --gold-light: #c9ae78;
  --shell: min(1280px, calc(100vw - 64px));
  --shell-wide: min(1384px, calc(100vw - 40px));
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --ease: cubic-bezier(0.2, 0.75, 0.25, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p,
dl,
dd,
blockquote {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 11px 16px;
  color: #fff;
  background: var(--ink);
  font-size: 12px;
  font-weight: 650;
  transform: translateY(-150%);
}

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

:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.shell-wide {
  width: var(--shell-wide);
  margin-inline: auto;
}

.announcement {
  min-height: 34px;
  display: grid;
  place-items: center;
  padding: 7px 24px;
  color: #fff;
  background: var(--ink);
}

.announcement p {
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 9px;
  font-weight: 550;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
}

.announcement strong {
  color: #e6d6b4;
  font-weight: 600;
}

.announcement-divider {
  width: 1px;
  height: 10px;
  background: rgba(255, 255, 255, 0.36);
}

.site-header {
  position: sticky;
  z-index: 90;
  top: 0;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.header-main {
  min-height: 78px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
}

.primary-nav {
  display: flex;
  gap: clamp(18px, 2vw, 32px);
  align-items: center;
}

.primary-nav-right {
  justify-content: flex-end;
}

.primary-nav a {
  position: relative;
  display: inline-flex;
  gap: 7px;
  align-items: center;
  padding-block: 7px;
  color: #282724;
  font-size: 11px;
  font-weight: 560;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 250ms var(--ease);
}

.primary-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.primary-nav svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.5;
}

.bag-count {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  color: #fff;
  background: var(--ink);
  border-radius: 50%;
  font-size: 9px;
}

.wordmark {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  justify-self: center;
  white-space: nowrap;
}

.wordmark-mark {
  position: relative;
  width: 27px;
  height: 27px;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.wordmark-mark::before,
.wordmark-mark::after {
  position: absolute;
  background: var(--gold);
  content: "";
}

.wordmark-mark::before {
  top: 5px;
  bottom: 5px;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
}

.wordmark-mark::after {
  top: 50%;
  right: 5px;
  left: 5px;
  height: 1px;
  transform: translateY(-50%);
}

.wordmark-type {
  display: grid;
  gap: 2px;
}

.wordmark-type strong {
  font-size: 15px;
  font-weight: 720;
  letter-spacing: 0.16em;
  line-height: 1;
}

.wordmark-type span {
  color: #44423e;
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.39em;
  line-height: 1;
}

.category-nav {
  min-height: 42px;
  display: flex;
  gap: 38px;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #eeeae3;
}

.category-nav a {
  position: relative;
  padding: 13px 0 12px;
  color: #4d4b46;
  font-size: 10px;
  font-weight: 550;
  letter-spacing: 0.075em;
  white-space: nowrap;
  text-transform: uppercase;
}

.category-nav a::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  opacity: 0;
  transform: scaleX(0.45);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.category-nav a:hover,
.category-nav a.is-active {
  color: var(--ink);
}

.category-nav a:hover::after,
.category-nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.mobile-menu {
  display: none;
}

.hero {
  padding: 30px 0 20px;
}

.hero-grid {
  min-height: 648px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.hero-copy {
  display: flex;
  padding: clamp(72px, 7vw, 112px) clamp(54px, 6vw, 96px) 54px;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
  border: 1px solid var(--line);
  border-right: 0;
}

.eyebrow {
  display: flex;
  gap: 9px;
  align-items: center;
  color: #4d4a44;
  font-size: 9px;
  font-weight: 680;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(197, 164, 90, 0.13);
}

.hero h1 {
  max-width: 690px;
  margin-top: 23px;
  font-size: clamp(54px, 5.25vw, 79px);
  font-weight: 520;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.hero h1 em {
  display: block;
  margin-top: 5px;
  font-family: var(--serif);
  font-size: 1.07em;
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1;
}

.hero-lede {
  max-width: 560px;
  margin-top: 30px;
  color: #4f4c46;
  font-size: 16px;
  line-height: 1.66;
}

.hero-actions {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-top: 34px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  gap: 22px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid transparent;
  font-size: 10px;
  font-weight: 680;
  letter-spacing: 0.105em;
  line-height: 1;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms var(--ease);
}

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

.button svg,
.arrow-link svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.4;
}

.button-dark {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.button-dark:hover {
  background: #272622;
  border-color: #272622;
}

.button-light {
  color: var(--ink);
  background: #fff;
  border-color: #fff;
}

.button-light:hover {
  color: #fff;
  background: transparent;
}

.text-link {
  position: relative;
  padding: 7px 0;
  color: var(--ink);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.text-link::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 1px;
  background: var(--ink);
  content: "";
  transition: transform 220ms var(--ease);
  transform-origin: left;
}

.text-link:hover::after {
  transform: scaleX(0.35);
  transform-origin: right;
}

.hero-facts {
  display: grid;
  margin-top: auto;
  padding-top: 36px;
  grid-template-columns: repeat(3, 1fr);
}

.hero-facts div {
  padding-left: 18px;
  border-left: 1px solid var(--line-dark);
}

.hero-facts div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-facts dt {
  color: #77736b;
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0.135em;
  text-transform: uppercase;
}

.hero-facts dd {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 620;
}

.hero-visual {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #f1f2f3;
}

.hero-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
  filter: grayscale(1) contrast(1.01);
  transition: transform 900ms var(--ease);
}

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

.hero-index {
  position: absolute;
  top: 27px;
  right: 29px;
  display: grid;
  justify-items: end;
  color: #343433;
}

.hero-index span {
  font-size: 8px;
  font-weight: 680;
  letter-spacing: 0.19em;
}

.hero-index strong {
  margin-top: 2px;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
}

.hero-record {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: min(370px, calc(100% - 56px));
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(197, 164, 90, 0.6);
  box-shadow: 0 18px 54px rgba(17, 17, 16, 0.11);
  backdrop-filter: blur(12px);
  transition:
    transform 200ms var(--ease),
    box-shadow 200ms ease;
}

.hero-record:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 64px rgba(17, 17, 16, 0.16);
}

.record-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #6c6963;
  font-size: 8px;
  font-weight: 620;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.verified-label {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: #4e4535;
}

.verified-label i,
.lot-link i,
.coa-status i,
.reviews-section footer em i {
  width: 5px;
  height: 5px;
  display: inline-block;
  flex: 0 0 auto;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(197, 164, 90, 0.13);
}

.hero-record > strong {
  display: block;
  margin-top: 17px;
  font-size: 14px;
  font-weight: 680;
  letter-spacing: -0.015em;
}

.record-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 9px;
  color: #64615b;
  font-size: 11px;
}

.record-result b {
  color: var(--ink);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-transform: uppercase;
}

.proof-rail {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-rail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-rail-grid > div {
  min-height: 100px;
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 24px 28px;
  border-left: 1px solid var(--line);
}

.proof-rail-grid > div:first-child {
  border-left: 0;
}

.proof-rail svg {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--gold);
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.2;
}

.proof-rail span {
  display: grid;
  gap: 3px;
  color: #77736c;
  font-size: 9px;
  line-height: 1.35;
}

.proof-rail strong {
  color: var(--ink);
  font-size: 10px;
  font-weight: 680;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.section {
  padding: 120px 0;
}

.section-heading {
  display: flex;
  gap: 40px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 42px;
}

.section-heading h2,
.finder-heading h2,
.reviews-intro h2,
.testing-copy h2,
.final-cta h2 {
  margin-top: 13px;
  font-size: clamp(40px, 4vw, 58px);
  font-weight: 520;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.arrow-link {
  display: inline-flex;
  gap: 17px;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid var(--ink);
  font-size: 9px;
  font-weight: 680;
  letter-spacing: 0.105em;
  white-space: nowrap;
  text-transform: uppercase;
}

.arrow-link svg {
  transition: transform 180ms var(--ease);
}

.arrow-link:hover svg {
  transform: translateX(4px);
}

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

.product-card {
  min-width: 0;
}

.product-image {
  position: relative;
  height: 408px;
  display: block;
  overflow: hidden;
  background: #f3f3f2;
  border: 1px solid #e8e7e4;
}

.product-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
  filter: grayscale(1) contrast(1.01);
  transition:
    transform 650ms var(--ease),
    filter 650ms ease;
}

.product-image:hover > img {
  filter: grayscale(1) contrast(1.04);
  transform: scale(1.028);
}

.product-tag {
  position: absolute;
  z-index: 3;
  top: 14px;
  left: 14px;
  padding: 7px 9px;
  color: #fff;
  background: var(--ink);
  font-size: 7px;
  font-weight: 680;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.product-tag-outline {
  color: #46433e;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line-dark);
}

.vial-label {
  position: absolute;
  z-index: 2;
  top: 52.8%;
  left: 50%;
  width: 34%;
  display: grid;
  padding: 10px 4px 8px;
  place-items: center;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
  text-align: center;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.vial-label::after {
  width: 26px;
  height: 1px;
  display: block;
  margin-top: 7px;
  background: var(--gold);
  content: "";
}

.vial-label small {
  color: #77736a;
  font-size: 5px;
  font-weight: 650;
  letter-spacing: 0.14em;
}

.vial-label strong {
  margin-top: 5px;
  font-size: clamp(6px, 0.57vw, 8px);
  font-weight: 720;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.vial-label em {
  margin-top: 2px;
  color: #5d5a54;
  font-size: 4px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.product-info {
  padding: 18px 1px 0;
}

.product-title-row {
  display: flex;
  gap: 16px;
  align-items: start;
  justify-content: space-between;
}

.product-title-row p {
  color: #77746e;
  font-size: 8px;
  font-weight: 640;
  letter-spacing: 0.105em;
  text-transform: uppercase;
}

.product-title-row h3 {
  margin-top: 5px;
  font-size: 15px;
  font-weight: 640;
  letter-spacing: -0.018em;
}

.product-title-row h3 a {
  background-image: linear-gradient(var(--ink), var(--ink));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  transition: background-size 220ms var(--ease);
}

.product-title-row h3 a:hover {
  background-size: 100% 1px;
}

.price {
  padding-top: 16px;
  font-size: 13px;
  font-weight: 620;
  white-space: nowrap;
}

.product-specs {
  display: flex;
  gap: 9px;
  margin-top: 15px;
  color: #5f5c56;
  font-size: 9px;
}

.product-specs span {
  display: inline-flex;
  align-items: center;
}

.product-specs span + span::before {
  width: 1px;
  height: 9px;
  display: inline-block;
  margin-right: 9px;
  background: var(--line-dark);
  content: "";
}

.lot-link {
  min-height: 39px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #55524c;
  font-size: 8px;
}

.lot-link > span {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}

.lot-link strong {
  color: var(--ink);
  font-size: 8px;
  font-weight: 680;
  letter-spacing: 0.06em;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-transform: uppercase;
}

.testing-section {
  background: var(--cream);
}

.testing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.testing-image {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: #ebe7df;
}

.testing-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 57% center;
  filter: saturate(0.54) contrast(1.05);
}

.testing-image::after {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  content: "";
  pointer-events: none;
}

.testing-image-caption {
  position: absolute;
  right: 34px;
  bottom: 29px;
  padding: 8px 10px;
  color: #fff;
  background: rgba(10, 10, 9, 0.9);
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.testing-copy {
  min-width: 0;
  padding: 62px clamp(42px, 5.3vw, 78px);
  background: #fff;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.testing-copy h2 {
  max-width: 560px;
}

.testing-lede {
  max-width: 570px;
  margin-top: 22px;
  color: #5c5953;
  font-size: 14px;
  line-height: 1.7;
}

.coa-document {
  margin-top: 34px;
  border: 1px solid var(--line-dark);
}

.coa-head {
  min-height: 75px;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: var(--cream);
  border-bottom: 1px solid var(--line-dark);
}

.coa-head > div {
  display: grid;
  gap: 6px;
}

.coa-head span {
  color: #77736b;
  font-size: 7px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.coa-head strong {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.055em;
}

.coa-head .coa-status {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: #504634;
}

.coa-document dl > div {
  display: grid;
  min-height: 55px;
  padding: 15px 20px;
  grid-template-columns: minmax(0, 1fr) auto 86px;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.coa-document dt {
  color: #5e5b55;
  font-size: 9px;
}

.coa-document dd {
  font-size: 11px;
  font-weight: 680;
}

.coa-document dl span {
  color: #77736c;
  font-size: 7px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-align: right;
}

.coa-document > p {
  padding: 14px 20px 16px;
  color: #79766f;
  font-size: 8px;
  line-height: 1.55;
}

.testing-actions {
  display: flex;
  gap: 26px;
  align-items: center;
  margin-top: 27px;
}

.finder-heading {
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}

.finder-heading .eyebrow {
  justify-content: center;
}

.finder-heading > p:last-child {
  max-width: 610px;
  margin: 21px auto 0;
  color: #69665f;
  font-size: 13px;
  line-height: 1.65;
}

.finder-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.finder-grid > a {
  min-height: 192px;
  display: grid;
  padding: 34px;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: start;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  transition:
    background 220ms ease,
    color 220ms ease;
}

.finder-grid > a:hover {
  color: #fff;
  background: var(--ink);
}

.finder-number {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  line-height: 1;
}

.finder-grid h3 {
  font-size: 19px;
  font-weight: 610;
  letter-spacing: -0.025em;
}

.finder-grid p {
  max-width: 330px;
  margin-top: 12px;
  color: #6a6760;
  font-size: 11px;
  line-height: 1.55;
  transition: color 220ms ease;
}

.finder-grid > a:hover p {
  color: rgba(255, 255, 255, 0.67);
}

.finder-grid svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
  transition: transform 220ms var(--ease);
}

.finder-grid > a:hover svg {
  transform: translateX(5px);
}

.reviews-section {
  background: var(--cream);
}

.reviews-intro {
  display: grid;
  margin-bottom: 50px;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.55fr);
  column-gap: 70px;
}

.reviews-intro .eyebrow {
  grid-column: 1;
}

.reviews-intro h2 {
  max-width: 710px;
  grid-column: 1;
}

.rating-summary {
  display: grid;
  align-self: end;
  justify-items: end;
  grid-column: 2;
  grid-row: 1 / span 2;
}

.rating-summary > span,
.review-stars {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.18em;
}

.rating-summary strong {
  margin-top: 8px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
}

.rating-summary em {
  margin-top: 3px;
  color: #77736c;
  font-size: 9px;
  font-style: normal;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.reviews-grid article {
  min-height: 324px;
  display: flex;
  padding: 34px;
  flex-direction: column;
  background: #fff;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.reviews-grid blockquote {
  margin-top: 28px;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.42;
}

.reviews-grid footer {
  display: flex;
  gap: 13px;
  align-items: center;
  margin-top: auto;
  padding-top: 30px;
}

.review-avatar {
  width: 36px;
  height: 36px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 8px;
  font-weight: 680;
  letter-spacing: 0.08em;
}

.reviews-grid footer > span:last-child {
  display: grid;
  gap: 4px;
}

.reviews-grid footer strong {
  font-size: 10px;
  font-weight: 680;
}

.reviews-grid footer em {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: #77736c;
  font-size: 8px;
  font-style: normal;
}

.journal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(0, 0.86fr);
  gap: 30px;
}

.journal-feature {
  position: relative;
  min-height: 612px;
  display: block;
  overflow: hidden;
  background: var(--cream);
}

.journal-feature > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
  filter: saturate(0.48);
  transition: transform 800ms var(--ease);
}

.journal-feature:hover > img {
  transform: scale(1.025);
}

.journal-feature::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(9, 9, 8, 0.72), transparent 51%);
  content: "";
}

.journal-feature-copy {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  padding: 38px;
  color: #fff;
}

.journal-feature-copy small {
  color: #e3d2ad;
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.journal-feature-copy strong {
  max-width: 600px;
  margin-top: 10px;
  font-family: var(--serif);
  font-size: clamp(28px, 2.65vw, 40px);
  font-weight: 400;
  line-height: 1.12;
}

.journal-feature-copy > span {
  width: max-content;
  margin-top: 20px;
  padding-bottom: 3px;
  border-bottom: 1px solid #fff;
  font-size: 8px;
  font-weight: 680;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.journal-list {
  display: grid;
  border-top: 1px solid var(--line-dark);
}

.journal-list > a {
  display: flex;
  padding: 34px 8px 33px;
  flex-direction: column;
  border-bottom: 1px solid var(--line-dark);
  transition: padding 220ms var(--ease);
}

.journal-list > a:hover {
  padding-right: 0;
  padding-left: 16px;
}

.journal-list span {
  color: var(--gold);
  font-size: 8px;
  font-weight: 680;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.journal-list h3 {
  max-width: 510px;
  margin-top: 18px;
  font-size: clamp(25px, 2.15vw, 32px);
  font-weight: 520;
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.journal-list p {
  max-width: 500px;
  margin-top: 13px;
  color: #68655f;
  font-size: 11px;
  line-height: 1.58;
}

.journal-list strong {
  margin-top: auto;
  padding-top: 22px;
  font-size: 8px;
  font-weight: 680;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.journal-list b {
  margin-left: 4px;
  font-size: 12px;
}

.final-cta {
  padding: 74px 0;
  color: var(--ink);
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.final-cta-inner {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.final-cta .eyebrow {
  color: #665b48;
}

.final-cta h2 {
  max-width: 820px;
  font-size: clamp(38px, 4.2vw, 61px);
}

.site-footer {
  color: var(--ink);
  background: var(--cream);
}

.footer-top {
  display: grid;
  padding-top: 76px;
  padding-bottom: 64px;
  grid-template-columns: 1.8fr repeat(3, 0.7fr);
  gap: 60px;
}

.footer-brand .wordmark {
  justify-self: start;
}

.footer-brand > p {
  max-width: 350px;
  margin-top: 23px;
  color: #68655f;
  font-size: 11px;
  line-height: 1.7;
}

.footer-top nav {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-top nav h3 {
  margin-bottom: 7px;
  font-size: 9px;
  font-weight: 720;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-top nav a {
  width: max-content;
  color: #5e5b55;
  font-size: 10px;
  border-bottom: 1px solid transparent;
}

.footer-top nav a:hover {
  color: var(--ink);
  border-bottom-color: var(--gold);
}

.footer-bottom {
  min-height: 74px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  border-top: 1px solid var(--line-dark);
  color: #77736b;
  font-size: 8px;
  letter-spacing: 0.035em;
}

.footer-bottom > p:nth-child(2) {
  color: #4d4a45;
  text-align: center;
  text-transform: uppercase;
}

.footer-bottom > div {
  display: flex;
  gap: 22px;
  justify-content: flex-end;
}

@media (max-width: 1120px) {
  :root {
    --shell: min(100% - 48px, 1280px);
    --shell-wide: min(100% - 32px, 1384px);
  }

  .header-main {
    grid-template-columns: auto 1fr auto;
  }

  .primary-nav {
    display: none;
  }

  .header-main .wordmark {
    justify-self: start;
  }

  .mobile-menu {
    position: relative;
    display: block;
    justify-self: end;
  }

  .mobile-menu summary {
    width: 42px;
    height: 42px;
    display: grid;
    padding: 11px 8px;
    align-content: center;
    gap: 5px;
    cursor: pointer;
    list-style: none;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary span {
    width: 25px;
    height: 1px;
    display: block;
    background: var(--ink);
    transition: transform 180ms ease;
  }

  .mobile-menu[open] summary span:first-child {
    transform: translateY(6px) rotate(45deg);
  }

  .mobile-menu[open] summary span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu[open] summary span:last-child {
    transform: translateY(-6px) rotate(-45deg);
  }

  .mobile-menu nav {
    position: fixed;
    z-index: 95;
    top: 112px;
    right: 0;
    left: 0;
    display: grid;
    padding: 20px 24px 26px;
    background: #fff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line-dark);
    box-shadow: 0 24px 48px rgba(10, 10, 9, 0.12);
  }

  .mobile-menu nav a {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  }

  .hero-copy {
    padding-right: 48px;
    padding-left: 48px;
  }

  .hero h1 {
    font-size: clamp(50px, 6vw, 65px);
  }

  .hero-facts {
    gap: 12px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 50px;
  }

  .product-image {
    height: 520px;
  }

  .vial-label {
    width: 27%;
  }

  .testing-copy {
    padding: 50px 38px;
  }

  .proof-rail-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-rail-grid > div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .proof-rail-grid > div:nth-child(4) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 820px) {
  .category-nav {
    justify-content: flex-start;
    overflow-x: auto;
    padding-inline: 24px;
    scrollbar-width: none;
  }

  .category-nav::-webkit-scrollbar {
    display: none;
  }

  .hero-grid,
  .testing-grid,
  .journal-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 580px;
    padding: 72px 52px 45px;
    border-right: 1px solid var(--line);
  }

  .hero-visual {
    min-height: 590px;
  }

  .testing-copy {
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .testing-image {
    min-height: 540px;
  }

  .reviews-intro {
    display: block;
  }

  .rating-summary {
    margin-top: 30px;
    justify-items: start;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid article {
    min-height: 270px;
  }

  .journal-feature {
    min-height: 560px;
  }

  .footer-top {
    grid-template-columns: 1.7fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    padding: 24px 0;
    grid-template-columns: 1fr auto;
  }

  .footer-bottom > p:nth-child(2) {
    grid-column: 1 / -1;
    grid-row: 2;
    text-align: left;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: calc(100vw - 40px);
    --shell-wide: calc(100vw - 20px);
  }

  .announcement {
    min-height: 34px;
    padding: 7px 15px;
  }

  .announcement p > span:first-child,
  .announcement-divider {
    display: none;
  }

  .announcement strong::after {
    content: " · Priority shipping over $250";
  }

  .header-main {
    min-height: 68px;
  }

  .header-main .wordmark {
    gap: 9px;
  }

  .header-main .wordmark-mark {
    width: 24px;
    height: 24px;
  }

  .wordmark-type strong {
    font-size: 12px;
    letter-spacing: 0.13em;
  }

  .wordmark-type span {
    font-size: 6px;
    letter-spacing: 0.3em;
  }

  .category-nav {
    width: 100%;
    gap: 28px;
    padding-inline: 20px;
  }

  .mobile-menu nav {
    top: 102px;
  }

  .hero {
    padding: 10px 0 12px;
  }

  .hero-copy {
    min-height: 560px;
    padding: 60px 24px 35px;
  }

  .hero h1 {
    margin-top: 20px;
    font-size: clamp(46px, 13.5vw, 57px);
    line-height: 0.98;
  }

  .hero h1 em {
    margin-top: 2px;
  }

  .hero-lede {
    margin-top: 24px;
    font-size: 14px;
    line-height: 1.62;
  }

  .hero-actions {
    align-items: stretch;
    margin-top: 28px;
    flex-direction: column;
    gap: 14px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .text-link {
    width: max-content;
    align-self: center;
  }

  .hero-facts {
    margin-top: 36px;
    padding-top: 23px;
  }

  .hero-facts div {
    padding-left: 10px;
  }

  .hero-facts dt {
    font-size: 6px;
  }

  .hero-facts dd {
    font-size: 9px;
  }

  .hero-visual {
    min-height: 438px;
  }

  .hero-visual > img {
    object-position: 56% center;
  }

  .hero-index {
    top: 18px;
    right: 18px;
  }

  .hero-record {
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
    padding: 17px;
  }

  .record-topline {
    font-size: 6px;
  }

  .hero-record > strong {
    margin-top: 13px;
    font-size: 12px;
  }

  .record-result {
    font-size: 9px;
  }

  .proof-rail-grid > div {
    min-height: 94px;
    padding: 18px 14px;
  }

  .proof-rail svg {
    width: 19px;
    height: 19px;
  }

  .proof-rail strong {
    font-size: 7px;
  }

  .proof-rail span {
    font-size: 7px;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading {
    align-items: flex-start;
    margin-bottom: 30px;
    flex-direction: column;
    gap: 19px;
  }

  .section-heading h2,
  .finder-heading h2,
  .reviews-intro h2,
  .testing-copy h2 {
    font-size: 39px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    row-gap: 44px;
  }

  .product-image {
    height: 444px;
  }

  .vial-label {
    width: 31%;
  }

  .vial-label strong {
    font-size: 8px;
  }

  .testing-section {
    padding: 20px 0;
  }

  .testing-grid {
    width: calc(100vw - 20px);
  }

  .testing-image {
    min-height: 355px;
  }

  .testing-copy {
    padding: 42px 23px 46px;
  }

  .testing-lede {
    font-size: 12px;
  }

  .coa-head {
    padding: 15px;
  }

  .coa-document dl > div {
    padding: 13px 15px;
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .coa-document dl span {
    display: none;
  }

  .coa-document > p {
    padding: 13px 15px 15px;
  }

  .testing-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 13px;
  }

  .testing-actions .text-link {
    width: max-content;
    align-self: center;
  }

  .finder-heading {
    margin-bottom: 34px;
  }

  .finder-grid {
    grid-template-columns: 1fr;
  }

  .finder-grid > a {
    min-height: 175px;
    padding: 26px 22px;
    grid-template-columns: auto 1fr auto;
    gap: 17px;
  }

  .finder-grid h3 {
    font-size: 17px;
  }

  .reviews-intro h2 {
    margin-top: 16px;
  }

  .reviews-grid article {
    min-height: 302px;
    padding: 27px 24px;
  }

  .reviews-grid blockquote {
    font-size: 21px;
  }

  .journal-feature {
    min-height: 470px;
  }

  .journal-feature-copy {
    padding: 25px;
  }

  .journal-feature-copy strong {
    font-size: 28px;
  }

  .journal-list > a {
    min-height: 315px;
    padding: 30px 2px;
  }

  .journal-list > a:hover {
    padding-left: 8px;
  }

  .journal-list h3 {
    font-size: 27px;
  }

  .final-cta {
    padding: 62px 0;
  }

  .final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .final-cta h2 {
    font-size: 39px;
  }

  .final-cta .button {
    width: 100%;
  }

  .footer-top {
    padding-top: 58px;
    padding-bottom: 50px;
    grid-template-columns: repeat(2, 1fr);
    gap: 42px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-top nav:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    padding: 24px 0 28px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .footer-bottom > p:nth-child(2) {
    grid-column: auto;
    grid-row: auto;
  }

  .footer-bottom > div {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
