@font-face {
  font-family: "Instrument Sans";
  src: url("../fonts/instrument-sans-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

@font-face {
  font-family: "Newsreader";
  src: url("../fonts/newsreader-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
}

:root {
  --ink: #14231f;
  --muted: #5f6b67;
  --forest: #073b34;
  --forest-deep: #042e29;
  --teal: #0a726a;
  --gold: #b58a2d;
  --gold-soft: #e5d29a;
  --clay: #a65f47;
  --fruit: #c97843;
  --charcoal: #202725;
  --paper: #f5f4ef;
  --mineral: #ece9e1;
  --mist: #e7eee9;
  --line: #d4d9d4;
  --white: #ffffff;
  --radius: 8px;
  --shadow-soft: 0 14px 36px rgba(11, 45, 39, 0.08);
  --shadow-drawer: 0 24px 70px rgba(4, 28, 24, 0.22);
  --max: 1320px;
  --nav-height: 78px;
  --type-micro: 9px;
  --type-caption: 12px;
  --type-meta: 13px;
  --type-body-sm: 14px;
  --type-body: 16px;
  --type-lead: 18px;
  --type-card: 22px;
  --type-subhead: 28px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Instrument Sans", Arial, sans-serif;
  font-size: var(--type-body);
  line-height: 1.58;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.cart-open,
body.drawer-open {
  overflow: hidden;
}

main {
  overflow: clip;
}

img,
picture,
svg {
  display: block;
  max-width: 100%;
}

button,
input {
  font: inherit;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

h1,
h2,
h3,
h4,
p,
blockquote {
  margin-top: 0;
}

h1,
h2,
.display {
  margin-bottom: 20px;
  font-family: "Newsreader", Georgia, serif;
  font-weight: 500;
  line-height: 1.02;
  text-wrap: balance;
}

h1 {
  --display-size: 64px;
  max-width: 700px;
  font-size: var(--display-size);
}

h2 {
  --display-size: 48px;
  font-size: var(--display-size);
}

h3,
h4 {
  margin-bottom: 10px;
  font-size: var(--type-card);
  line-height: 1.2;
  text-wrap: balance;
}

p,
li,
blockquote {
  text-wrap: pretty;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(181, 138, 45, 0.62);
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

.container {
  width: min(calc(100% - 64px), var(--max));
  margin-inline: auto;
}

.section {
  padding: 88px 0;
}

.section-tight {
  padding: 76px 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(300px, 0.72fr);
  align-items: end;
  gap: 56px;
  margin-bottom: 38px;
}

.section-head h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.section-head > p {
  max-width: 470px;
  margin: 0 0 4px auto;
  color: var(--muted);
  font-size: var(--type-body);
  line-height: 1.7;
}

.eyebrow,
.kicker {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: var(--type-meta);
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

.icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  stroke-width: 1.7;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--forest);
  border-radius: var(--radius);
  transform: translateY(-160%);
}

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

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: var(--type-meta);
  font-weight: 700;
  line-height: 1;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  color: var(--white);
  background: var(--forest);
  border-color: var(--forest);
}

.btn-primary:hover {
  background: var(--forest-deep);
  border-color: var(--forest-deep);
}

.btn-secondary {
  color: var(--forest);
  background: transparent;
  border-color: #aebbb5;
}

.btn-secondary:hover {
  background: var(--mist);
  border-color: var(--forest);
}

.btn-gold,
.btn-accent {
  color: #18241f;
  background: var(--gold-soft);
  border-color: var(--gold-soft);
}

.btn-gold:hover,
.btn-accent:hover {
  color: var(--white);
  background: var(--gold);
  border-color: var(--gold);
}

.btn-link {
  min-height: 44px;
  padding-inline: 2px;
  color: var(--forest);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(7, 59, 52, 0.42);
  border-radius: 0;
}

.btn-link:hover {
  color: var(--teal);
  border-bottom-color: var(--teal);
  transform: none;
}

.btn-small {
  min-height: 44px;
  padding-inline: 15px;
  font-size: var(--type-meta);
}

.icon-button,
.line-add {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 50%;
  color: var(--forest);
  background: transparent;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.icon-button:hover,
.line-add:hover {
  background: var(--mist);
  border-color: var(--line);
}

/* Header */
.announcement {
  min-height: 36px;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.9);
  background: var(--forest-deep);
  font-size: var(--type-caption);
}

.announcement .container {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: center;
  gap: 70px;
}

.announcement-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.announcement-item .icon {
  width: 15px;
  height: 15px;
  color: var(--gold-soft);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-height);
  border-bottom: 1px solid rgba(216, 222, 217, 0.9);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  box-shadow: 0 9px 28px rgba(9, 43, 37, 0.06);
}

.nav-shell {
  height: 100%;
  display: grid;
  grid-template-columns: 170px 1fr auto;
  align-items: center;
  gap: 32px;
}

.brand {
  width: 132px;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.brand img {
  width: 100%;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
}

.primary-nav > a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #31413d;
  font-size: var(--type-meta);
  font-weight: 600;
}

.primary-nav > a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-shop {
  min-height: 40px;
  margin-right: 7px;
  padding-inline: 18px;
}

.cart-button {
  position: relative;
}

.cart-count {
  position: absolute;
  top: 2px;
  right: 0;
  min-width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  padding-inline: 4px;
  border: 2px solid var(--white);
  border-radius: 999px;
  color: var(--white);
  background: var(--forest);
  font-size: var(--type-micro);
  font-weight: 700;
  line-height: 1;
}

.menu-toggle,
.mobile-catalog-nav {
  display: none;
}

/* Hero and authority */
.hero {
  position: relative;
  height: clamp(600px, calc(100svh - 150px), 720px);
  min-height: 600px;
  overflow: hidden;
  background: #f0eee8;
}

.hero-media {
  position: absolute;
  inset: 0 0 104px;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-inner {
  position: relative;
  z-index: 1;
  height: calc(100% - 104px);
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  align-items: center;
}

.hero-copy {
  max-width: 650px;
  padding: 54px 0 44px;
}

.hero-copy .eyebrow {
  display: none;
  max-width: 520px;
  margin-bottom: 18px;
  color: #7a5d20;
}

.hero-copy h1 {
  --display-size: 58px;
  max-width: 650px;
  margin-bottom: 20px;
  color: var(--forest-deep);
  font-size: var(--display-size);
}

.hero-copy > p {
  max-width: 580px;
  margin-bottom: 28px;
  color: #43514d;
  font-size: var(--type-lead);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-proof {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
}

.proof-grid {
  min-height: 104px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
}

.proof-stat {
  min-width: 0;
  padding: 17px 42px;
  text-align: left;
}

.proof-stat + .proof-stat {
  border-left: 1px solid var(--line);
}

.proof-stat strong,
.proof-stat span {
  display: block;
}

.proof-stat strong {
  margin-bottom: 4px;
  color: var(--forest);
  font-family: "Newsreader", Georgia, serif;
  font-size: var(--type-subhead);
  font-weight: 500;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.proof-stat span {
  color: var(--muted);
  font-size: var(--type-caption);
  line-height: 1.45;
}

/* Best sellers */
.best-sellers {
  background: var(--paper);
}

.best-sellers .section-head h2 {
  --display-size: 54px;
  max-width: 820px;
  font-size: var(--display-size);
}

.commerce-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  grid-template-rows: repeat(3, 212px);
  align-items: stretch;
  gap: 14px;
}

.product-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #cfd6d0;
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  border-color: #b9c5bf;
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.product-card:first-child {
  grid-row: 1 / 4;
  border-color: rgba(181, 138, 45, 0.56);
}

.product-card:not(:first-child) {
  display: grid;
  grid-template-columns: minmax(190px, 0.42fr) minmax(0, 0.58fr);
}

.product-media {
  position: relative;
  height: 390px;
  display: grid;
  place-items: center;
  padding: 28px 24px 18px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--mist);
}

.product-card:not(:first-child) .product-media {
  height: 100%;
  min-height: 0;
  padding: 14px 12px;
  border-right: 1px solid var(--line);
  border-bottom: 0;
}

.product-media img {
  position: absolute;
  inset: 28px 24px 18px;
  width: calc(100% - 48px);
  height: calc(100% - 46px);
  object-fit: contain;
  transition: transform 240ms ease;
}

.product-card:not(:first-child) .product-media img {
  inset: 14px 12px;
  width: calc(100% - 24px);
  height: calc(100% - 28px);
}

.product-card:hover .product-media img {
  transform: scale(1.025);
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 9px;
  border: 1px solid rgba(7, 59, 52, 0.15);
  border-radius: 999px;
  color: var(--forest);
  background: rgba(255, 255, 255, 0.92);
  font-size: var(--type-caption);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.product-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 24px 22px 22px;
}

.product-body h3 {
  min-height: 0;
  margin-bottom: 8px;
  color: var(--forest);
  font-family: "Instrument Sans", Arial, sans-serif;
  font-size: var(--type-lead);
  font-weight: 650;
  line-height: 1.22;
}

.product-card:first-child .product-body h3 {
  font-family: "Newsreader", Georgia, serif;
  font-size: var(--type-subhead);
  font-weight: 500;
}

.product-format {
  min-height: 0;
  color: var(--muted);
  font-size: var(--type-meta);
  line-height: 1.5;
}

.rating {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 12px 0 16px;
  color: var(--muted);
  font-size: var(--type-caption);
  line-height: 1.35;
}

.stars {
  color: var(--gold);
  font-size: var(--type-meta);
  white-space: nowrap;
}

.product-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.product-price strong,
.product-price span {
  display: block;
}

.product-price strong {
  color: var(--forest);
  font-size: var(--type-lead);
  font-variant-numeric: tabular-nums;
}

.product-price span {
  margin-top: 2px;
  color: var(--muted);
  font-size: var(--type-caption);
}

.product-card:not(:first-child) .product-body {
  padding: 17px 18px 16px;
}

.product-card:not(:first-child) .rating {
  margin: 8px 0 10px;
}

.product-card:not(:first-child) .product-footer {
  padding-top: 10px;
}

.product-card:not(:first-child) .product-price strong {
  font-size: var(--type-body);
}

.assurance-line {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.assurance-item {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--muted);
  font-size: var(--type-meta);
  text-align: center;
}

.assurance-item + .assurance-item {
  border-left: 1px solid var(--line);
}

.assurance-item .icon {
  color: var(--gold);
}

/* Goal builder */
.protocol-section {
  background: var(--white);
}

.protocol-section .section-head h2 {
  --display-size: 56px;
  font-size: var(--display-size);
}

.goal-selector {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 32px;
}

.goal-button {
  position: relative;
  min-width: 0;
  min-height: 176px;
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: var(--paper);
  cursor: pointer;
  font-size: var(--type-caption);
  font-weight: 600;
  line-height: 1.35;
  text-align: left;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.goal-button + .goal-button {
  border-left: 1px solid var(--line);
}

.goal-button::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 0;
  left: 12px;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.goal-button:hover,
.goal-button.is-active {
  color: var(--forest);
  border-color: rgba(181, 138, 45, 0.66);
  box-shadow: 0 12px 28px rgba(7, 59, 52, 0.08);
  transform: translateY(-3px);
}

.goal-button.is-active::after {
  transform: scaleX(1);
}

.goal-button .icon {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

.goal-image {
  position: relative;
  width: 100%;
  height: 118px;
  display: grid;
  place-items: center;
  padding: 8px 10px 4px;
  overflow: hidden;
  background: #f0f0ed;
}

.goal-image img {
  position: absolute;
  inset: 8px 10px 4px;
  width: calc(100% - 20px);
  height: calc(100% - 12px);
  object-fit: contain;
  transition: transform 220ms ease;
}

.goal-button:hover .goal-image img,
.goal-button.is-active .goal-image img {
  transform: scale(1.035);
}

.goal-label {
  width: 100%;
  min-height: 57px;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  padding: 10px 12px 12px;
  border-top: 1px solid var(--line);
}

.builder {
  min-height: 438px;
  display: grid;
  grid-template-columns: minmax(300px, 0.43fr) minmax(0, 0.57fr);
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: var(--forest-deep);
  box-shadow: 0 18px 44px rgba(5, 43, 37, 0.12);
}

.builder-questions {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 46px 44px 38px;
  color: var(--white);
  background: transparent;
}

.builder-title .kicker {
  color: var(--gold-soft);
}

.builder-title h3 {
  --display-size: 36px;
  margin-bottom: 16px;
  font-family: "Newsreader", Georgia, serif;
  max-width: 360px;
  font-size: var(--display-size);
  font-weight: 500;
}

.builder-title p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--type-body);
  line-height: 1.7;
}

.builder-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--type-caption);
}

.builder-trust .icon {
  color: var(--gold-soft);
}

.builder-result {
  min-width: 0;
  padding: 34px 36px 28px;
  background: var(--mineral);
}

.result-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 18px;
}

.result-head h3 {
  --display-size: 32px;
  margin-bottom: 7px;
  color: var(--forest);
  font-family: "Newsreader", Georgia, serif;
  font-size: var(--display-size);
  font-weight: 500;
}

.result-head p {
  max-width: 590px;
  margin: 0;
  color: var(--muted);
  font-size: var(--type-meta);
}

.match-badge {
  flex: 0 0 auto;
  padding: 8px 10px;
  border: 1px solid #b8c6bf;
  border-radius: 999px;
  color: var(--forest);
  background: rgba(255, 255, 255, 0.58);
  font-size: var(--type-caption);
  font-weight: 700;
  line-height: 1;
}

.stack-products {
  min-height: 210px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

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

.stack-product-media {
  position: relative;
  height: 150px;
  display: grid;
  place-items: center;
  margin-bottom: 13px;
  padding: 14px;
  overflow: hidden;
  border: 1px solid rgba(191, 203, 196, 0.82);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.stack-product img {
  position: absolute;
  inset: 14px;
  width: calc(100% - 28px);
  height: calc(100% - 28px);
  object-fit: contain;
}

.stack-product h4 {
  margin-bottom: 3px;
  color: var(--forest);
  font-size: var(--type-meta);
  line-height: 1.3;
}

.stack-product span {
  color: var(--muted);
  font-size: var(--type-caption);
}

.stack-products.is-swapping .stack-product,
.line-product.is-entering {
  animation: v97-enter 320ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes v97-enter {
  from {
    opacity: 0;
    transform: translateY(7px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.result-offer {
  display: grid;
  grid-template-columns: minmax(150px, 0.7fr) minmax(230px, 1fr) auto;
  align-items: center;
  gap: 20px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #c7d1cb;
}

.price-block small,
.price-block strong,
.price-block span {
  display: block;
}

.price-block small {
  color: var(--muted);
  font-size: var(--type-caption);
}

.price-block strong {
  margin: 2px 0;
  color: var(--forest);
  font-family: "Newsreader", Georgia, serif;
  font-size: var(--type-subhead);
  font-weight: 500;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.price-block span {
  color: var(--teal);
  font-size: var(--type-caption);
}

.switch-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--forest);
  cursor: pointer;
  font-size: var(--type-caption);
  font-weight: 600;
}

.switch-label input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.switch-track {
  position: relative;
  width: 44px;
  height: 24px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #aab8b1;
  transition: background-color 180ms ease;
}

.switch-track::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease;
}

.switch-label input:checked + .switch-track {
  background: var(--forest);
}

.switch-label input:checked + .switch-track::after {
  transform: translateX(20px);
}

/* Flagship */
.flagship {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: var(--white);
  background: var(--forest-deep);
}

.flagship-media {
  position: absolute;
  inset: 0;
}

.flagship-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}

.flagship-inner {
  position: relative;
  z-index: 1;
  min-height: 660px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(500px, 0.92fr);
  align-items: center;
}

.flagship-copy {
  grid-column: 2;
  max-width: 610px;
  padding: 64px 0;
}

.flagship-copy .eyebrow {
  color: var(--gold-soft);
}

.flagship-copy h2 {
  --display-size: 48px;
  margin-bottom: 18px;
  font-size: var(--display-size);
}

.flagship-copy > p {
  max-width: 590px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: var(--type-body);
  line-height: 1.65;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.metric {
  min-width: 0;
  padding-right: 15px;
}

.metric + .metric {
  padding-left: 15px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.metric strong,
.metric span {
  display: block;
}

.metric strong {
  margin-bottom: 4px;
  color: var(--white);
  font-size: var(--type-lead);
  font-variant-numeric: tabular-nums;
}

.metric span {
  color: rgba(255, 255, 255, 0.68);
  font-size: var(--type-caption);
  line-height: 1.4;
}

.ingredient-line {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.74);
  font-size: var(--type-caption);
}

.ritual-line {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.ritual-step {
  min-width: 0;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  padding: 13px 10px 13px 0;
}

.ritual-step + .ritual-step {
  padding-left: 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.ritual-step .icon {
  width: 16px;
  height: 16px;
  color: var(--gold-soft);
}

.ritual-step strong,
.ritual-step span {
  display: block;
}

.ritual-step strong {
  font-size: var(--type-caption);
}

.ritual-step span {
  color: rgba(255, 255, 255, 0.65);
  font-size: var(--type-micro);
}

.purchase-choice {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
  gap: 10px;
}

.choice {
  min-width: 0;
  min-height: 54px;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.86);
  cursor: pointer;
  font-size: var(--type-caption);
}

.choice:has(input:checked) {
  border-color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.08);
}

.choice input {
  accent-color: var(--gold);
}

.choice strong {
  color: var(--white);
  font-variant-numeric: tabular-nums;
}

/* Standards */
.standards {
  padding-bottom: 76px;
  background: var(--white);
}

.standards-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.07fr) minmax(410px, 0.93fr);
  align-items: center;
  gap: 72px;
}

.standards-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--mist);
}

.standards-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.standards-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 16px 22px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(4, 46, 41, 0.88);
  font-size: var(--type-caption);
  line-height: 1.5;
}

.standards-copy h2 {
  margin-bottom: 18px;
}

.standards-copy > p {
  margin-bottom: 26px;
  color: var(--muted);
  font-size: var(--type-body);
  line-height: 1.72;
}

.standard-steps {
  border-top: 1px solid var(--line);
}

.standard-step {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.standard-step .icon {
  width: 34px;
  height: 34px;
  padding: 8px;
  border: 1px solid #b8c7bf;
  border-radius: 50%;
  color: var(--gold);
}

.standard-step strong {
  color: var(--forest);
  font-size: var(--type-meta);
}

.standard-step p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: var(--type-caption);
  line-height: 1.5;
}

.facility-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 22px 0;
  color: var(--forest);
  font-size: var(--type-caption);
  font-weight: 600;
}

.facility-line .icon {
  color: var(--gold);
}

/* Subscription ritual */
.subscription {
  background: var(--mist);
}

.subscription-grid {
  max-width: 1480px;
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(430px, 0.84fr) minmax(0, 1.16fr);
  margin-inline: auto;
}

.subscription-copy {
  align-self: center;
  max-width: 620px;
  padding: 72px 68px 72px max(32px, calc((100vw - 1320px) / 2));
}

.subscription-copy h2 {
  margin-bottom: 18px;
}

.subscription-copy > p {
  margin-bottom: 26px;
  color: var(--muted);
  font-size: var(--type-body);
  line-height: 1.72;
}

.subscription-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 28px;
  border-top: 1px solid #c7d1cb;
  border-bottom: 1px solid #c7d1cb;
}

.subscription-benefit {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px 14px 0;
  color: var(--forest);
  font-size: var(--type-caption);
  line-height: 1.4;
}

.subscription-benefit:nth-child(even) {
  padding-left: 16px;
  border-left: 1px solid #c7d1cb;
}

.subscription-benefit:nth-child(n + 3) {
  border-top: 1px solid #c7d1cb;
}

.subscription-benefit .icon {
  color: var(--gold);
}

.subscription-media {
  min-height: 560px;
  overflow: hidden;
}

.subscription-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Reviews and guarantee */
.reviews {
  padding-top: 76px;
  padding-bottom: 82px;
  border-top: 1px solid #c8d2cc;
  background: var(--mist);
}

.reviews-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 58px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.review-score {
  padding-right: 30px;
  border-right: 1px solid var(--line);
}

.review-score > strong {
  --display-size: 58px;
  display: block;
  margin: 10px 0 2px;
  color: var(--forest);
  font-family: "Newsreader", Georgia, serif;
  font-size: var(--display-size);
  font-weight: 500;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.review-score p {
  margin: 14px 0 24px;
  color: var(--muted);
  font-size: var(--type-caption);
  line-height: 1.55;
}

.review-quotes {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 0 42px;
}

.review-quote {
  margin: 0;
  padding: 24px 0;
}

.review-quote:first-child {
  grid-row: 1 / 3;
  padding: 34px 38px 30px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.66);
}

.review-quote:nth-child(3) {
  border-top: 1px solid var(--line);
}

.review-product {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: var(--type-caption);
  font-weight: 700;
  text-transform: uppercase;
}

.review-quote blockquote {
  margin-bottom: 18px;
  color: var(--forest-deep);
  font-family: "Newsreader", Georgia, serif;
  font-size: var(--type-lead);
  font-weight: 400;
  line-height: 1.45;
}

.review-quote:first-child blockquote {
  font-size: var(--type-subhead);
}

.review-quote cite {
  color: var(--muted);
  font-size: var(--type-caption);
  font-style: normal;
}

.benefit-card-icon {
  width: 22px;
  height: 22px;
  margin-bottom: 16px;
  color: var(--gold);
}

.review-quote.benefit-card h3 {
  margin: 0 0 12px;
  color: var(--forest-deep);
  font-family: "Newsreader", Georgia, serif;
  font-size: var(--type-lead);
  font-weight: 500;
  line-height: 1.2;
}

.review-quote.benefit-card:first-child h3 {
  font-size: var(--type-subhead);
}

.review-quote.benefit-card p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: var(--type-caption);
  line-height: 1.55;
}

.review-quote.benefit-card small {
  color: var(--forest);
  font-size: var(--type-caption);
  font-weight: 700;
  text-transform: uppercase;
}

.guarantee {
  color: var(--white);
  background: var(--forest);
}

.guarantee-grid {
  min-height: 226px;
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 1fr);
  align-items: center;
  gap: 0;
}

.guarantee-title {
  padding: 38px 50px 38px 0;
}

.guarantee-title .eyebrow {
  color: var(--gold-soft);
}

.guarantee-title h2 {
  --display-size: 38px;
  margin-bottom: 12px;
  font-size: var(--display-size);
}

.guarantee-title p {
  max-width: 510px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--type-meta);
}

.guarantee-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  color: var(--gold-soft);
  font-size: var(--type-caption);
  font-weight: 700;
}

.guarantee-item {
  min-height: 124px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.guarantee-item .icon {
  margin-bottom: 13px;
  color: var(--gold-soft);
}

.guarantee-item strong,
.guarantee-item span {
  display: block;
}

.guarantee-item strong {
  font-size: var(--type-meta);
}

.guarantee-item span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.68);
  font-size: var(--type-caption);
  line-height: 1.45;
}

/* Full range */
.lineup {
  border-top: 1px solid var(--line);
  background: var(--white);
}

.lineup-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 44px;
  margin-bottom: 32px;
}

.lineup-head h2 {
  --display-size: 52px;
  margin-bottom: 0;
  font-size: var(--display-size);
}

.filter-tabs {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 22px;
  overflow-x: auto;
  border-bottom: 1px solid #cbd4ce;
  scrollbar-width: none;
}

.filter-tabs::-webkit-scrollbar {
  display: none;
}

.filter-tab {
  position: relative;
  min-height: 44px;
  flex: 0 0 auto;
  padding: 0 1px;
  border: 0;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: var(--type-caption);
  font-weight: 600;
}

.filter-tab::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.filter-tab:hover,
.filter-tab.is-active {
  color: var(--forest);
}

.filter-tab.is-active::after {
  transform: scaleX(1);
}

.lineup-shelf {
  display: grid;
  grid-template-columns: repeat(var(--lineup-columns, 8), minmax(0, 1fr));
  gap: 0;
  padding: 24px 18px 20px;
  overflow: hidden;
  border: 1px solid #d0d4cf;
  border-radius: var(--radius);
  background: #f0f0ed;
  box-shadow: 0 18px 48px rgba(7, 59, 52, 0.07);
}

.lineup-shelf[data-filtered="true"] {
  grid-template-columns: repeat(var(--lineup-columns, 3), minmax(0, 240px));
  justify-content: center;
}

.line-product {
  min-width: 0;
  display: grid;
  grid-template-rows: 174px auto;
  padding: 10px 13px 12px;
  border: 0;
  border-right: 1px solid #d5d8d3;
  border-radius: 0;
  background: transparent;
  transition: background-color 180ms ease, transform 180ms ease;
}

.line-product:hover {
  background: rgba(255, 255, 255, 0.72);
  transform: translateY(-4px);
}

.line-product.is-row-end {
  border-right: 0;
}

.line-product > img {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  place-self: stretch;
  padding: 2px;
  object-fit: contain;
  transition: transform 220ms ease;
}

.line-product:hover > img {
  transform: scale(1.035);
}

.line-product h3 {
  margin: 10px 0 3px;
  color: var(--forest);
  font-family: "Instrument Sans", Arial, sans-serif;
  font-size: var(--type-meta);
  font-weight: 650;
}

.line-product > div > span {
  color: var(--muted);
  font-size: var(--type-caption);
}

.line-product-buy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.line-product-buy strong {
  color: var(--forest);
  font-size: var(--type-body-sm);
  font-variant-numeric: tabular-nums;
}

.line-add {
  width: 40px;
  height: 40px;
  border: 1px solid #b8c6bf;
  background: var(--white);
}

/* FAQ and journal */
.faq-journal {
  padding-top: 80px;
  padding-bottom: 76px;
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
  gap: 70px;
}

.faq-intro {
  position: static;
  align-self: start;
}

.faq-intro h2 {
  margin-bottom: 16px;
}

.faq-intro p {
  max-width: 410px;
  color: var(--muted);
  font-size: var(--type-body);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list details[open] {
  margin-inline: -16px;
  padding-inline: 16px;
  border-radius: var(--radius);
  background: var(--paper);
}

.faq-list summary {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  cursor: pointer;
  color: var(--forest);
  font-size: var(--type-body-sm);
  font-weight: 600;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--gold);
  font-size: var(--type-card);
  font-weight: 400;
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 720px;
  margin: -2px 42px 22px 0;
  color: var(--muted);
  font-size: var(--type-meta);
  line-height: 1.7;
}

.faq-support {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
}

.faq-support strong,
.faq-support span {
  display: block;
}

.faq-support strong {
  color: var(--forest);
  font-size: var(--type-meta);
}

.faq-support span {
  margin-top: 3px;
  color: var(--muted);
  font-size: var(--type-caption);
}

.faq-support a,
.journal-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--forest);
  font-size: var(--type-caption);
  font-weight: 700;
}

.journal {
  margin-top: 70px;
  padding-top: 54px;
  border-top: 1px solid var(--line);
}

.journal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(310px, 0.65fr);
  gap: 24px;
}

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

.journal-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--mist);
}

.journal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.journal-card:hover .journal-media img {
  transform: scale(1.025);
}

.journal-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 16px 0 9px;
  color: var(--gold);
  font-size: var(--type-caption);
  font-weight: 700;
  text-transform: uppercase;
}

.journal-card h3 {
  max-width: 520px;
  margin-bottom: 5px;
  color: var(--forest);
  font-family: "Newsreader", Georgia, serif;
  font-size: var(--type-card);
  font-weight: 500;
}

/* Cart, search, and account */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 399;
  padding: 0;
  border: 0;
  opacity: 0;
  visibility: hidden;
  background: rgba(4, 26, 23, 0.44);
  cursor: pointer;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 400;
  width: min(430px, 100%);
  height: 100dvh;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  background: var(--white);
  box-shadow: var(--shadow-drawer);
  transform: translateX(104%);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.cart-open .drawer-backdrop {
  opacity: 1;
  visibility: visible;
}

body.cart-open .cart-drawer {
  transform: translateX(0);
}

.drawer-head {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.drawer-head h2 {
  margin: 0;
  font-size: var(--type-subhead);
}

.cart-drawer-count {
  color: var(--muted);
  font-family: "Instrument Sans", Arial, sans-serif;
  font-size: var(--type-meta);
}

.drawer-body {
  overflow-y: auto;
  padding: 20px 22px;
}

.cart-items {
  min-width: 0;
  flex-direction: column;
}

.cart-empty {
  min-height: 260px;
  display: grid;
  place-items: center;
  color: var(--muted);
  text-align: center;
}

.cart-empty .btn {
  margin-top: 18px;
}

.cart-shipping-bar {
  margin-bottom: 18px;
  padding: 11px 12px;
  border-radius: var(--radius);
  color: var(--forest);
  background: var(--mist);
  font-size: var(--type-caption);
  text-align: center;
}

.cart-item {
  width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item-info {
  min-width: 0;
}

.cart-item-image {
  width: 76px;
  height: 88px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--mist);
}

.cart-item-image img {
  object-fit: contain !important;
}

.cart-item-name {
  color: var(--forest);
  font-size: var(--type-meta);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.cart-item-price {
  margin: 4px 0 10px;
  color: var(--muted);
  font-size: var(--type-caption);
}

.cart-item-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.cart-item-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.cart-qty-btn {
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.cart-qty-num {
  min-width: 24px;
  text-align: center;
  font-size: var(--type-caption);
}

.cart-item-remove {
  min-height: 32px;
  padding: 0;
  border: 0;
  color: #8b4437;
  background: transparent;
  cursor: pointer;
  font-size: var(--type-caption);
}

.drawer-footer {
  padding: 18px 22px 22px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.drawer-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 15px;
  color: var(--forest);
}

.drawer-total strong {
  font-size: var(--type-card);
  font-variant-numeric: tabular-nums;
}

.drawer-footer .btn {
  width: 100%;
}

.drawer-note,
.cart-checkout-error,
.form-error {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: var(--type-caption);
  line-height: 1.5;
  text-align: center;
}

.cart-checkout-error,
.form-error {
  color: #9a3d30;
}

.search-dialog {
  width: min(620px, calc(100% - 32px));
  max-height: calc(100dvh - 40px);
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
}

.search-dialog::backdrop {
  background: rgba(4, 26, 23, 0.54);
}

.search-panel {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-drawer);
}

.search-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.search-panel-head h2 {
  margin: 0;
  font-size: var(--type-subhead);
}

.search-panel > p {
  color: var(--muted);
  font-size: var(--type-meta);
}

.search-box {
  min-height: 52px;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid #b8c5bf;
  border-radius: var(--radius);
  background: var(--white);
}

.search-box input {
  min-width: 0;
  height: 50px;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
}

.quick-search {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.quick-search a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--forest);
  font-size: var(--type-caption);
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 500;
  max-width: min(360px, calc(100% - 44px));
  padding: 13px 16px;
  border-radius: var(--radius);
  opacity: 0;
  color: var(--white);
  background: var(--forest);
  box-shadow: var(--shadow-soft);
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Footer */
.site-footer {
  padding: 72px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  background: #072e2e;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(270px, 1.7fr) repeat(4, minmax(110px, 0.75fr));
  gap: 42px;
}

.footer-brand > img {
  width: 142px;
  height: auto;
}

.footer-brand > p {
  max-width: 320px;
  margin: 20px 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--type-meta);
}

.newsletter {
  max-width: 330px;
  height: 46px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.newsletter input {
  min-width: 0;
  padding: 0 13px;
  border: 0;
  outline: 0;
  color: var(--white);
  background: transparent;
  font-size: var(--type-caption);
}

.newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.newsletter button {
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  color: #072e2e;
  background: #c9a84c;
  cursor: pointer;
}

.socials {
  display: flex;
  gap: 6px;
  margin-top: 18px;
}

.socials a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.78);
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.socials a:hover {
  border-color: #c9a84c;
  color: #c9a84c;
  background: rgba(255, 255, 255, 0.04);
}

.socials .icon {
  width: 16px;
  height: 16px;
}

.footer-column h3 {
  margin-bottom: 16px;
  color: #c9a84c;
  font-size: var(--type-meta);
}

.footer-column a {
  display: block;
  min-height: 30px;
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--type-caption);
}

.footer-column a:hover {
  color: #c9a84c;
}

.footer-legal {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  margin-top: 52px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal p {
  max-width: 850px;
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: var(--type-micro);
  line-height: 1.55;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.55);
  font-size: var(--type-micro);
}

.legal-links a:hover {
  color: #c9a84c;
}

.reveal-item {
  opacity: 1;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

@media (max-width: 1180px) {
  .primary-nav {
    gap: 22px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 0.95fr) minmax(460px, 1.05fr);
  }

  .hero-copy {
    max-width: 540px;
  }

  .hero-copy h1 {
    --display-size: 56px;
  }

  .commerce-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-card:not(:first-child) .product-media,
  .product-media {
    height: 330px;
  }

  .goal-selector {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .goal-button:nth-child(4) {
    border-left: 0;
  }

  .goal-button:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }

  .result-offer {
    grid-template-columns: 1fr auto;
  }

  .result-offer .btn {
    grid-column: 1 / -1;
    width: 100%;
  }

  .flagship-inner {
    grid-template-columns: minmax(0, 0.95fr) minmax(470px, 1.05fr);
  }

  .standards-grid {
    gap: 58px;
  }

  .subscription-copy {
    padding-right: 50px;
  }

  .footer-grid {
    grid-template-columns: minmax(260px, 1.5fr) repeat(4, minmax(100px, 0.75fr));
    gap: 28px;
  }
}

@media (max-width: 960px) {
  :root {
    --nav-height: 70px;
  }

  html {
    scroll-padding-top: 82px;
  }

  h1 {
    --display-size: 52px;
  }

  h2 {
    --display-size: 38px;
  }

  .section {
    padding: 88px 0;
  }

  .section-tight {
    padding: 76px 0;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 38px;
  }

  .section-head > p {
    max-width: 680px;
    margin: 0;
  }

  .announcement .container {
    gap: 28px;
  }

  .nav-shell {
    grid-template-columns: 150px 1fr;
    gap: 16px;
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 18px 32px 26px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 18px 36px rgba(8, 42, 36, 0.12);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav > a {
    min-height: 48px;
    border-bottom: 1px solid var(--line);
  }

  .primary-nav > a::after {
    display: none;
  }

  .mobile-catalog-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 20px;
    margin-top: 12px;
  }

  .mobile-catalog-nav > span {
    grid-column: 1 / -1;
    margin-bottom: 7px;
    color: var(--gold);
    font-size: var(--type-caption);
    font-weight: 700;
    text-transform: uppercase;
  }

  .mobile-catalog-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
    color: var(--forest);
    font-size: var(--type-caption);
  }

  .nav-actions {
    justify-content: flex-end;
  }

  .nav-shop {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .hero {
    height: clamp(510px, calc(100svh - 140px), 590px);
    min-height: 0;
  }

  .hero-inner {
    height: 100%;
    min-height: 0;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 0.92fr) minmax(390px, 1.08fr);
  }

  .hero-copy h1 {
    --display-size: 48px;
  }

  .proof-stat {
    padding-inline: 22px;
  }

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

  .builder-questions {
    min-height: 250px;
  }

  .result-offer {
    grid-template-columns: minmax(150px, 1fr) auto auto;
  }

  .result-offer .btn {
    grid-column: auto;
    width: auto;
  }

  .flagship {
    min-height: 0;
  }

  .flagship-media {
    position: relative;
    aspect-ratio: 16 / 9;
  }

  .flagship-inner {
    min-height: 0;
    display: block;
    background: var(--forest-deep);
  }

  .flagship-copy {
    max-width: 720px;
    padding: 64px 0 70px;
  }

  .standards-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .standards-media {
    max-width: 760px;
  }

  .subscription-grid {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .subscription-media {
    min-height: 0;
    aspect-ratio: 3 / 2;
    order: -1;
  }

  .subscription-copy {
    max-width: none;
    padding: 72px 32px;
  }

  .reviews-layout {
    grid-template-columns: 200px minmax(0, 1fr);
    gap: 34px;
  }

  .review-quotes {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .review-quote:first-child {
    grid-row: auto;
  }

  .review-quote:nth-child(2),
  .review-quote:nth-child(3) {
    border-top: 1px solid var(--line);
  }

  .guarantee-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 48px 0;
  }

  .guarantee-title {
    grid-column: 1 / -1;
    padding: 0 0 36px;
  }

  .guarantee-item:first-of-type {
    border-left: 0;
  }

  .lineup-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .filter-tabs {
    width: 100%;
  }

  .lineup-shelf,
  .lineup-shelf[data-filtered="true"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .faq-intro {
    position: static;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px 30px;
  }

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

@media (max-width: 700px) {
  .container {
    width: min(calc(100% - 40px), var(--max));
  }

  body {
    font-size: var(--type-body-sm);
  }

  h1 {
    --display-size: 42px;
  }

  h2 {
    --display-size: 34px;
  }

  h3 {
    font-size: var(--type-card);
  }

  .section {
    padding: 70px 0;
  }

  .section-tight {
    padding: 62px 0;
  }

  .announcement {
    min-height: 34px;
  }

  .announcement .container {
    grid-template-columns: repeat(2, auto);
    justify-content: space-between;
    gap: 12px;
  }

  .announcement-item {
    font-size: var(--type-micro);
  }

  .announcement-item:nth-child(2) {
    display: none;
  }

  .nav-shell {
    grid-template-columns: 120px 1fr;
  }

  .brand {
    width: 112px;
  }

  .nav-actions .icon-button[data-account] {
    display: none;
  }

  .primary-nav {
    padding-inline: 20px;
  }

  .hero {
    height: auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    background: var(--paper);
  }

  .hero-media {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 16 / 10;
  }

  .hero-media img {
    object-position: 65% center;
  }

  .hero-inner {
    height: auto;
    min-height: 0;
    display: block;
  }

  .hero-copy {
    max-width: none;
    padding: 40px 0 48px;
  }

  .hero-copy h1 {
    --display-size: 42px;
  }

  .hero-copy > p {
    margin-bottom: 25px;
    font-size: var(--type-body);
  }

  .hero-actions {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .hero-actions .btn-primary {
    width: auto;
  }

  .proof-grid {
    min-height: 106px;
  }

  .proof-stat {
    padding: 14px 9px;
  }

  .proof-stat strong {
    font-size: var(--type-card);
  }

  .proof-stat span {
    font-size: var(--type-micro);
  }

  .commerce-grid {
    display: flex;
    gap: 12px;
    margin-right: -20px;
    padding: 4px 20px 14px 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .commerce-grid::-webkit-scrollbar {
    display: none;
  }

  .commerce-grid .product-card {
    flex: 0 0 min(310px, 84vw);
    scroll-snap-align: start;
  }

  .product-card:not(:first-child) .product-media,
  .product-media {
    height: 330px;
  }

  .product-body h3,
  .product-format {
    min-height: 0;
  }

  .assurance-line {
    grid-template-columns: 1fr;
  }

  .assurance-item {
    justify-content: flex-start;
    min-height: 48px;
    text-align: left;
  }

  .assurance-item + .assurance-item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .goal-selector {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .goal-button,
  .goal-button:nth-child(4) {
    border-left: 0;
  }

  .goal-button:nth-child(even) {
    border-left: 1px solid var(--line);
  }

  .goal-button:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .builder-questions,
  .builder-result {
    padding: 32px 24px;
  }

  .builder-title h3 {
    font-size: var(--type-subhead);
  }

  .result-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .stack-products {
    gap: 8px;
  }

  .stack-product-media {
    height: 132px;
    padding: 8px;
  }

  .stack-product h4 {
    font-size: var(--type-caption);
  }

  .result-offer {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .result-offer .btn {
    width: 100%;
  }

  .flagship-media {
    aspect-ratio: 4 / 3;
  }

  .flagship-media img {
    object-position: 36% center;
  }

  .flagship-copy {
    padding: 52px 0 58px;
  }

  .flagship-copy h2 {
    --display-size: 34px;
  }

  .metric-row,
  .ritual-line,
  .purchase-choice {
    grid-template-columns: 1fr;
  }

  .metric {
    padding: 10px 0;
  }

  .metric + .metric {
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }

  .ritual-step + .ritual-step {
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }

  .purchase-choice .btn {
    width: 100%;
  }

  .standards-grid {
    gap: 38px;
  }

  .standards-media {
    aspect-ratio: 1 / 1;
  }

  .standards-caption {
    padding: 13px 15px;
    font-size: var(--type-micro);
  }

  .subscription-media {
    aspect-ratio: 1 / 1;
  }

  .subscription-media img {
    object-position: 52% center;
  }

  .subscription-copy {
    padding: 58px 20px;
  }

  .subscription-benefits {
    grid-template-columns: 1fr;
  }

  .subscription-benefit:nth-child(even) {
    padding-left: 0;
    border-left: 0;
  }

  .subscription-benefit + .subscription-benefit {
    border-top: 1px solid #c7d1cb;
  }

  .reviews-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .review-score {
    padding: 0 0 28px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .review-quote:first-child {
    padding: 28px 24px;
  }

  .review-quote:first-child blockquote {
    font-size: var(--type-card);
  }

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

  .guarantee-item,
  .guarantee-item:first-of-type {
    min-height: auto;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }

  .lineup-shelf,
  .lineup-shelf[data-filtered="true"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .line-product {
    grid-template-rows: 150px auto;
    padding: 12px;
  }

  .line-product h3 {
    font-size: var(--type-body);
  }

  .faq-support {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .journal {
    margin-top: 72px;
    padding-top: 56px;
  }

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

  .quick-search {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-top: 58px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .legal-links {
    justify-content: flex-start;
  }
}

@media (max-width: 420px) {
  .nav-actions {
    gap: 0;
  }

  .nav-actions .icon-button {
    width: 44px;
    height: 44px;
  }

  .proof-stat span {
    font-size: var(--type-micro);
  }

  .lineup-shelf,
  .lineup-shelf[data-filtered="true"] {
    grid-template-columns: 1fr;
  }

  .line-product {
    grid-template-rows: 230px auto;
  }

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

  .footer-brand {
    grid-column: auto;
  }
}

/* V97 responsive composition */
@media (max-width: 1180px) {
  .section {
    padding-block: 78px;
  }

  .hero-copy h1 {
    --display-size: 52px;
  }

  .commerce-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .product-card:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
    display: grid;
    grid-template-columns: minmax(360px, 0.46fr) minmax(0, 0.54fr);
  }

  .product-card:first-child .product-media {
    height: 360px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .product-card:not(:first-child) {
    display: flex;
    flex-direction: column;
  }

  .product-card:not(:first-child) .product-media {
    height: 275px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .goal-button {
    min-height: 164px;
  }

  .goal-image {
    height: 108px;
  }

  .builder {
    grid-template-columns: minmax(280px, 0.4fr) minmax(0, 0.6fr);
  }

  .builder-questions {
    padding-inline: 36px;
  }

  .builder-result {
    padding-inline: 30px;
  }

  .lineup-shelf:not([data-filtered="true"]) {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lineup-shelf[data-filtered="true"] {
    grid-template-columns: repeat(var(--lineup-columns, 3), minmax(0, 230px));
  }

  .line-product:nth-child(4n) {
    border-right: 0;
  }

  .line-product:nth-child(n + 5) {
    border-top: 1px solid #d5d8d3;
  }
}

@media (max-width: 960px) {
  .hero {
    height: 640px;
    min-height: 640px;
  }

  .hero-inner {
    height: calc(100% - 100px);
    grid-template-columns: minmax(0, 0.92fr) minmax(390px, 1.08fr);
  }

  .hero-copy h1,
  .protocol-section .section-head h2,
  .best-sellers .section-head h2,
  .lineup-head h2 {
    --display-size: 44px;
  }

  .goal-selector {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .goal-button,
  .goal-button:nth-child(4),
  .goal-button:nth-child(even) {
    border: 1px solid var(--line);
  }

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

  .builder-questions {
    min-height: 0;
    padding: 36px;
  }

  .builder-trust {
    margin-top: 28px;
  }

  .result-offer {
    grid-template-columns: minmax(150px, 1fr) auto auto;
  }

  .result-offer .btn {
    grid-column: auto;
    width: auto;
  }

  .reviews {
    padding-top: 66px;
  }

  .lineup-shelf:not([data-filtered="true"]),
  .lineup-shelf[data-filtered="true"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .line-product:nth-child(even) {
    border-right: 0;
  }

  .line-product:nth-child(n + 3) {
    border-top: 1px solid #d5d8d3;
  }

  .journal-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  }
}

@media (max-width: 700px) {
  .section,
  .section-tight {
    padding-block: 58px;
  }

  .section-head {
    gap: 14px;
    margin-bottom: 28px;
  }

  .hero {
    height: auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    background: var(--paper);
  }

  .hero-media {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 16 / 9;
  }

  .hero-media img {
    object-position: 64% center;
  }

  .hero-inner {
    height: auto;
    display: block;
  }

  .hero-copy {
    padding: 34px 0 38px;
  }

  .hero-copy .eyebrow {
    display: block;
  }

  .hero-copy h1,
  .protocol-section .section-head h2,
  .best-sellers .section-head h2,
  .lineup-head h2 {
    --display-size: 40px;
  }

  .hero-copy > p {
    line-height: 1.55;
  }

  .hero-proof {
    position: relative;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--white);
    backdrop-filter: none;
  }

  .proof-grid {
    min-height: 94px;
  }

  .proof-stat {
    padding: 13px 8px;
    text-align: center;
  }

  .proof-stat strong {
    font-size: var(--type-card);
  }

  .proof-stat span {
    font-size: var(--type-micro);
  }

  .goal-selector {
    display: flex;
    gap: 10px;
    margin-right: -20px;
    padding: 3px 20px 14px 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .goal-selector::-webkit-scrollbar {
    display: none;
  }

  .goal-button,
  .goal-button:nth-child(4),
  .goal-button:nth-child(even) {
    min-height: 154px;
    flex: 0 0 148px;
    border: 1px solid var(--line);
    scroll-snap-align: start;
  }

  .goal-image {
    height: 99px;
  }

  .goal-label {
    min-height: 54px;
    padding-inline: 10px;
  }

  .builder-questions,
  .builder-result {
    padding: 28px 22px;
  }

  .builder-title h3 {
    --display-size: 30px;
  }

  .result-head h3 {
    --display-size: 28px;
  }

  .stack-products {
    min-height: 176px;
  }

  .stack-product-media {
    height: 118px;
  }

  .result-offer {
    grid-template-columns: 1fr;
  }

  .result-offer .btn {
    width: 100%;
  }

  .commerce-grid {
    display: flex;
    gap: 12px;
    margin-right: -20px;
    padding: 3px 20px 14px 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .commerce-grid::-webkit-scrollbar {
    display: none;
  }

  .commerce-grid .product-card,
  .commerce-grid .product-card:first-child,
  .commerce-grid .product-card:not(:first-child) {
    display: flex;
    flex: 0 0 min(306px, 84vw);
    flex-direction: column;
    grid-column: auto;
    scroll-snap-align: start;
  }

  .product-card:first-child .product-media,
  .product-card:not(:first-child) .product-media,
  .product-media {
    height: 270px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .assurance-line {
    display: none;
  }

  .flagship-copy {
    padding-block: 46px 52px;
  }

  .flagship-copy h2 {
    --display-size: 36px;
  }

  .metric-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .metric,
  .metric + .metric {
    padding: 10px 8px;
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.16);
  }

  .metric:first-child {
    padding-left: 0;
    border-left: 0;
  }

  .metric strong {
    font-size: var(--type-body-sm);
  }

  .metric span {
    font-size: var(--type-micro);
  }

  .ritual-line {
    display: none;
  }

  .purchase-choice {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .purchase-choice .btn {
    grid-column: 1 / -1;
  }

  .standards {
    padding-bottom: 54px;
  }

  .standards-media {
    aspect-ratio: 4 / 3;
  }

  .subscription-media {
    aspect-ratio: 4 / 3;
  }

  .subscription-copy {
    padding: 48px 20px 52px;
  }

  .reviews {
    padding-block: 54px;
  }

  .review-quotes {
    display: flex;
    gap: 12px;
    margin-right: -20px;
    padding-right: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .review-quotes::-webkit-scrollbar {
    display: none;
  }

  .review-quote,
  .review-quote:first-child {
    flex: 0 0 min(310px, 84vw);
    padding: 24px;
    border: 1px solid rgba(181, 138, 45, 0.28);
    background: rgba(255, 255, 255, 0.62);
    scroll-snap-align: start;
  }

  .review-quote:first-child blockquote {
    font-size: var(--type-card);
  }

  .lineup-head {
    margin-bottom: 22px;
  }

  .lineup-shelf:not([data-filtered="true"]),
  .lineup-shelf[data-filtered="true"] {
    display: flex;
    grid-template-columns: none;
    justify-content: flex-start;
    gap: 0;
    margin-right: -20px;
    padding: 16px 20px 16px 8px;
    overflow-x: auto;
    border-right: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .lineup-shelf::-webkit-scrollbar {
    display: none;
  }

  .line-product,
  .line-product:nth-child(n + 3),
  .line-product:nth-child(n + 5) {
    grid-template-rows: 164px auto;
    flex: 0 0 176px;
    padding: 8px 12px 10px;
    border-top: 0;
    border-right: 1px solid #d5d8d3;
    scroll-snap-align: start;
  }

  .line-product h3 {
    font-size: var(--type-meta);
  }

  .line-add,
  .filter-tab {
    min-width: 44px;
    min-height: 44px;
  }

  .faq-journal {
    padding-block: 58px;
  }

  .faq-grid {
    gap: 34px;
  }

  .journal {
    margin-top: 54px;
    padding-top: 44px;
  }

  .journal-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* V99 lifestyle-led commerce: approved scenes carry discovery, exact masters carry transactions. */
.v99 .commerce-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(300px, auto));
  gap: 18px;
}

.v99 .commerce-grid .product-card,
.v99 .commerce-grid .product-card:first-child,
.v99 .commerce-grid .product-card:not(:first-child) {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.85fr);
  grid-column: auto;
  grid-row: auto;
}

.v99 .commerce-grid .product-media--lifestyle,
.v99 .commerce-grid .product-card:first-child .product-media--lifestyle,
.v99 .commerce-grid .product-card:not(:first-child) .product-media--lifestyle {
  height: 100%;
  min-height: 300px;
  padding: 0;
  border-right: 1px solid var(--line);
  border-bottom: 0;
  background: var(--mist);
}

.v99 .commerce-grid .product-card .product-media--lifestyle img,
.v99 .commerce-grid .product-card:not(:first-child) .product-media--lifestyle img {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.v99 .commerce-grid .product-body,
.v99 .commerce-grid .product-card:not(:first-child) .product-body {
  padding: 22px 20px 20px;
}

.v99 .commerce-grid .product-body h3,
.v99 .commerce-grid .product-card:first-child .product-body h3 {
  font-family: "Newsreader", Georgia, serif;
  font-size: var(--type-lead);
  font-weight: 500;
}

.v99 .commerce-grid .rating,
.v99 .commerce-grid .product-card:not(:first-child) .rating {
  margin: 10px 0 12px;
}

.v99 .commerce-grid .product-footer,
.v99 .commerce-grid .product-card:not(:first-child) .product-footer {
  padding-top: 12px;
}

.v99 .faq-journal {
  padding-bottom: 88px;
}

@media (max-width: 1180px) {
  .v99 .commerce-grid {
    grid-template-rows: repeat(2, minmax(286px, auto));
  }

  .v99 .commerce-grid .product-card,
  .v99 .commerce-grid .product-card:first-child,
  .v99 .commerce-grid .product-card:not(:first-child) {
    grid-template-columns: minmax(0, 1.05fr) minmax(210px, 0.95fr);
  }

  .v99 .commerce-grid .product-media--lifestyle,
  .v99 .commerce-grid .product-card:first-child .product-media--lifestyle,
  .v99 .commerce-grid .product-card:not(:first-child) .product-media--lifestyle {
    min-height: 286px;
  }
}

@media (max-width: 960px) {
  .v99 .commerce-grid {
    display: flex;
    gap: 14px;
    margin-right: -20px;
    padding: 4px 20px 16px 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .v99 .commerce-grid .product-card,
  .v99 .commerce-grid .product-card:first-child,
  .v99 .commerce-grid .product-card:not(:first-child) {
    display: flex;
    flex: 0 0 min(340px, 86vw);
    flex-direction: column;
    scroll-snap-align: start;
  }

  .v99 .commerce-grid .product-media--lifestyle,
  .v99 .commerce-grid .product-card:first-child .product-media--lifestyle,
  .v99 .commerce-grid .product-card:not(:first-child) .product-media--lifestyle {
    height: 250px;
    min-height: 250px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 700px) {
  .v99 .commerce-grid .product-card,
  .v99 .commerce-grid .product-card:first-child,
  .v99 .commerce-grid .product-card:not(:first-child) {
    flex-basis: min(320px, 86vw);
  }

  .v99 .commerce-grid .product-media--lifestyle,
  .v99 .commerce-grid .product-card:first-child .product-media--lifestyle,
  .v99 .commerce-grid .product-card:not(:first-child) .product-media--lifestyle {
    height: 238px;
    min-height: 238px;
  }

  .v99 .faq-journal {
    padding-bottom: 58px;
  }
}

/* V99 conversion compression */
.v99 .best-sellers {
  padding-block: 82px;
}

.v99 .reviews {
  padding-block: 62px;
}

.v99 .reviews .section-head {
  margin-bottom: 24px;
}

.v99 .reviews .section-head h2 {
  --display-size: 46px;
}

.v99 .reviews-layout {
  grid-template-columns: 204px minmax(0, 1fr);
  gap: 30px;
  padding-top: 22px;
}

.v99 .review-score {
  padding-right: 24px;
}

.v99 .review-score > strong {
  --display-size: 50px;
}

.v99 .review-score p {
  margin: 10px 0 18px;
}

.v99 .review-quotes {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: 1fr;
  gap: 0;
}

.v99 .review-quote,
.v99 .review-quote:first-child,
.v99 .review-quote:nth-child(3) {
  grid-row: auto;
  padding: 18px 22px;
  border-top: 0;
  border-left: 1px solid var(--line);
  background: transparent;
}

.v99 .review-quote:first-child {
  border-left: 3px solid var(--gold);
}

.v99 .review-quote blockquote,
.v99 .review-quote:first-child blockquote {
  margin-bottom: 14px;
  font-size: var(--type-body);
  line-height: 1.5;
}

.v99 .review-product {
  margin-bottom: 10px;
}

.v99 .lineup {
  padding-block: 72px;
  background: var(--paper);
}

.v99 .lineup-head {
  align-items: end;
  margin-bottom: 26px;
}

.v99 .lineup-head h2 {
  --display-size: 48px;
}

.v99 .lineup-summary {
  max-width: 470px;
  margin-top: 10px;
  color: var(--muted);
  font-size: var(--type-meta);
  line-height: 1.5;
}

.v99 .filter-tabs {
  gap: 18px;
}

.v99 .filter-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.v99 .filter-tab .icon {
  width: 15px;
  height: 15px;
  color: var(--gold);
}

.v99 .lineup-shelf {
  padding-top: 18px;
  box-shadow: 0 14px 34px rgba(7, 59, 52, 0.06);
}

.v99 .flagship-proof {
  padding-block: 78px;
  border-top: 1px solid #cbd3ce;
  background: #eef1ed;
}

.v99 .flagship-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(430px, 0.96fr);
  align-items: stretch;
  gap: 0;
  overflow: hidden;
  border: 1px solid #c6cec8;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.v99 .flagship-proof-media {
  min-height: 590px;
  overflow: hidden;
  border-right: 1px solid var(--line);
}

.v99 .flagship-proof-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 12% center;
}

.v99 .flagship-proof-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 48px 44px;
}

.v99 .flagship-proof-copy h2 {
  --display-size: 46px;
  margin-bottom: 14px;
  font-size: var(--display-size);
}

.v99 .flagship-proof-copy > p {
  color: var(--muted);
  line-height: 1.65;
}

.v99 .proof-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 24px 0 16px;
  border-block: 1px solid var(--line);
}

.v99 .proof-metrics > div {
  min-width: 0;
  padding: 16px 12px;
}

.v99 .proof-metrics > div:first-child {
  padding-left: 0;
}

.v99 .proof-metrics > div + div {
  border-left: 1px solid var(--line);
}

.v99 .proof-metrics strong,
.v99 .proof-metrics span {
  display: block;
}

.v99 .proof-metrics strong {
  color: var(--forest);
  font-size: var(--type-body);
}

.v99 .proof-metrics span {
  margin-top: 3px;
  color: var(--muted);
  font-size: var(--type-caption);
  line-height: 1.35;
}

.v99 .proof-steps {
  display: grid;
  margin-top: 2px;
}

.v99 .proof-step {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 14px;
  padding: 14px 0;
}

.v99 .proof-step + .proof-step {
  border-top: 1px solid var(--line);
}

.v99 .proof-step .icon {
  width: 32px;
  height: 32px;
  padding: 8px;
  border: 0;
  border-radius: 50%;
  color: #8c6c16;
  background: #f4f0e5;
}

.v99 .proof-step strong,
.v99 .proof-step span {
  display: block;
}

.v99 .proof-step strong {
  color: var(--forest);
  font-size: var(--type-body);
  line-height: 1.25;
}

.v99 .proof-step span {
  margin-top: 4px;
  color: var(--muted);
  font-size: var(--type-caption);
  line-height: 1.5;
}

.v99 .flagship-proof .facility-line {
  margin: 16px 0 20px;
}

.v99 .proof-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.v99 .proof-subscribe {
  margin-top: 10px;
  color: var(--muted);
  font-size: var(--type-caption);
}

.v99 .faq-journal {
  padding-block: 64px;
}

.v99 .faq-grid {
  gap: 64px;
}

@media (max-width: 1180px) {
  .v99 .review-quotes {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .v99 .flagship-proof-grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.95fr);
  }

  .v99 .flagship-proof-copy {
    padding-inline: 38px;
  }
}

@media (max-width: 960px) {
  .v99 .reviews-layout {
    grid-template-columns: 170px minmax(0, 1fr);
    gap: 22px;
  }

  .v99 .review-quotes {
    grid-template-columns: 1fr;
  }

  .v99 .review-quote,
  .v99 .review-quote:first-child,
  .v99 .review-quote:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .v99 .review-quote:first-child {
    border-top: 3px solid var(--gold);
  }

  .v99 .lineup-head {
    align-items: start;
    flex-direction: column;
    gap: 18px;
  }

  .v99 .filter-tabs {
    width: 100%;
  }

  .v99 .flagship-proof-grid {
    grid-template-columns: 1fr;
  }

  .v99 .flagship-proof-media {
    min-height: 0;
    aspect-ratio: 16 / 9;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .v99 .flagship-proof-media img {
    object-position: 24% center;
  }
}

@media (max-width: 700px) {
  .v99 .best-sellers,
  .v99 .reviews,
  .v99 .lineup,
  .v99 .flagship-proof,
  .v99 .faq-journal {
    padding-block: 54px;
  }

  .v99 .reviews-layout {
    display: block;
    padding-top: 18px;
  }

  .v99 .review-score {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 8px 18px;
    padding: 0 0 20px;
    border-right: 0;
  }

  .v99 .review-score .kicker,
  .v99 .review-score .btn {
    grid-column: 1 / -1;
  }

  .v99 .review-score > strong {
    margin: 0;
  }

  .v99 .review-score p {
    margin: 0;
  }

  .v99 .review-quotes {
    display: flex;
    gap: 12px;
    margin-right: -20px;
    padding-right: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .v99 .review-quote,
  .v99 .review-quote:first-child,
  .v99 .review-quote:nth-child(3) {
    flex: 0 0 min(300px, 84vw);
    padding: 20px;
    border: 1px solid var(--line);
    border-top: 3px solid var(--gold);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.7);
    scroll-snap-align: start;
  }

  .v99 .lineup-head h2,
  .v99 .flagship-proof-copy h2,
  .v99 .reviews .section-head h2 {
    --display-size: 38px;
  }

  .v99 .flagship-proof-media {
    aspect-ratio: 16 / 10;
  }

  .v99 .flagship-proof-copy {
    padding: 34px 24px 30px;
  }

  .v99 .proof-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .v99 .proof-metrics > div,
  .v99 .proof-metrics > div:first-child {
    padding: 12px 8px;
  }

  .v99 .proof-metrics > div:first-child {
    padding-left: 0;
  }

  .v99 .proof-metrics > div + div {
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .v99 .proof-metrics strong {
    font-size: var(--type-meta);
  }

  .v99 .proof-metrics span {
    font-size: var(--type-micro);
  }

  .v99 .proof-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }

  .v99 .proof-actions .btn {
    width: 100%;
  }

  .v99 .faq-grid {
    gap: 30px;
  }
}

/* V100 conversion polish */
.v100 .hero-media img {
  object-position: center top;
}

.v100 .hero-copy {
  max-width: 610px;
}

.v100 .hero-copy h1 {
  max-width: 600px;
}

.v100 .hero-copy > p {
  max-width: 560px;
}

.v100 .lineup-shelf,
.v100 .lineup-shelf[data-filtered="true"] {
  grid-template-columns: repeat(var(--lineup-columns, 4), minmax(0, 1fr));
  justify-content: stretch;
  padding: 22px 20px 20px;
  background: #f4f5f1;
}

.v100 .line-product,
.v100 .line-product:nth-child(n + 5) {
  grid-template-rows: 232px auto;
  padding: 14px 20px 18px;
}

.v100 .line-product:nth-child(n + 5) {
  border-top: 1px solid #d5d8d3;
}

.v100 .line-product h3 {
  margin-top: 14px;
  font-size: var(--type-body-sm);
}

.v100 .line-product > div > span {
  font-size: var(--type-meta);
}

.v100 .line-product-buy {
  margin-top: 13px;
  padding-top: 13px;
}

.v100 .proof-purchase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 4px 0 14px;
}

.v100 .nb-toggle-btn {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid #b9c5bf;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--forest);
  cursor: pointer;
  text-align: left;
  transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.v100 .nb-toggle-btn:hover {
  border-color: var(--forest);
}

.v100 .nb-toggle-btn.is-active {
  border-color: var(--forest);
  background: #eef3ef;
  box-shadow: inset 0 0 0 1px var(--forest);
}

.v100 .nb-toggle-btn span,
.v100 .nb-toggle-btn strong {
  display: block;
}

.v100 .nb-toggle-btn span {
  font-size: var(--type-caption);
  line-height: 1.3;
}

.v100 .nb-toggle-btn strong {
  flex: none;
  font-size: var(--type-meta);
  font-variant-numeric: tabular-nums;
}

.v100 .proof-subscribe {
  display: flex;
  align-items: center;
  gap: 7px;
}

.v100 .proof-subscribe .icon {
  width: 14px;
  height: 14px;
  color: var(--gold);
}

@media (max-width: 1180px) {
  .v100 .line-product,
  .v100 .line-product:nth-child(n + 5) {
    grid-template-rows: 210px auto;
    padding-inline: 16px;
  }
}

@media (max-width: 700px) {
  .v100 .hero-media img {
    object-position: 64% top;
  }

  .v100 .hero-copy h1 {
    --display-size: 42px;
  }

  .v100 .lineup-shelf:not([data-filtered="true"]),
  .v100 .lineup-shelf[data-filtered="true"] {
    display: flex;
    justify-content: flex-start;
    padding: 16px 20px 16px 8px;
  }

  .v100 .line-product,
  .v100 .line-product:nth-child(n + 3),
  .v100 .line-product:nth-child(n + 5) {
    grid-template-rows: 178px auto;
    flex-basis: 198px;
    padding: 10px 14px 12px;
    border-top: 0;
  }

  .v100 .line-product h3 {
    font-size: var(--type-meta);
  }

  .v100 .line-product > div > span {
    font-size: var(--type-caption);
  }

  .v100 .proof-purchase {
    grid-template-columns: 1fr;
  }

  .v100 .nb-toggle-btn {
    min-height: 58px;
  }
}

@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;
  }
}

/* V103 editorial formula showroom */
.v103 .lineup {
  padding-block: clamp(64px, 7vw, 96px);
  background: #f8faf8;
}

.v103 .goal-explorer {
  display: grid;
  grid-template-columns: minmax(280px, 0.31fr) minmax(0, 1fr);
  gap: clamp(34px, 4vw, 58px);
  align-items: stretch;
}

.v103 .lineup-intro {
  position: relative;
  top: auto;
  min-height: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 38px 34px 32px;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--forest-deep);
  box-shadow: 0 24px 52px rgba(7, 59, 52, 0.16);
}

.v103 .lineup-intro::before {
  content: "";
  width: 48px;
  height: 2px;
  display: block;
  margin-bottom: 30px;
  background: var(--gold);
}

.v103 .lineup-intro .eyebrow {
  color: #e6c86f;
}

.v103 .lineup-intro h2 {
  max-width: 300px;
  margin-top: 14px;
  color: var(--white);
  font-size: clamp(40px, 4vw, 58px);
  line-height: 0.98;
}

.v103 .lineup-summary {
  max-width: 290px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.74);
}

.v103 .goal-context {
  min-height: 0;
  display: block;
  margin: auto 0 0;
  padding: 24px 0 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  color: var(--white);
  background: transparent;
  box-shadow: none;
}

.v103 .goal-context > div {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 11px;
  align-items: start;
}

.v103 .goal-context .icon {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  color: #e6c86f;
}

.v103 .goal-context span {
  font-family: var(--font-serif);
  font-size: var(--type-body);
  line-height: 1.38;
}

.v103 .goal-context strong {
  display: block;
  margin: 14px 0 0 29px;
  color: #e6c86f;
  font-size: var(--type-caption);
  text-transform: uppercase;
}

.v103 .lineup-merch {
  min-width: 0;
}

.v103 .lineup-toolbar {
  min-height: 54px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(17, 72, 63, 0.16);
}

.v103 .lineup-kicker {
  flex: none;
  color: var(--forest);
  font-size: var(--type-caption);
  font-weight: 700;
  text-transform: uppercase;
}

.v103 .filter-tabs {
  gap: 19px;
  justify-content: flex-end;
}

.v103 .filter-tab {
  position: relative;
  min-height: 38px;
  padding: 6px 0 8px;
  border: 0;
  border-radius: 0;
  color: #5d6b66;
  background: transparent;
  transition: color 180ms ease, transform 180ms ease;
}

.v103 .filter-tab::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -13px;
  left: 0;
  display: block;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.v103 .filter-tab:hover {
  color: var(--forest);
  transform: translateY(-1px);
}

.v103 .filter-tab.is-active {
  color: var(--forest-deep);
  background: transparent;
}

.v103 .filter-tab.is-active::after {
  transform: scaleX(1);
}

.v103 .filter-tab .icon,
.v103 .filter-tab.is-active .icon {
  color: var(--gold);
}

.v103 .lineup-shelf,
.v103 .lineup-shelf[data-filtered="true"] {
  grid-template-columns: repeat(var(--lineup-columns, 4), minmax(0, 1fr));
  justify-content: stretch;
  gap: 34px 18px;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.v103 .lineup-shelf[data-filtered="true"] {
  grid-template-columns: repeat(var(--lineup-columns, 3), minmax(188px, 222px));
  justify-content: start;
}

.v103 .line-product,
.v103 .line-product:nth-child(n + 3),
.v103 .line-product:nth-child(n + 5) {
  position: relative;
  grid-template-rows: 30px 194px auto;
  padding: 0 3px 3px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: transform 200ms ease;
}

.v103 .line-product:hover {
  background: transparent;
  box-shadow: none;
  transform: translateY(-4px);
}

.v103 .line-product > img {
  width: 100%;
  height: 194px;
  padding: 3px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  mix-blend-mode: multiply;
  filter: saturate(1.04) contrast(1.02);
  transition: transform 200ms ease;
}

.v103 .line-product:hover > img {
  transform: scale(1.025);
}

.v103 .line-goal-badge {
  position: static;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 4px 7px;
  border: 0;
  border-radius: 0;
  color: var(--forest);
  background: transparent;
  font-size: var(--type-meta);
  font-weight: 700;
  line-height: 1.2;
  text-transform: none;
  white-space: nowrap;
}

.v103 .line-goal-badge::before {
  content: "";
  width: 22px;
  height: 1px;
  flex: 0 0 22px;
  background: var(--gold);
}

.v103 .line-product > div {
  padding: 0 4px;
}

.v103 .line-product h3 {
  margin-top: 14px;
  font-family: var(--font-serif);
  font-size: var(--type-meta);
  line-height: 1.2;
}

.v103 .line-product > div > span {
  min-height: 32px;
  display: block;
  margin-top: 5px;
  color: #68766f;
  font-size: var(--type-caption);
  line-height: 1.4;
}

.v103 .line-product-buy {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(171, 132, 37, 0.27);
}

.v103 .line-product-buy strong {
  color: var(--forest-deep);
  font-family: var(--font-serif);
  font-size: var(--type-meta);
}

.v103 .line-add {
  width: auto;
  min-width: 70px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding-inline: 11px;
  border: 1px solid var(--forest);
  border-radius: 6px;
  color: var(--white);
  background: var(--forest);
  box-shadow: 0 7px 16px rgba(7, 59, 52, 0.11);
  font-size: var(--type-caption);
  font-weight: 700;
}

.v103 .line-add:hover {
  border-color: var(--forest-deep);
  background: var(--forest-deep);
  box-shadow: 0 10px 20px rgba(7, 59, 52, 0.17);
}

.v103 .line-add .icon {
  width: 14px;
  height: 14px;
}

@media (min-width: 1121px) {
  .v103 .lineup-shelf[data-filtered="true"] {
    grid-template-columns: repeat(var(--lineup-columns, 3), minmax(220px, 260px));
    gap: 28px 22px;
  }

  .v103 .lineup-shelf[data-filtered="true"] .line-product {
    grid-template-rows: 30px 228px auto;
  }

  .v103 .lineup-shelf[data-filtered="true"] .line-product > img {
    height: 228px;
  }
}

@media (max-width: 1120px) {
  .v103 .goal-explorer {
    grid-template-columns: minmax(260px, 0.34fr) minmax(0, 1fr);
    gap: 30px;
  }

  .v103 .lineup-toolbar {
    display: block;
  }

  .v103 .lineup-kicker {
    display: block;
    margin-bottom: 10px;
  }

  .v103 .filter-tabs {
    justify-content: flex-start;
  }

  .v103 .lineup-shelf,
  .v103 .lineup-shelf[data-filtered="true"] {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .v103 .goal-explorer {
    display: block;
  }

  .v103 .lineup-intro {
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
    margin-bottom: 30px;
    padding: 28px 26px 24px;
  }

  .v103 .lineup-intro::before {
    margin-bottom: 20px;
  }

  .v103 .lineup-intro h2,
  .v103 .lineup-summary {
    max-width: 620px;
  }

  .v103 .goal-context {
    margin-top: 26px;
  }

  .v103 .lineup-shelf,
  .v103 .lineup-shelf[data-filtered="true"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .v103 .lineup {
    padding-block: 52px 58px;
  }

  .v103 .lineup-intro {
    margin-inline: -4px;
    margin-bottom: 26px;
    padding: 26px 24px 23px;
  }

  .v103 .lineup-intro h2 {
    font-size: 42px;
  }

  .v103 .goal-context {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    align-items: end;
  }

  .v103 .goal-context strong {
    margin: 0;
  }

  .v103 .lineup-toolbar {
    width: auto;
    margin-right: -20px;
    padding-right: 20px;
    overflow: hidden;
  }

  .v103 .filter-tabs {
    width: auto;
    justify-content: flex-start;
    gap: 20px;
    padding: 0 20px 2px 0;
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
  }

  .v103 .filter-tabs::-webkit-scrollbar {
    display: none;
  }

  .v103 .filter-tab {
    flex: 0 0 auto;
  }

  .v103 .lineup-shelf:not([data-filtered="true"]),
  .v103 .lineup-shelf[data-filtered="true"] {
    display: flex;
    gap: 18px;
    margin-right: -20px;
    padding: 0 20px 16px 0;
    overflow-x: auto;
  }

  .v103 .line-product,
  .v103 .line-product:nth-child(n + 3),
  .v103 .line-product:nth-child(n + 5) {
    grid-template-rows: 30px 190px auto;
    flex: 0 0 220px;
    padding: 0 3px 3px;
  }

  .v103 .line-product > img {
    height: 190px;
  }
}

/* V105 native four-scene collection */
.v103 .lineup-scenes {
  padding-block: clamp(70px, 7vw, 104px);
  overflow: hidden;
  background: #f7f9f6;
}

.v103 .lineup-scenes .goal-explorer {
  display: block;
}

.v103 .lineup-scenes .lineup-intro {
  position: relative;
  top: auto;
  min-height: 0;
  height: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: end;
  margin: 0 0 28px;
  padding: 0 0 38px;
  overflow: visible;
  border: 0;
  border-bottom: 1px solid rgba(17, 72, 63, 0.18);
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  box-shadow: none;
}

.v103 .lineup-scenes .lineup-intro::before {
  display: none;
}

.v103 .lineup-scenes .lineup-intro .eyebrow {
  color: var(--gold-deep);
}

.v103 .lineup-scenes .lineup-intro h2 {
  max-width: 760px;
  margin-top: 11px;
  color: var(--forest-deep);
  font-size: clamp(46px, 5.2vw, 72px);
  line-height: 0.98;
}

.v103 .lineup-scenes .lineup-summary {
  max-width: 720px;
  margin-top: 17px;
  color: #54645e;
  font-size: var(--type-body);
}

.v103 .lineup-scenes .goal-context {
  min-height: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: end;
  margin: 0;
  padding: 4px 0 4px 28px;
  border: 0;
  border-left: 2px solid var(--gold);
  color: var(--forest-deep);
  background: transparent;
}

.v103 .lineup-scenes .goal-context > div {
  display: grid;
  grid-template-columns: 19px 1fr;
  gap: 11px;
}

.v103 .lineup-scenes .goal-context .icon {
  color: var(--gold-deep);
}

.v103 .lineup-scenes .goal-context span {
  color: #42544e;
  font-family: var(--font-serif);
  font-size: var(--type-body);
}

.v103 .lineup-scenes .goal-context strong {
  margin: 0;
  color: var(--forest);
  white-space: nowrap;
}

.v103 .lineup-scenes .lineup-toolbar {
  min-height: 0;
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  margin: 0 0 34px;
  padding: 0;
  border: 0;
}

.v103 .lineup-scenes .lineup-kicker {
  color: var(--forest-deep);
  letter-spacing: 0;
}

.v103 .lineup-scenes .filter-tabs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(17, 72, 63, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 8px 24px rgba(7, 59, 52, 0.05);
}

.v103 .lineup-scenes .filter-tab {
  min-width: 0;
  min-height: 48px;
  justify-content: center;
  gap: 7px;
  padding: 9px 8px;
  border: 0;
  border-radius: 6px;
  color: #53625d;
  background: transparent;
  font-size: var(--type-caption);
  font-weight: 700;
  transition: color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.v103 .lineup-scenes .filter-tab::after {
  display: none;
}

.v103 .lineup-scenes .filter-tab:hover {
  color: var(--forest-deep);
  background: #edf3ef;
  transform: none;
}

.v103 .lineup-scenes .filter-tab.is-active {
  color: var(--white);
  background: var(--forest-deep);
  box-shadow: 0 7px 18px rgba(7, 59, 52, 0.16);
}

.v103 .lineup-scenes .filter-tab.is-active .icon {
  color: #e6c86f;
}

.v103 .lineup-scenes .lineup-shelf,
.v103 .lineup-scenes .lineup-shelf[data-filtered="true"] {
  display: grid;
  grid-template-columns: repeat(var(--scene-columns, 2), minmax(0, 1fr));
  gap: clamp(44px, 5vw, 68px) clamp(22px, 3vw, 38px);
  justify-content: stretch;
  margin: 0;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.v103 .lineup-scenes .lineup-shelf[data-visible-scenes="1"] {
  grid-template-columns: minmax(0, 700px);
  justify-content: center;
}

.v103 .collection-scene {
  min-width: 0;
}

.v103 .collection-scene-media {
  position: relative;
  aspect-ratio: 3 / 2;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  background: #e7ece8;
  box-shadow: 0 22px 46px rgba(7, 59, 52, 0.12);
}

.v103 .collection-scene-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: inherit;
  pointer-events: none;
}

.v103 .collection-scene-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 500ms ease;
}

.v103 .collection-scene:hover .collection-scene-media img {
  transform: scale(1.018);
}

.v103 .collection-scene-body {
  padding-top: 23px;
}

.v103 .collection-scene-heading {
  display: grid;
  grid-template-columns: 45px minmax(0, 1fr);
  gap: 15px;
  align-items: start;
}

.v103 .scene-number {
  padding-top: 3px;
  color: var(--gold-deep);
  font-family: var(--font-serif);
  font-size: 28px;
  line-height: 1;
}

.v103 .scene-kicker {
  display: block;
  margin-bottom: 4px;
  color: var(--forest);
  font-size: var(--type-caption);
  font-weight: 750;
  line-height: 1.2;
  text-transform: uppercase;
}

.v103 .collection-scene-heading h3 {
  color: var(--forest-deep);
  font-family: var(--font-serif);
  font-size: clamp(27px, 2.35vw, 36px);
  line-height: 1.08;
}

.v103 .scene-summary {
  max-width: 620px;
  margin: 12px 0 0 60px;
  color: #5b6964;
  font-size: var(--type-caption);
  line-height: 1.55;
}

.v103 .scene-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 20px;
  border-top: 1px solid rgba(17, 72, 63, 0.17);
  border-bottom: 1px solid rgba(17, 72, 63, 0.17);
}

.v103 .lineup-scenes .line-product,
.v103 .lineup-scenes .line-product:nth-child(n + 3),
.v103 .lineup-scenes .line-product:nth-child(n + 5) {
  position: relative;
  min-width: 0;
  min-height: 174px;
  display: block;
  padding: 18px 18px 16px 0;
  overflow: visible;
  border: 0;
  border-right: 1px solid rgba(17, 72, 63, 0.14);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: background-color 180ms ease;
}

.v103 .lineup-scenes .line-product + .line-product {
  padding-right: 0;
  padding-left: 18px;
  border-right: 0;
}

.v103 .lineup-scenes .line-product:hover {
  background: rgba(255, 255, 255, 0.52);
  box-shadow: none;
  transform: none;
}

.v103 .lineup-scenes .line-goal-badge {
  min-width: 0;
  display: block;
  padding: 0;
  color: #6a7772;
  font-size: var(--type-caption);
  font-weight: 650;
  line-height: 1.3;
  text-transform: none;
  white-space: normal;
}

.v103 .lineup-scenes .line-goal-badge::before {
  display: none;
}

.v103 .lineup-scenes .line-product > div {
  padding: 0;
}

.v103 .lineup-scenes .line-product h4 {
  margin-top: 9px;
  color: var(--forest-deep);
  font-family: var(--font-serif);
  font-size: 21px;
  line-height: 1.15;
}

.v103 .lineup-scenes .line-product h4 a:hover {
  color: var(--gold-deep);
}

.v103 .lineup-scenes .line-product > div > span {
  min-height: 34px;
  display: block;
  margin-top: 6px;
  color: #71807a;
  font-size: var(--type-caption);
  line-height: 1.35;
}

.v103 .lineup-scenes .line-product-buy {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(171, 132, 37, 0.24);
}

.v103 .lineup-scenes .line-product-buy strong {
  color: var(--forest-deep);
  font-size: 20px;
}

.v103 .lineup-scenes .line-add {
  min-width: 78px;
  height: 39px;
}

.v103 .collection-scene[data-visible-products="1"] .line-product:not([hidden]) {
  grid-column: 1 / -1;
  padding-right: 0;
  padding-left: 0;
  border-right: 0;
}

@media (max-width: 1120px) {
  .v103 .lineup-scenes .lineup-intro {
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
    gap: 38px;
  }

  .v103 .lineup-scenes .lineup-toolbar {
    display: block;
  }

  .v103 .lineup-scenes .lineup-kicker {
    display: block;
    margin-bottom: 13px;
  }
}

@media (max-width: 900px) {
  .v103 .lineup-scenes .lineup-intro {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .v103 .lineup-scenes .goal-context {
    padding: 21px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(17, 72, 63, 0.16);
  }

  .v103 .lineup-scenes .lineup-shelf,
  .v103 .lineup-scenes .lineup-shelf[data-filtered="true"],
  .v103 .lineup-scenes .lineup-shelf[data-visible-scenes="1"] {
    grid-template-columns: 1fr;
    gap: 54px;
  }
}

@media (max-width: 700px) {
  .v103 .lineup-scenes {
    padding-block: 56px 64px;
  }

  .v103 .lineup-scenes .lineup-intro {
    margin: 0 0 24px;
    padding: 0 0 28px;
  }

  .v103 .lineup-scenes .lineup-intro h2 {
    font-size: 46px;
  }

  .v103 .lineup-scenes .goal-context {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .v103 .lineup-scenes .filter-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
    padding: 4px;
    overflow: visible;
  }

  .v103 .lineup-scenes .filter-tab {
    width: 100%;
    min-height: 46px;
    flex: none;
    padding-inline: 5px;
  }

  .v103 .lineup-scenes .lineup-shelf:not([data-filtered="true"]),
  .v103 .lineup-scenes .lineup-shelf[data-filtered="true"],
  .v103 .lineup-scenes .lineup-shelf[data-visible-scenes="1"] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-right: 0;
    padding: 0;
    overflow: visible;
  }

  .v103 .collection-scene-media {
    margin-inline: -6px;
  }

  .v103 .collection-scene-heading {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px;
  }

  .v103 .scene-number {
    font-size: 24px;
  }

  .v103 .scene-summary {
    margin-left: 48px;
  }

  .v103 .lineup-scenes .line-product,
  .v103 .lineup-scenes .line-product:nth-child(n + 3),
  .v103 .lineup-scenes .line-product:nth-child(n + 5) {
    min-height: 166px;
    flex: none;
  }
}

@media (max-width: 520px) {
  .v103 .lineup-scenes .filter-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .v103 .scene-products {
    grid-template-columns: 1fr;
  }

  .v103 .lineup-scenes .line-product,
  .v103 .lineup-scenes .line-product:nth-child(n + 3),
  .v103 .lineup-scenes .line-product:nth-child(n + 5),
  .v103 .lineup-scenes .line-product + .line-product {
    min-height: 0;
    padding: 17px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(17, 72, 63, 0.14);
  }

  .v103 .lineup-scenes .line-product:last-child {
    border-bottom: 0;
  }
}
