:root {
  --clinical: #fbf8f2;
  --white: #ffffff;
  --steel: #e8e1d6;
  --steel-dark: #d2c4b1;
  --ink: #171716;
  --lab: #826851;
  --muted: #665b52;
  --line: #d9cdbd;
  --orange: #e66f1f;
  --orange-dark: #a94f19;
  --gold: #bd8f4b;
  --gold-deep: #826851;
  --champagne: #faeacd;
  --coffee: #e8e1d6;
  --eu: #bd8f4b;
  --study: #e66f1f;
  --neutral: #826851;
  --display: "Montserrat", Arial, sans-serif;
  --brand: "Montserrat", Arial, sans-serif;
  --data: "Montserrat", Arial, sans-serif;
  --container: min(1480px, calc(100vw - 64px));
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--clinical);
  font-family: var(--display);
  -webkit-font-smoothing: antialiased;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

body,
button,
a {
  cursor: default;
}

a,
button,
summary {
  cursor: pointer;
}

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

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

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

button,
input {
  font: inherit;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  padding: 12px 16px;
  color: var(--white);
  background: var(--ink);
  font-family: var(--brand);
  font-size: 11px;
  transform: translateY(-160%);
}

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

.evidence-bar {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 52px;
  color: rgba(255, 255, 255, 0.76);
  background: var(--lab);
  font-family: var(--data);
  font-size: 8px;
  letter-spacing: 0.12em;
}

.evidence-bar span + span::before {
  content: "/";
  margin-right: 52px;
  color: var(--orange);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 82px;
  background: rgba(245, 247, 247, 0.96);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 24px rgba(17, 24, 23, 0.06);
}

.nav-shell {
  width: var(--container);
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 230px 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand {
  width: 190px;
}

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

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

.primary-nav a {
  position: relative;
  padding: 12px 0;
  font-family: var(--brand);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 100%;
  height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 0;
}

.menu-toggle > span:not(.sr-only) {
  width: 22px;
  height: 1px;
  display: block;
  margin: 6px auto;
  background: var(--ink);
  transition: transform 0.2s ease;
}

.menu-toggle[aria-expanded="true"] > span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-child(2) {
  transform: translateY(-3.5px) rotate(-45deg);
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 0;
  font-family: var(--brand);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button--ink {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.button--ink:hover {
  color: var(--ink);
  background: transparent;
}

.button--orange {
  color: var(--white);
  background: var(--orange);
  border-color: var(--orange);
}

.button--orange:hover {
  color: var(--orange);
  background: transparent;
}

.button--wide {
  width: 100%;
}

.nav-cta {
  min-height: 46px;
}

.text-link,
.evidence-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  font-family: var(--brand);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.text-link:hover,
.evidence-link:hover {
  color: var(--orange);
}

.hero {
  position: relative;
  width: var(--container);
  min-height: 790px;
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: minmax(420px, 1.08fr) minmax(400px, 0.92fr) minmax(290px, 0.58fr);
  border: 1px solid var(--line);
  background: var(--white);
}

.hero-copy {
  min-width: 0;
  padding: clamp(58px, 5vw, 92px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.clinical-label,
.specimen-heading,
.order-topline,
.section-code,
.purchase-kicker {
  font-family: var(--data);
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.clinical-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 56px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.clinical-label b {
  color: var(--orange);
  font-weight: 500;
}

.hero h1 {
  max-width: 720px;
  font-family: var(--display);
  font-size: clamp(50px, 5.2vw, 86px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.hero h1 strong,
.section-intro h2 strong,
.formula-heading h2 strong,
.medical-copy h2 strong,
.spa-intro h2 strong,
.routine-heading h2 strong,
.reviews-heading h2 strong,
.purchase-copy h2 strong {
  font-weight: 700;
}

.hero-lead {
  max-width: 650px;
  margin-top: 34px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.claim-status {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border: 1px solid currentColor;
  font-family: var(--data);
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.claim-status--eu,
.evidence-badge--eu {
  color: #6f5a23;
  background: #f3e7c6;
}

.claim-status--study,
.evidence-badge--study {
  color: #8f3e12;
  background: #fae0d1;
}

.claim-status--neutral,
.evidence-badge--neutral {
  color: #48514f;
  background: #e7ebea;
}

.claim-status--onhold,
.evidence-badge--onhold {
  color: #6e5528;
  background: #f7edda;
}

.claim-status--strain,
.evidence-badge--strain {
  color: #315b57;
  background: #e3efec;
}

.claim-status--formulation,
.evidence-badge--formulation {
  color: #744a35;
  background: #f2e5dc;
}

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

.hero-specimen {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: var(--steel);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.specimen-heading {
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
}

.hero-product-frame {
  position: absolute;
  inset: 70px 22px 34px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-product-frame img {
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
  max-width: 94%;
  max-height: 94%;
  margin: auto;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: multiply;
}

.hero-measure {
  position: absolute;
  z-index: 1;
  background: rgba(17, 24, 23, 0.16);
}

.hero-measure::before,
.hero-measure::after {
  content: "";
  position: absolute;
  background: var(--ink);
}

.hero-measure--x {
  left: 8%;
  right: 8%;
  top: 50%;
  height: 1px;
}

.hero-measure--x::before,
.hero-measure--x::after {
  top: -4px;
  width: 1px;
  height: 9px;
}

.hero-measure--x::before { left: 0; }
.hero-measure--x::after { right: 0; }

.hero-measure--y {
  top: 8%;
  bottom: 8%;
  left: 50%;
  width: 1px;
}

.doctor-mark {
  position: absolute;
  left: 24px;
  bottom: 30px;
  z-index: 5;
  width: 114px;
  height: 114px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--ink);
  border-radius: 50%;
  text-align: center;
}

.doctor-mark span {
  font-family: var(--data);
  font-size: 7px;
  line-height: 1.5;
}

.doctor-mark strong {
  margin-top: 6px;
  font-size: 18px;
}

.hero-product-code {
  position: absolute;
  right: 20px;
  bottom: 20px;
  font-family: var(--data);
  font-size: 7px;
  letter-spacing: 0.08em;
  writing-mode: vertical-rl;
}

.hero-order {
  min-width: 0;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  color: var(--white);
  background: var(--lab);
}

.order-topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 22px;
  color: rgba(255, 255, 255, 0.52);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.order-topline b {
  color: var(--orange);
  font-weight: 500;
}

.order-price {
  margin-top: 44px;
}

.order-price span {
  display: block;
  color: rgba(255, 255, 255, 0.52);
  font-family: var(--data);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.order-price strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(38px, 3.6vw, 62px);
  font-weight: 500;
  letter-spacing: -0.05em;
}

.hero-order dl {
  margin: 46px 0 auto;
}

.hero-order dl > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.hero-order dt,
.hero-order dd {
  font-family: var(--data);
  font-size: 8px;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero-order dt { color: rgba(255, 255, 255, 0.45); }
.hero-order dd { color: var(--white); text-align: right; }

.hero-order .button {
  margin-top: 30px;
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.hero-order .button:hover {
  color: var(--white);
  background: transparent;
}

.hero-order > small {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 8px;
  line-height: 1.5;
  text-align: center;
}

.trust-rail {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-top: 0;
  background: var(--white);
}

.trust-rail > div {
  min-height: 128px;
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: center;
  gap: 8px 18px;
  border-right: 1px solid var(--line);
}

.trust-rail > div:last-child { border-right: 0; }

.trust-rail span,
.trust-rail small,
.trust-rail a {
  font-family: var(--data);
  font-size: 7px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-rail span { color: var(--muted); }

.trust-rail strong {
  grid-row: 1 / 3;
  grid-column: 2;
  align-self: center;
  font-size: 36px;
  font-weight: 500;
}

.trust-rail small { color: var(--muted); }
.trust-rail a { color: var(--orange-dark); }

.trust-rail .trust-stars {
  position: relative;
  width: max-content;
  color: rgba(189, 143, 75, 0.24);
  font-family: Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 1;
}

.trust-rail .trust-stars::before {
  content: "★★★★★";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--star-fill, 100%);
  overflow: hidden;
  color: var(--gold);
  white-space: nowrap;
}

.trust-rail .trust-stars--full { --star-fill: 100%; }
.trust-rail .trust-stars--48 { --star-fill: 96%; }

.trust-source strong {
  font-family: var(--data);
  font-size: 17px;
  letter-spacing: 0.02em;
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: clamp(96px, 7vw, 116px) 0;
}

.section-code {
  margin-bottom: 34px;
  color: var(--orange-dark);
}

.section-code--light {
  color: var(--orange);
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(500px, 1.2fr) minmax(300px, 0.7fr);
  gap: 72px;
  align-items: end;
  margin-bottom: 64px;
}

.section-intro .section-code {
  grid-column: 1 / -1;
  margin-bottom: -38px;
}

.section-intro h2,
.formula-heading h2,
.medical-copy h2,
.spa-intro h2,
.routine-heading h2,
.reviews-heading h2,
.purchase-copy h2 {
  font-size: clamp(42px, 5.1vw, 78px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.section-intro > p,
.formula-heading-copy > p,
.medical-lead,
.routine-heading > p,
.reviews-heading > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.diagnosis-board {
  border-top: 1px solid var(--ink);
}

.diagnosis-row {
  min-height: 150px;
  display: grid;
  grid-template-columns: 170px 1fr 210px;
  gap: 44px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.diagnosis-state {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-family: var(--data);
  font-size: 9px;
}

.diagnosis-state i {
  width: 8px;
  height: 8px;
  display: block;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.diagnosis-row h3 {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.diagnosis-row p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.diagnosis-note,
.diagnosis-row > a {
  justify-self: end;
  font-family: var(--data);
  font-size: 8px;
  letter-spacing: 0.08em;
}

.diagnosis-row--solution {
  padding: 0 28px;
  color: var(--white);
  background: var(--ink);
  border-bottom: 0;
}

.diagnosis-row--solution p,
.diagnosis-row--solution .diagnosis-state {
  color: rgba(255, 255, 255, 0.58);
}

.diagnosis-row--solution .diagnosis-state i {
  background: var(--orange);
  border-color: var(--orange);
}

.diagnosis-row--solution > a {
  color: var(--orange);
}

.formula-section {
  width: 100%;
  padding-left: max(32px, calc((100vw - 1480px) / 2));
  padding-right: max(32px, calc((100vw - 1480px) / 2));
  color: var(--white);
  background: var(--lab);
}

.formula-heading {
  display: grid;
  grid-template-columns: 1fr minmax(340px, 0.65fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 70px;
}

.formula-heading-copy {
  padding-left: 36px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.formula-heading-copy > p {
  color: rgba(255, 255, 255, 0.58);
}

.evidence-key {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
}

.evidence-key span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--data);
  font-size: 7px;
  text-transform: uppercase;
}

.key-dot {
  width: 7px;
  height: 7px;
  display: block;
  border-radius: 50%;
  background: var(--neutral);
}

.key-dot--eu { background: var(--eu); }
.key-dot--study { background: var(--study); }
.key-dot--neutral { background: var(--neutral); }

.formula-console {
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.console-topbar {
  min-height: 44px;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-family: var(--data);
  font-size: 7px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.48);
}

.console-topbar span:nth-child(2) { text-align: center; }
.console-topbar span:last-child { text-align: right; color: var(--orange); }

.formula-workspace {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(420px, 1.3fr) minmax(220px, 0.72fr);
}

.formula-rail {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-color: rgba(255, 255, 255, 0.15);
}

.formula-rail--left { border-right: 1px solid rgba(255, 255, 255, 0.15); }
.formula-rail--right { border-left: 1px solid rgba(255, 255, 255, 0.15); }

.formula-node {
  --node-color: var(--neutral);
  position: relative;
  width: 100%;
  min-height: 80px;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) 8px;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  text-align: left;
  transition: color 0.16s ease, background 0.16s ease;
}

.formula-node:first-child { border-top: 1px solid rgba(255, 255, 255, 0.12); }
.formula-node[data-evidence="eu"] { --node-color: var(--eu); }
.formula-node[data-evidence="study"] { --node-color: var(--study); }
.formula-node[data-evidence="neutral"] { --node-color: var(--neutral); }
.formula-node[data-evidence="onhold"] { --node-color: var(--gold); }
.formula-node[data-evidence="strain"] { --node-color: #477a73; }
.formula-node[data-evidence="formulation"] { --node-color: #a56843; }

.node-index {
  color: rgba(255, 255, 255, 0.34);
  font-family: var(--data);
  font-size: 8px;
}

.node-copy {
  min-width: 0;
}

.node-copy strong {
  display: block;
  overflow: hidden;
  font-family: var(--brand);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.node-copy small {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.36);
  font-family: var(--data);
  font-size: 6px;
  text-transform: uppercase;
}

.node-status {
  width: 7px;
  height: 7px;
  border: 1px solid var(--node-color);
  border-radius: 50%;
}

.formula-node:hover,
.formula-node[aria-pressed="true"] {
  color: var(--ink);
  background: var(--white);
}

.formula-node:hover .node-index,
.formula-node:hover .node-copy small,
.formula-node[aria-pressed="true"] .node-index,
.formula-node[aria-pressed="true"] .node-copy small {
  color: var(--muted);
}

.formula-node[aria-pressed="true"] .node-status {
  background: var(--node-color);
}

.capsule-specimen {
  position: relative;
  min-width: 0;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--steel);
}

.capsule-specimen img {
  position: relative;
  z-index: 3;
  width: 128%;
  max-width: none;
  height: 82%;
  object-fit: contain;
  filter: drop-shadow(0 26px 20px rgba(104, 58, 22, 0.24));
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1);
}

/* The studio render uses a flat white plate; multiply preserves the clinical
   stage underneath while keeping the finely milled fill crisp. */
.capsule-specimen .capsule-render {
  mix-blend-mode: multiply;
  animation: capsule-levitation 4.8s cubic-bezier(.45,.05,.55,.95) infinite alternate;
  will-change: translate;
}

.capsule-specimen[data-active-evidence="study"] img { transform: rotate(2deg) scale(1.015); }
.capsule-specimen[data-active-evidence="neutral"] img { transform: rotate(-1deg); }

.specimen-axis {
  position: absolute;
  z-index: 1;
  background: rgba(17, 24, 23, 0.2);
}

.specimen-axis--x { left: 7%; right: 7%; top: 50%; height: 1px; }
.specimen-axis--y { top: 7%; bottom: 7%; left: 50%; width: 1px; }

.scan-line {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 18%;
  z-index: 4;
  height: 1px;
  background: var(--orange);
  box-shadow: 0 0 16px rgba(230, 111, 31, 0.55);
  animation: formula-scan 4.6s cubic-bezier(.22,.72,.28,1) 0.5s infinite both;
  pointer-events: none;
}

.specimen-scale {
  position: absolute;
  left: 9%;
  right: 9%;
  z-index: 2;
  display: flex;
  justify-content: space-between;
}

.specimen-scale--top { top: 18px; }
.specimen-scale--bottom { bottom: 56px; }

.specimen-scale i {
  width: 1px;
  height: 8px;
  background: rgba(17, 24, 23, 0.46);
}

.specimen-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 18px;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--data);
  font-size: 6px;
  letter-spacing: 0.06em;
}

.specimen-caption span { color: var(--orange-dark); }
.specimen-caption strong { font-weight: 500; }

.mobile-ingredient-strip {
  display: none;
}

.ingredient-detail {
  display: grid;
  grid-template-columns: 110px minmax(190px, 0.75fr) minmax(360px, 1.8fr) minmax(160px, 0.6fr);
  color: var(--ink);
  background: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.ingredient-detail > div {
  min-width: 0;
  padding: 30px;
  border-right: 1px solid var(--line);
}

.ingredient-detail > div:last-child { border-right: 0; }

.detail-id span,
.detail-name > span,
.detail-dose > span {
  display: block;
  margin-bottom: 16px;
  color: var(--muted);
  font-family: var(--data);
  font-size: 7px;
  letter-spacing: 0.08em;
}

.detail-id strong {
  font-family: var(--data);
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}

.detail-name h3 {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.detail-name p,
.detail-evidence p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.75;
}

.detail-evidence .claim-status {
  margin-bottom: 4px;
}

.detail-evidence .evidence-link {
  margin-top: 17px;
  font-size: 7px;
}

.detail-dose strong {
  display: block;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.detail-dose small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-family: var(--data);
  font-size: 7px;
  line-height: 1.5;
  text-transform: uppercase;
}

.noscript-note {
  padding: 24px;
  color: var(--ink);
  background: var(--white);
  font-size: 12px;
  line-height: 1.8;
}

.dose-register {
  margin-top: 52px;
  padding: 40px;
  color: var(--ink);
  background: var(--white);
}

.dose-register-head {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 0.6fr);
  gap: 50px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--ink);
}

.dose-register-head span {
  color: var(--orange-dark);
  font-family: var(--data);
  font-size: 7px;
}

.dose-register-head h3 {
  margin-top: 10px;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.dose-register-head p {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

.dose-register dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 28px;
}

.dose-register dl > div {
  min-height: 92px;
  padding: 22px 18px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.dose-register dl > div:nth-child(3n) { border-right: 0; }

.dose-register dt {
  color: var(--muted);
  font-family: var(--data);
  font-size: 8px;
  text-transform: uppercase;
}

.dose-register dd {
  font-size: 25px;
  font-weight: 600;
  white-space: nowrap;
}

.evidence-section {
  border-bottom: 1px solid var(--line);
}

.section-intro--compact {
  margin-bottom: 58px;
}

.claim-register {
  border-top: 1px solid var(--ink);
}

.claim-register-header,
.claim-register article {
  display: grid;
  grid-template-columns: 0.9fr 0.65fr 1.55fr 150px;
  gap: 34px;
  align-items: center;
}

.claim-register-header {
  min-height: 46px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-family: var(--data);
  font-size: 7px;
  letter-spacing: 0.08em;
}

.claim-register article {
  min-height: 120px;
  border-bottom: 1px solid var(--line);
}

.claim-register h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.claim-register article > div,
.claim-register article > a {
  font-family: var(--data);
  font-size: 8px;
  line-height: 1.6;
}

.claim-register article > div { color: var(--orange-dark); }

.claim-register article > p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.claim-register article > a {
  justify-self: end;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
}

.research-context {
  margin-top: 56px;
  padding: 38px;
  display: grid;
  grid-template-columns: 100px 1fr 220px;
  gap: 40px;
  align-items: center;
  color: var(--white);
  background: var(--ink);
}

.research-mark {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border: 1px solid var(--orange);
  border-radius: 50%;
  color: var(--orange);
  font-family: var(--data);
  font-size: 14px;
}

.research-context span,
.research-context > a {
  color: var(--orange);
  font-family: var(--data);
  font-size: 7px;
  letter-spacing: 0.08em;
}

.research-context h3 {
  margin-top: 10px;
  font-size: 23px;
  font-weight: 600;
}

.research-context p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  line-height: 1.8;
}

.research-context > a {
  justify-self: end;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
}

.medical-section {
  display: grid;
  grid-template-columns: minmax(400px, 0.85fr) minmax(520px, 1.15fr);
  gap: clamp(60px, 8vw, 140px);
  align-items: center;
}

.medical-portrait {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  background: var(--steel);
  border: 1px solid var(--line);
}

.medical-portrait > .medical-portrait-photo {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(1) contrast(1.04);
}

.medical-signature {
  width: clamp(126px, 11vw, 168px);
  height: auto;
  position: absolute;
  right: 24px;
  bottom: 108px;
  z-index: 2;
  object-fit: contain;
  opacity: 0.9;
  mix-blend-mode: multiply;
  transform: rotate(-3deg);
}

.portrait-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--white);
  background: var(--ink);
}

.portrait-label span {
  font-family: var(--data);
  font-size: 7px;
}

.portrait-label strong {
  font-size: 14px;
  font-weight: 600;
}

.medical-copy h2 {
  max-width: 780px;
}

.medical-lead {
  max-width: 760px;
  margin-top: 36px;
}

.medical-protocols {
  margin-top: 48px;
  border-top: 1px solid var(--ink);
}

.medical-protocols > div {
  min-height: 94px;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 34px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.medical-protocols span {
  color: var(--orange-dark);
  font-family: var(--data);
  font-size: 8px;
}

.medical-protocols p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.signature-row {
  margin-top: 42px;
  display: flex;
  align-items: end;
  justify-content: flex-end;
  gap: 30px;
}

.spa-section {
  width: 100%;
  padding-left: max(32px, calc((100vw - 1480px) / 2));
  padding-right: max(32px, calc((100vw - 1480px) / 2));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 110px;
  color: var(--white);
  background: var(--lab);
}

.spa-intro h2 {
  max-width: 750px;
}

.spa-evidence {
  align-self: end;
}

.spa-evidence > p {
  color: rgba(255, 255, 255, 0.64);
  font-size: 15px;
  line-height: 1.85;
}

.boundary-note {
  margin-top: 40px;
  padding: 24px;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 25px;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.boundary-note strong {
  color: var(--orange);
  font-family: var(--data);
  font-size: 8px;
}

.boundary-note span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  line-height: 1.7;
}

.spa-links {
  margin-top: 32px;
  display: flex;
  gap: 34px;
}

.spa-links a {
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  color: var(--orange);
  font-family: var(--data);
  font-size: 8px;
}

.routine-section {
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(520px, 1.1fr);
  gap: 100px;
}

.routine-heading h2 {
  max-width: 780px;
}

.routine-heading > p {
  max-width: 650px;
  margin-top: 30px;
}

.routine-heading { align-self: center; }

.routine-photo {
  position: relative;
  width: min(100%, 660px);
  aspect-ratio: 29 / 36;
  margin: 0;
  justify-self: end;
  overflow: hidden;
  background: var(--steel);
  border: 1px solid var(--gold);
  box-shadow: 0 28px 72px rgba(65, 72, 68, 0.14);
}

.routine-photo::after {
  content: "";
  position: absolute;
  inset: 52% 0 0;
  background: linear-gradient(to bottom, transparent, rgba(23, 23, 22, 0.42));
  pointer-events: none;
}

.routine-photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.routine-photo figcaption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 1;
  padding: 18px 20px;
  display: grid;
  gap: 7px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(189, 143, 75, 0.72);
  backdrop-filter: blur(8px);
}

.routine-photo figcaption span {
  color: var(--gold-deep);
  font-family: var(--data);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.routine-photo figcaption strong {
  font-size: clamp(17px, 1.5vw, 23px);
  font-weight: 600;
  letter-spacing: -0.025em;
}

.routine-calendar {
  align-self: center;
  padding: clamp(22px, 2.2vw, 34px);
  background:
    radial-gradient(circle at 100% 0%, rgba(189, 143, 75, 0.15), transparent 34%),
    var(--clinical);
  border: 1px solid var(--gold);
  box-shadow: 0 24px 64px rgba(65, 72, 68, 0.1);
}

.routine-calendar-head,
.routine-calendar-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.routine-calendar-head > div:first-child > span {
  display: block;
  color: var(--gold-deep);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.routine-calendar-head > div:first-child > strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(19px, 1.8vw, 27px);
  font-weight: 600;
  letter-spacing: -0.025em;
}

.routine-calendar-legend {
  display: flex;
  align-items: center;
  gap: 18px;
}

.routine-calendar-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
}

.routine-calendar-legend i {
  width: 8px;
  height: 8px;
  display: block;
  border-radius: 50%;
  background: var(--gold);
}

.routine-calendar-legend span:last-child i { background: var(--orange); }

.routine-calendar-weekdays {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.routine-calendar-weekdays span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
}

.routine-calendar-days {
  margin: 9px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
  list-style: none;
}

.routine-calendar-days li {
  min-width: 0;
  min-height: 62px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
}

.routine-calendar-days li:nth-child(7n) {
  background: rgba(255, 255, 255, 0.5);
  border-color: rgba(189, 143, 75, 0.5);
}

.routine-calendar-days li > span {
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}

.routine-calendar-days li > i {
  width: 6px;
  height: 6px;
  display: block;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 11px 0 0 var(--orange);
}

.routine-calendar-days li:first-child {
  border-color: var(--gold);
  box-shadow: inset 0 3px 0 var(--gold);
}

.routine-calendar-days .routine-calendar-finish {
  grid-column: span 5;
  padding: 12px 16px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  color: var(--white);
  background: linear-gradient(100deg, var(--gold-deep), var(--gold));
  border-color: var(--gold);
  box-shadow: none;
}

.routine-calendar-finish > span {
  font-size: 28px !important;
  font-weight: 600;
}

.routine-calendar-finish > i {
  background: var(--white) !important;
  box-shadow: 11px 0 0 var(--orange) !important;
}

.routine-calendar-finish > strong {
  justify-self: end;
  font-size: 10px;
  letter-spacing: 0.1em;
}

.routine-calendar-foot {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.routine-calendar-foot span {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.routine-calendar-foot strong {
  color: var(--gold-deep);
  font-size: 10px;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.reviews-section {
  width: 100%;
  padding-left: max(32px, calc((100vw - 1480px) / 2));
  padding-right: max(32px, calc((100vw - 1480px) / 2));
  background: var(--white);
}

.reviews-heading {
  max-width: 920px;
}

.reviews-heading > p {
  max-width: 560px;
  margin-top: 28px;
}

.review-ledger {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.review-ledger > a {
  min-height: 330px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  transition: color 0.2s ease, background 0.2s ease;
}

.review-ledger > a:last-child { border-right: 0; }
.review-ledger > a:hover { color: var(--white); background: var(--ink); }

.review-ledger span,
.review-ledger small {
  font-family: var(--data);
  font-size: 7px;
  letter-spacing: 0.08em;
}

.review-ledger span { color: var(--muted); }

.review-ledger strong {
  margin-top: 36px;
  font-size: 66px;
  font-weight: 500;
  letter-spacing: -0.06em;
}

.review-ledger > a > div {
  margin-top: 4px;
  color: var(--gold);
  letter-spacing: 0.14em;
}

.review-ledger p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 12px;
}

.review-ledger small {
  margin-top: auto;
  color: var(--orange-dark);
}

.review-ledger > a:hover span,
.review-ledger > a:hover p { color: rgba(255, 255, 255, 0.58); }
.review-ledger > a:hover small { color: var(--orange); }

.review-boundary {
  max-width: 850px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.7;
}

.purchase-section {
  display: grid;
  grid-template-columns: minmax(380px, 0.8fr) minmax(520px, 1.2fr);
  gap: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 104px;
  margin-bottom: 104px;
  color: var(--white);
  background: var(--lab);
}

.purchase-product {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: var(--steel);
}

.purchase-product img {
  width: 118%;
  max-width: none;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.purchase-figure-code {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 3;
  color: var(--muted);
  font-family: var(--data);
  font-size: 7px;
}

.purchase-copy {
  padding: clamp(56px, 7vw, 110px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.purchase-kicker {
  color: var(--orange);
}

.purchase-copy h2 {
  margin-top: 28px;
  font-size: clamp(38px, 4.3vw, 66px);
}

.purchase-price {
  margin-top: 42px;
  display: flex;
  align-items: end;
  gap: 26px;
}

.purchase-price strong {
  font-size: 54px;
  font-weight: 500;
  letter-spacing: -0.05em;
}

.purchase-price span {
  padding-bottom: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--data);
  font-size: 8px;
}

.purchase-copy ul {
  margin: 38px 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.purchase-copy li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
}

.purchase-copy li::before {
  content: "+";
  margin-right: 14px;
  color: var(--orange);
  font-family: var(--data);
}

.purchase-copy > small {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 8px;
  text-align: center;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(560px, 1.3fr);
  gap: 110px;
  border-top: 1px solid var(--line);
}

.faq-heading h2 {
  font-size: clamp(44px, 5vw, 72px);
  letter-spacing: -0.05em;
}

.faq-heading p {
  max-width: 420px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

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

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

.faq-list summary {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  list-style: none;
  font-size: 14px;
  font-weight: 600;
}

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

.faq-list summary span {
  color: var(--orange);
  font-family: var(--data);
  font-size: 20px;
  font-weight: 400;
  transition: transform 0.2s ease;
}

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

.faq-list details p {
  max-width: 760px;
  padding: 0 50px 28px 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.safety-strip {
  min-height: 128px;
  padding: 30px max(32px, calc((100vw - 1480px) / 2));
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 50px;
  align-items: center;
  color: var(--white);
  background: var(--orange-dark);
}

.safety-strip strong {
  font-family: var(--data);
  font-size: 8px;
  letter-spacing: 0.08em;
}

.safety-strip p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  line-height: 1.7;
}

.site-footer {
  padding: 104px max(32px, calc((100vw - 1480px) / 2)) 34px;
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 8%, rgba(189, 143, 75, 0.14), transparent 30%),
    linear-gradient(125deg, var(--white) 0%, #f7f8f6 100%);
  border-top: 6px solid var(--gold);
}

.footer-top {
  display: flex;
  align-items: flex-start;
  gap: clamp(54px, 7vw, 112px);
}

.footer-brand {
  flex: 0 0 250px;
  margin-right: auto;
}

.footer-brand > a {
  width: min(260px, 100%);
  display: inline-flex;
  align-items: center;
}

.footer-brand img {
  width: 100%;
  height: auto;
  aspect-ratio: 500 / 110;
  object-fit: contain;
  object-position: left center;
  filter: none;
}

.footer-brand p {
  max-width: 250px;
  margin-top: 32px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.footer-columns {
  width: min(100%, 890px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(30px, 4vw, 58px);
}

.footer-section {
  min-width: 0;
}

.footer-section h2 {
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-nav,
.footer-socials {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-nav a,
.footer-address,
.footer-contacts a {
  color: var(--ink);
  font-size: 12px;
  font-style: normal;
  line-height: 2.25;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-nav a,
.footer-contacts a {
  display: block;
  transition: color 0.18s ease;
}

.footer-nav a:hover,
.footer-contacts a:hover {
  color: var(--gold);
}

.footer-contacts {
  display: flex;
  flex-direction: column;
}

.footer-socials {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-socials a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--gold-deep);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--gold);
  transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.footer-socials svg {
  width: 23px;
  height: 23px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-socials .social-dot {
  fill: currentColor;
  stroke: none;
}

.footer-socials a:hover {
  color: var(--white);
  background: var(--gold);
  border-color: var(--gold);
}

.footer-bottom {
  margin-top: 72px;
  padding-top: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--data);
  font-size: 10px;
  line-height: 1.7;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sticky-buy {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  width: min(430px, calc(100vw - 48px));
  min-height: 74px;
  padding: 10px 10px 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 18px 48px rgba(17, 24, 23, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.sticky-buy.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sticky-buy > div {
  min-width: 0;
}

.sticky-buy > div span {
  display: block;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--data);
  font-size: 7px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sticky-buy > div strong {
  display: block;
  margin-top: 5px;
  font-size: 20px;
  font-weight: 600;
}

.sticky-buy .button {
  min-height: 52px;
  flex: 0 0 auto;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition-delay: var(--delay, 0ms);
}

.reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@keyframes formula-scan {
  0% { top: 16%; opacity: 0; }
  8% { opacity: 1; }
  70% { top: 84%; opacity: 1; }
  78%, 100% { top: 84%; opacity: 0; }
}

@keyframes capsule-levitation {
  0% { translate: -2px -19px; }
  48% { translate: 2px 1px; }
  100% { translate: -1px 21px; }
}

@media (max-width: 1320px) {
  :root { --container: min(1480px, calc(100vw - 40px)); }

  .nav-shell { grid-template-columns: 190px 1fr auto; gap: 22px; }
  .brand { width: 165px; }
  .primary-nav { gap: 18px; }
  .primary-nav a { font-size: 8px; }

  .hero {
    grid-template-columns: minmax(420px, 1.05fr) minmax(390px, 0.95fr);
  }

  .hero-order {
    grid-column: 1 / -1;
    min-height: 190px;
    display: grid;
    grid-template-columns: 0.6fr 0.7fr 1.2fr 0.7fr;
    gap: 28px;
    align-items: center;
  }

  .order-topline { display: none; }
  .order-price { margin: 0; }
  .hero-order dl { margin: 0; display: contents; }
  .hero-order dl > div { height: 70px; flex-direction: column; justify-content: center; border-top: 0; border-left: 1px solid rgba(255,255,255,.16); padding: 0 0 0 24px; }
  .hero-order .button { margin: 0; }
  .hero-order > small { display: none; }

  .formula-workspace { grid-template-columns: minmax(200px, .68fr) minmax(380px, 1.2fr) minmax(200px, .68fr); }
  .formula-node { padding-left: 12px; padding-right: 12px; }
  .node-copy strong { font-size: 7px; }
  .ingredient-detail { grid-template-columns: 90px minmax(170px,.7fr) minmax(320px,1.6fr) minmax(145px,.55fr); }
  .ingredient-detail > div { padding: 24px; }
}

@media (max-width: 1080px) {
  .evidence-bar { gap: 24px; }
  .evidence-bar span + span::before { margin-right: 24px; }

  .nav-shell { grid-template-columns: 1fr auto auto; }
  .primary-nav {
    position: fixed;
    top: 82px;
    left: 20px;
    right: 20px;
    z-index: 99;
    padding: 26px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    color: var(--white);
    background: var(--ink);
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { width: 100%; padding: 12px 0; }
  .menu-toggle { display: block; grid-column: 2; }
  .nav-cta { grid-column: 3; }

  .section-intro,
  .formula-heading,
  .medical-section,
  .spa-section,
  .routine-section,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .section-intro { gap: 30px; }
  .section-intro .section-code { margin-bottom: 0; }
  .section-intro > p { max-width: 720px; }
  .formula-heading { gap: 40px; }
  .formula-heading-copy { max-width: 760px; }

  .formula-workspace {
    min-height: auto;
    grid-template-columns: 1fr;
  }
  .formula-rail { display: none; }
  .capsule-specimen { min-height: 620px; }
  .capsule-specimen img { width: 100%; height: 88%; }
  .mobile-ingredient-strip {
    display: flex;
    gap: 8px;
    padding: 14px;
    overflow-x: auto;
    border-top: 1px solid rgba(255,255,255,.18);
    border-bottom: 1px solid rgba(255,255,255,.18);
    scrollbar-width: none;
  }
  .mobile-ingredient-strip::-webkit-scrollbar { display: none; }
  .mobile-ingredient-button {
    flex: 0 0 auto;
    min-height: 40px;
    padding: 0 13px;
    color: rgba(255,255,255,.62);
    background: transparent;
    border: 1px solid rgba(255,255,255,.18);
    font-family: var(--data);
    font-size: 7px;
    text-transform: uppercase;
  }
  .mobile-ingredient-button[aria-pressed="true"] { color: var(--ink); background: var(--white); border-color: var(--white); }

  .ingredient-detail { grid-template-columns: 90px 1fr 1.5fr; }
  .detail-dose { grid-column: 2 / -1; border-top: 1px solid var(--line); }

  .medical-section,
  .spa-section { gap: 70px; }
  .medical-portrait { min-height: 620px; }
  .spa-evidence { max-width: 780px; }
  .routine-section { gap: 60px; }
  .purchase-section { grid-template-columns: .8fr 1.2fr; }
  .purchase-copy { padding: 60px; }

  .safety-strip { grid-template-columns: 220px 1fr; }
}

@media (max-width: 760px) {
  :root { --container: calc(100vw - 28px); }

  .evidence-bar {
    height: 30px;
    justify-content: flex-start;
    gap: 18px;
    padding: 0 14px;
    overflow: hidden;
    white-space: nowrap;
  }
  .evidence-bar span:nth-child(n+3) { display: none; }
  .evidence-bar span + span::before { margin-right: 18px; }

  .site-header { height: 72px; }
  .nav-shell { grid-template-columns: 1fr auto; }
  .brand { width: 150px; }
  .menu-toggle { grid-column: 2; }
  .nav-cta { display: none; }
  .primary-nav { top: 72px; left: 14px; right: 14px; }

  .hero {
    min-height: auto;
    margin-top: 14px;
    grid-template-columns: 1fr;
  }
  .hero-copy { padding: 46px 24px 54px; }
  .clinical-label { margin-bottom: 40px; }
  .hero h1 { font-size: clamp(44px, 14vw, 66px); }
  .hero-lead { margin-top: 26px; font-size: 14px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-specimen { min-height: 590px; border: 0; border-top: 1px solid var(--line); }
  .hero-product-frame { inset: 62px 14px 28px; }
  .doctor-mark { width: 88px; height: 88px; }
  .doctor-mark strong { font-size: 14px; }
  .hero-order {
    grid-column: auto;
    padding: 28px 24px;
    display: flex;
  }
  .order-topline { display: flex; }
  .order-price { margin-top: 34px; }
  .hero-order dl { margin: 30px 0 0; display: block; }
  .hero-order dl > div { height: auto; flex-direction: row; justify-content: space-between; border-left: 0; border-top: 1px solid rgba(255,255,255,.14); padding: 13px 0; }
  .hero-order .button { margin-top: 26px; }
  .hero-order > small { display: block; }

  .trust-rail { grid-template-columns: 1fr 1fr; }
  .trust-rail > div { min-height: 110px; padding: 18px; border-bottom: 1px solid var(--line); }
  .trust-rail > div:nth-child(2) { border-right: 0; }
  .trust-rail > div:nth-child(n+3) { border-bottom: 0; }
  .trust-rail strong { font-size: 28px; }

  .section { padding-top: 72px; padding-bottom: 72px; }
  .section-intro { margin-bottom: 48px; }
  .section-intro h2,
  .formula-heading h2,
  .medical-copy h2,
  .spa-intro h2,
  .routine-heading h2,
  .reviews-heading h2,
  .purchase-copy h2 { font-size: clamp(38px, 11vw, 58px); }

  .diagnosis-row {
    min-height: 0;
    padding: 26px 0;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .diagnosis-note,
  .diagnosis-row > a { justify-self: start; }
  .diagnosis-row--solution { margin: 0 -14px; padding: 30px 14px; }

  .formula-section,
  .reviews-section,
  .spa-section { padding-left: 14px; padding-right: 14px; }
  .formula-heading { margin-bottom: 44px; }
  .formula-heading-copy { padding: 24px 0 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.18); }
  .console-topbar { grid-template-columns: 1fr 1fr; }
  .console-topbar span:nth-child(2) { display: none; }
  .capsule-specimen { min-height: 440px; }
  .capsule-specimen img { width: 118%; height: 94%; }
  .specimen-caption { left: 14px; right: 14px; }
  .specimen-caption strong { display: none; }

  .ingredient-detail { grid-template-columns: 78px 1fr; }
  .ingredient-detail > div { padding: 22px 18px; }
  .detail-name { border-right: 0 !important; }
  .detail-evidence,
  .detail-dose { grid-column: 1 / -1; border-top: 1px solid var(--line); }
  .detail-evidence { border-right: 0 !important; }
  .detail-name h3 { font-size: 27px; }
  .detail-dose strong { font-size: 32px; }

  .dose-register { margin-top: 28px; padding: 24px 18px; }
  .dose-register-head { grid-template-columns: 1fr; gap: 18px; }
  .dose-register dl { grid-template-columns: 1fr 1fr; }
  .dose-register dl > div:nth-child(3n) { border-right: 1px solid var(--line); }
  .dose-register dl > div:nth-child(2n) { border-right: 0; }
  .dose-register dd { font-size: 20px; }

  .claim-register-header { display: none; }
  .claim-register article {
    padding: 25px 0;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .claim-register article > a { justify-self: start; margin-top: 8px; }

  .research-context { padding: 28px 22px; grid-template-columns: 70px 1fr; gap: 24px; }
  .research-mark { width: 62px; height: 62px; }
  .research-context > a { grid-column: 2; justify-self: start; }

  .medical-section { gap: 54px; }
  .medical-portrait { min-height: 510px; }
  .portrait-label { flex-direction: column; gap: 8px; }
  .medical-protocols > div { grid-template-columns: 1fr; gap: 8px; padding: 20px 0; }
  .signature-row { align-items: flex-start; flex-direction: column; }

  .spa-section { gap: 54px; }
  .boundary-note { grid-template-columns: 1fr; }
  .spa-links { align-items: flex-start; flex-direction: column; }

  .routine-section { gap: 46px; }
  .routine-calendar { padding: 20px; }
  .routine-calendar-days li { min-height: 56px; padding: 9px; }
  .review-ledger { grid-template-columns: 1fr; }
  .review-ledger > a { min-height: 250px; border-right: 0; border-bottom: 1px solid var(--line); }
  .review-ledger > a:last-child { border-bottom: 0; }

  .purchase-section {
    grid-template-columns: 1fr;
    margin-top: 72px;
    margin-bottom: 72px;
  }
  .purchase-product { min-height: 540px; }
  .purchase-copy { padding: 48px 24px; }
  .purchase-price strong { font-size: 44px; }

  .faq-section { gap: 46px; }
  .faq-list summary { min-height: 72px; font-size: 12px; }

  .safety-strip { padding: 32px 14px; grid-template-columns: 1fr; gap: 18px; }

  .site-footer { padding: 72px 24px 110px; }
  .footer-top { flex-direction: column; gap: 56px; }
  .footer-brand { width: 100%; flex-basis: auto; }
  .footer-columns { width: 100%; grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; }

  .sticky-buy {
    right: 10px;
    bottom: 10px;
    width: calc(100vw - 20px);
    min-height: 66px;
    padding: 8px 8px 8px 14px;
  }
  .sticky-buy > div span { display: none; }
  .sticky-buy .button { min-height: 48px; padding: 0 17px; }
}

@media (max-width: 420px) {
  .trust-rail { grid-template-columns: 1fr; }
  .trust-rail > div { border-right: 0; border-bottom: 1px solid var(--line) !important; }
  .trust-rail > div:last-child { border-bottom: 0 !important; }
  .capsule-specimen { min-height: 390px; }
  .dose-register dl { grid-template-columns: 1fr; }
  .dose-register dl > div { border-right: 0 !important; }
  .routine-calendar-head { align-items: flex-start; flex-direction: column; }
  .routine-calendar-weekdays,
  .routine-calendar-days { gap: 4px; }
  .routine-calendar-days li { min-height: 48px; padding: 7px; }
  .routine-calendar-days li > span { font-size: 12px; }
  .routine-calendar-days .routine-calendar-finish { padding: 8px 10px; gap: 10px; }
  .routine-calendar-finish > span { font-size: 21px !important; }
  .routine-calendar-finish > strong { font-size: 8px; }
  .routine-calendar-foot { align-items: flex-start; flex-direction: column; gap: 8px; }
  .footer-columns { grid-template-columns: 1fr; gap: 0; }
  .footer-section { padding: 28px 0; border-top: 1px solid var(--line); }
  .footer-section:first-child { padding-top: 0; border-top: 0; }
}

@media (max-width: 680px) {
  .site-footer { padding-right: 20px; padding-left: 20px; }
  .footer-top { gap: 48px; }
  .footer-columns { grid-template-columns: 1fr; gap: 0; }
  .footer-section { padding: 28px 0; border-top: 1px solid var(--line); }
  .footer-section:first-child { padding-top: 0; border-top: 0; }
  .footer-bottom { align-items: flex-start; gap: 14px; text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* Brand manual + legibility pass: Montserrat, EPIDERMA gold and light clinical surfaces. */
body {
  font-family: var(--brand);
  font-weight: 400;
}

.hero h1,
.section-intro h2,
.formula-heading h2,
.people-heading h2,
.medical-copy h2,
.spa-intro h2,
.routine-heading h2,
.reviews-heading h2,
.purchase-copy h2,
.faq-heading h2 {
  letter-spacing: -0.035em;
}

.hero h1 strong,
.section-intro h2 strong,
.formula-heading h2 strong,
.people-heading h2 strong,
.medical-copy h2 strong,
.spa-intro h2 strong,
.routine-heading h2 strong,
.reviews-heading h2 strong,
.purchase-copy h2 strong {
  font-weight: 600;
}

.button {
  min-height: 56px;
  font-size: 11px;
  font-weight: 600;
}

.button--ink,
.button--orange {
  color: var(--white);
  background: var(--gold);
  border-color: var(--gold);
}

.button--ink:hover,
.button--orange:hover {
  color: var(--gold-deep);
  background: var(--champagne);
  border-color: var(--gold);
}

.primary-nav a,
.text-link,
.evidence-link {
  font-size: 11px;
  font-weight: 600;
}

.primary-nav a::after { background: var(--gold); }

.evidence-bar {
  height: 38px;
  gap: 42px;
  color: var(--white);
  background: var(--gold-deep);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.evidence-bar span + span::before {
  margin-right: 42px;
  color: var(--champagne);
}

.site-header { background: rgba(251, 248, 242, 0.97); }

.clinical-label,
.specimen-heading,
.order-topline,
.section-code,
.purchase-kicker {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.09em;
}

.section-code,
.section-code--light,
.purchase-kicker { color: var(--gold-deep); }

.hero-order dt,
.hero-order dd,
.hero-order > small,
.trust-rail span,
.trust-rail small,
.trust-rail a,
.diagnosis-note,
.diagnosis-row > a,
.claim-status,
.doctor-mark span,
.hero-product-code {
  font-size: 10px;
}

.claim-status {
  min-height: 28px;
  padding: 0 10px;
  font-weight: 600;
}

.hero-order {
  color: var(--ink);
  background: linear-gradient(145deg, var(--champagne) 0%, #d9ba7e 100%);
  border-left: 1px solid var(--gold);
}

.order-topline {
  color: var(--gold-deep);
  border-color: rgba(23, 23, 22, 0.18);
}

.order-topline b,
.order-price span,
.hero-order dt,
.hero-order > small { color: var(--gold-deep); }
.hero-order dd { color: var(--ink); }

.hero-order dl > div { border-color: rgba(23, 23, 22, 0.16); }

.hero-order .button {
  color: var(--white);
  background: var(--gold-deep);
  border-color: var(--gold-deep);
}

.hero-order .button:hover {
  color: var(--gold-deep);
  background: var(--white);
}

.hero-specimen,
.capsule-specimen,
.purchase-product {
  background: linear-gradient(145deg, var(--white) 0%, var(--coffee) 100%);
}

.doctor-mark {
  background: var(--champagne);
  border-color: var(--gold);
}

.diagnosis-row--solution {
  color: var(--ink);
  background: linear-gradient(90deg, var(--champagne), var(--coffee));
  border: 1px solid var(--gold);
}

.diagnosis-row--solution p,
.diagnosis-row--solution .diagnosis-state { color: var(--muted); }
.diagnosis-row--solution > a { color: var(--gold-deep); }
.diagnosis-row--solution .diagnosis-state i { background: var(--gold); border-color: var(--gold); }

.people-section {
  width: 100%;
  padding-left: max(32px, calc((100vw - 1480px) / 2));
  padding-right: max(32px, calc((100vw - 1480px) / 2));
  background: var(--white);
}

.people-heading {
  display: grid;
  grid-template-columns: minmax(520px, 1.15fr) minmax(320px, 0.65fr);
  gap: 72px;
  align-items: end;
  margin-bottom: 64px;
}

.people-heading .section-code {
  grid-column: 1 / -1;
  margin-bottom: -34px;
}

.people-heading h2 {
  font-size: clamp(42px, 5.1vw, 78px);
  font-weight: 400;
  line-height: 1.04;
}

.people-heading > p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.person-card {
  min-width: 0;
  background: var(--clinical);
  border: 1px solid var(--line);
}

.person-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--coffee);
}

.person-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.person-card:hover .person-photo img { transform: scale(1.018); }

.person-copy { padding: 26px 26px 30px; }

.person-copy span {
  color: var(--gold-deep);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.person-copy h3 {
  margin-top: 14px;
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.person-copy p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.people-boundary {
  margin-top: 24px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.formula-section {
  color: var(--ink);
  background: linear-gradient(180deg, var(--champagne) 0%, #f7efe1 100%);
}

.formula-heading-copy { border-color: rgba(130, 104, 81, 0.35); }
.formula-heading-copy > p,
.evidence-key span { color: var(--muted); }

.formula-heading-copy > p { font-size: 16px; line-height: 1.75; }

.formula-instruction {
  margin-top: 24px;
  padding: 16px 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--gold);
  font-size: 13px;
  line-height: 1.5;
}

.formula-instruction strong { color: var(--gold-deep); font-weight: 600; }
.formula-instruction span { margin: 0 9px; color: var(--gold); }

.evidence-key span {
  font-size: 10px;
  font-weight: 600;
  text-transform: none;
}

.formula-console {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gold);
  box-shadow: 0 26px 80px rgba(130, 104, 81, 0.14);
}

.console-topbar {
  min-height: 52px;
  color: var(--gold-deep);
  background: var(--coffee);
  border-color: var(--gold);
  font-size: 10px;
  font-weight: 600;
}

.console-topbar span:last-child { color: var(--orange-dark); }

.formula-rail { background: var(--white); border-color: var(--line); }
.formula-rail--left { border-color: var(--line); }
.formula-rail--right { border-color: var(--line); }

.formula-node {
  min-height: 88px;
  padding: 15px 18px;
  color: var(--ink);
  border-color: var(--line);
}

.formula-node:first-child { border-color: var(--line); }
.node-index { color: var(--gold-deep); font-size: 10px; font-weight: 600; }
.node-copy strong { font-size: 10px; letter-spacing: 0.05em; }
.node-copy small { color: var(--muted); font-size: 9px; line-height: 1.35; text-transform: none; }

.formula-node:hover,
.formula-node[aria-pressed="true"] {
  color: var(--ink);
  background: var(--champagne);
  box-shadow: inset 5px 0 0 var(--gold);
}

.formula-node[aria-pressed="true"] .node-copy strong { color: var(--gold-deep); }
.formula-node[aria-pressed="true"] .node-copy small { color: var(--orange-dark); font-weight: 600; }

.selection-feedback {
  min-height: 64px;
  padding: 14px 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  color: var(--white);
  background: var(--gold);
  border-top: 1px solid var(--gold-deep);
}

.selection-feedback span,
.selection-feedback b {
  font-size: 11px;
  font-weight: 600;
}

.selection-feedback strong {
  font-size: 20px;
  font-weight: 600;
}

.selection-feedback.is-updated { animation: selection-pulse 0.8s ease; }

.ingredient-detail {
  position: relative;
  border-top: 0;
  outline: 0;
  box-shadow: inset 0 0 0 0 rgba(189, 143, 75, 0);
}

.ingredient-detail.is-updated { animation: detail-highlight 1.3s ease; }

.detail-id span,
.detail-name > span,
.detail-dose > span {
  margin-bottom: 12px;
  font-size: 10px;
  font-weight: 600;
}

.detail-id strong { font-size: 18px; }
.detail-name h3 { font-size: 32px; }
.detail-name p,
.detail-evidence p { font-size: 14px; line-height: 1.65; }
.detail-evidence .evidence-link { font-size: 10px; }
.detail-dose small { font-size: 10px; text-transform: none; }

.dose-register {
  border: 1px solid var(--gold);
  box-shadow: 0 18px 60px rgba(130, 104, 81, 0.1);
}

.dose-register-head span,
.dose-register dt,
.claim-register-header,
.claim-register article > div,
.claim-register article > a,
.medical-protocols span,
.review-ledger span,
.review-ledger small,
.review-boundary,
.purchase-figure-code,
.purchase-price span,
.purchase-copy > small,
.safety-strip strong,
.footer-bottom,
.sticky-buy > div span {
  font-size: 10px;
}

.dose-register-head p,
.research-context p,
.medical-protocols p,
.boundary-note span,
.review-ledger p,
.purchase-copy li,
.faq-list details p,
.safety-strip p,
.footer-nav a,
.footer-address,
.footer-contacts a {
  font-size: 13px;
}

.research-context {
  color: var(--ink);
  background: var(--champagne);
  border: 1px solid var(--gold);
}

.research-context p { color: var(--muted); }
.research-context span,
.research-context > a { color: var(--gold-deep); font-size: 10px; }
.research-mark { color: var(--gold-deep); border-color: var(--gold); }

.portrait-label {
  color: var(--ink);
  background: rgba(250, 234, 205, 0.94);
  border-top: 1px solid var(--gold);
}

.portrait-label span { font-size: 10px; font-weight: 600; }
.portrait-label strong { font-size: 16px; }

.spa-section {
  color: var(--ink);
  background: var(--coffee);
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}

.spa-evidence > p,
.boundary-note span { color: var(--muted); }
.boundary-note { border-color: var(--gold); background: rgba(255,255,255,.55); }
.boundary-note strong,
.spa-links a { color: var(--gold-deep); }
.boundary-note strong,
.spa-links a { font-size: 11px; }

.review-ledger > a:hover {
  color: var(--ink);
  background: var(--champagne);
}

.review-ledger > a:hover span,
.review-ledger > a:hover p { color: var(--muted); }
.review-ledger > a:hover small { color: var(--gold-deep); }

.purchase-section {
  color: var(--ink);
  background: var(--champagne);
  border: 1px solid var(--gold);
}

.purchase-price span,
.purchase-copy li,
.purchase-copy > small { color: var(--muted); }
.purchase-copy ul,
.purchase-copy li { border-color: rgba(130, 104, 81, 0.32); }
.purchase-kicker,
.purchase-copy li::before { color: var(--gold-deep); }

.safety-strip {
  color: var(--ink);
  background: var(--gold);
}

.safety-strip p { color: rgba(23, 23, 22, 0.74); }

.site-footer {
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 8%, rgba(189, 143, 75, 0.14), transparent 30%),
    linear-gradient(125deg, var(--white) 0%, #f7f8f6 100%);
  border-top: 6px solid var(--gold);
}

.site-footer .footer-brand img {
  width: 100%;
  height: auto;
  aspect-ratio: 500 / 110;
  object-fit: contain;
  object-position: left center;
  filter: none;
}
.footer-brand p,
.footer-nav a,
.footer-address,
.footer-contacts a,
.footer-bottom { color: var(--muted); }
.footer-section h2 { color: var(--gold-deep); }

.sticky-buy {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid var(--gold);
  box-shadow: 0 18px 48px rgba(130, 104, 81, 0.24);
}

.sticky-buy > div span { color: var(--gold-deep); }

@keyframes selection-pulse {
  0% { background: var(--gold); }
  35% { background: var(--orange); }
  100% { background: var(--gold); }
}

@keyframes detail-highlight {
  0% { box-shadow: inset 0 0 0 4px rgba(189, 143, 75, 0.9); }
  100% { box-shadow: inset 0 0 0 0 rgba(189, 143, 75, 0); }
}

@media (max-width: 980px) {
  .people-heading { grid-template-columns: 1fr; gap: 28px; }
  .people-heading .section-code { margin-bottom: 0; }
  .people-grid { gap: 14px; }
  .person-copy { padding: 20px; }
  .person-copy h3 { font-size: 19px; }

  .mobile-ingredient-strip {
    background: var(--white);
    border-color: var(--gold);
  }

  .mobile-ingredient-button {
    color: var(--ink);
    background: var(--clinical);
    border-color: var(--line);
    font-size: 11px;
    font-weight: 600;
  }

  .mobile-ingredient-button[aria-pressed="true"] {
    color: var(--white);
    background: var(--gold);
    border-color: var(--gold);
  }
}

@media (max-width: 760px) {
  .evidence-bar { font-size: 9px; }
  .primary-nav a { font-size: 12px; }
  .people-section { padding-left: 14px; padding-right: 14px; }
  .people-heading h2 { font-size: clamp(38px, 11vw, 58px); }
  .people-heading > p { font-size: 15px; }
  .people-grid { grid-template-columns: 1fr; gap: 20px; }
  .person-photo { aspect-ratio: 4 / 4.6; }
  .person-copy h3 { font-size: 22px; }
  .person-copy p { font-size: 14px; }

  .formula-heading-copy { border-color: rgba(130, 104, 81, 0.35); }
  .formula-instruction { font-size: 12px; }
  .console-topbar { font-size: 9px; }
  .selection-feedback {
    grid-template-columns: 1fr auto;
    gap: 6px 12px;
    padding: 14px 18px;
  }
  .selection-feedback span { grid-column: 1 / -1; }
  .selection-feedback strong { font-size: 18px; }
  .selection-feedback b { font-size: 10px; text-align: right; }
  .detail-name p,
  .detail-evidence p { font-size: 14px; }
  .detail-evidence .evidence-link { font-size: 11px; }

  .hero-order dl > div {
    border-color: rgba(23, 23, 22, 0.16);
  }

  .sticky-buy { background: rgba(255, 255, 255, 0.98); }
}

/* Customer-first formula: the selected answer stays beside the capsule. */
.order-price span,
.diagnosis-state,
.node-copy small,
.specimen-caption { font-size: 10px; }

.button,
.text-link,
.evidence-link,
.hero h1 strong,
.section-intro h2 strong,
.formula-heading h2 strong,
.people-heading h2 strong,
.medical-copy h2 strong,
.spa-intro h2 strong,
.routine-heading h2 strong,
.reviews-heading h2 strong,
.purchase-copy h2 strong { font-weight: 600; }

.formula-promise {
  margin-top: 24px;
  padding: 15px 18px;
  color: var(--gold-deep);
  background: rgba(255, 255, 255, 0.72);
  border-left: 4px solid var(--gold);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}

.ingredient-picker {
  padding: 28px;
  background: var(--white);
  border-bottom: 1px solid var(--gold);
}

.picker-intro {
  margin-bottom: 20px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
}

.picker-intro strong {
  font-size: 18px;
  font-weight: 600;
}

.picker-intro span {
  color: var(--muted);
  font-size: 13px;
}

.ingredient-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.ingredient-grid .formula-node {
  min-height: 76px;
  padding: 12px 14px;
  grid-template-columns: 25px minmax(0, 1fr) 8px;
  gap: 9px;
  background: var(--clinical);
  border: 1px solid var(--line);
  border-radius: 2px;
}

.ingredient-grid .formula-node:first-child { border-top: 1px solid var(--line); }

.ingredient-grid .formula-node:hover,
.ingredient-grid .formula-node[aria-pressed="true"] {
  background: var(--champagne);
  border-color: var(--gold);
  box-shadow: inset 4px 0 0 var(--gold);
}

.ingredient-grid .node-copy strong {
  font-size: 10px;
  white-space: normal;
}

.ingredient-grid .node-copy small {
  font-size: 9px;
  line-height: 1.25;
}

.formula-stage {
  min-height: 670px;
  display: grid;
  grid-template-columns: minmax(430px, 0.95fr) minmax(470px, 1.05fr);
  align-items: stretch;
}

.formula-stage .capsule-specimen {
  min-height: 670px;
  border-right: 1px solid var(--gold);
}

.formula-stage .capsule-specimen img {
  width: 122%;
  height: 88%;
}

.formula-stage .ingredient-detail {
  min-width: 0;
  padding: clamp(38px, 4.2vw, 68px);
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background: var(--white);
  border: 0;
}

.formula-stage .ingredient-detail > div {
  min-width: 0;
  padding: 0;
  border: 0;
}

.detail-overline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-overline strong { font-weight: 600; }

.formula-stage .detail-name {
  margin-top: 34px;
}

.formula-stage .detail-name > span {
  margin-bottom: 11px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.formula-stage .detail-name h3 {
  font-size: clamp(42px, 4.7vw, 68px);
  font-weight: 600;
  line-height: 1;
}

.formula-stage .detail-name p {
  margin-top: 12px;
  font-size: 15px;
}

.detail-what {
  margin-top: 28px;
  padding: 22px 24px !important;
  background: var(--clinical);
  border-top: 4px solid var(--gold) !important;
}

.detail-what > span {
  display: block;
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.detail-what p {
  margin-top: 10px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
}

.detail-for-you {
  margin-top: 18px;
  padding: 24px 26px !important;
  background: var(--champagne);
  border-left: 5px solid var(--gold) !important;
}

.detail-for-you > span,
.detail-evidence > span {
  display: block;
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.detail-for-you p {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.7;
}

.detail-meta {
  margin-top: auto;
  padding-top: 34px !important;
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 30px;
  align-items: end;
}

.detail-meta .detail-evidence .claim-status { margin-top: 12px; }
.detail-meta .detail-evidence .evidence-link { margin-top: 14px; font-size: 12px; }
.detail-meta .detail-dose > span { margin-bottom: 10px; font-size: 12px; }
.detail-meta .detail-dose strong { font-size: 38px; }
.detail-meta .detail-dose small { font-size: 12px; }

.detail-honesty {
  margin-top: 28px;
  padding-top: 18px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 12px;
  line-height: 1.6;
}

.ingredient-detail.is-updated { animation: detail-highlight-soft 0.7s ease; }

@keyframes detail-highlight-soft {
  0% { background: var(--champagne); }
  100% { background: var(--white); }
}

@media (max-width: 1320px) {
  .formula-stage { grid-template-columns: minmax(390px, 0.9fr) minmax(430px, 1.1fr); }
}

@media (max-width: 1100px) {
  .ingredient-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
  .ingredient-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .formula-stage { grid-template-columns: 1fr; }
  .formula-stage .ingredient-detail { grid-row: 1; min-height: 600px; }
  .formula-stage .capsule-specimen { grid-row: 2; border-right: 0; border-top: 1px solid var(--gold); }
}

@media (max-width: 760px) {
  .formula-promise { font-size: 13px; }
  .ingredient-picker { padding: 22px 18px; }
  .picker-intro { display: block; }
  .picker-intro strong { display: block; font-size: 17px; }
  .picker-intro span { display: block; margin-top: 8px; font-size: 13px; }
  .ingredient-grid {
    margin-right: -18px;
    padding-right: 18px;
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
  }
  .ingredient-grid::-webkit-scrollbar { display: none; }
  .ingredient-grid .formula-node {
    min-width: 190px;
    flex: 0 0 190px;
    scroll-snap-align: start;
  }
  .ingredient-grid .node-copy strong { font-size: 11px; }
  .ingredient-grid .node-copy small { font-size: 10px; }
  .formula-stage .ingredient-detail { min-height: 0; padding: 34px 22px; }
  .formula-stage .detail-name { margin-top: 26px; }
  .formula-stage .detail-name h3 { font-size: 42px; }
  .detail-for-you { margin-top: 28px; padding: 20px !important; }
  .detail-for-you p { font-size: 15px; }
  .detail-meta { margin-top: 30px; padding-top: 26px !important; grid-template-columns: 1fr; }
  .formula-stage .capsule-specimen { min-height: 430px; }
}

/* Minimum legibility for supporting labels in the brand font. */
.evidence-bar,
.clinical-label,
.specimen-heading,
.order-topline,
.section-code,
.purchase-kicker,
.claim-status,
.hero-order dt,
.hero-order dd,
.hero-order > small,
.order-price span,
.trust-rail span,
.trust-rail small,
.trust-rail a,
.diagnosis-state,
.diagnosis-note,
.diagnosis-row > a,
.person-copy span,
.node-index,
.node-copy small,
.specimen-caption,
.detail-overline,
.detail-name > span,
.detail-for-you > span,
.detail-evidence > span,
.detail-evidence .evidence-link,
.detail-dose > span,
.detail-dose small,
.dose-register-head span,
.dose-register dt,
.claim-register-header,
.claim-register article > div,
.claim-register article > a,
.research-context span,
.research-context > a,
.portrait-label span,
.medical-protocols span,
.boundary-note strong,
.spa-links a,
.review-ledger span,
.review-ledger small,
.purchase-figure-code,
.purchase-price span,
.purchase-copy > small,
.safety-strip strong,
.footer-bottom,
.sticky-buy > div span {
  font-size: 11px;
}

@media (max-width: 760px) {
  .evidence-bar { font-size: 10px; }
}

/* Evidence context and a restrained, explicitly decorative molecular field. */
.formula-stage {
  min-height: 790px;
}

.formula-stage .capsule-specimen {
  min-height: 790px;
  background:
    radial-gradient(circle at 50% 44%, rgba(250, 234, 205, 0.96) 0 21%, rgba(232, 225, 214, 0.7) 49%, transparent 72%),
    var(--coffee);
}

.molecular-field {
  position: absolute;
  inset: 54px 20px 76px;
  z-index: 2;
  pointer-events: none;
}

.molecule {
  position: absolute;
  overflow: visible;
  opacity: 0.72;
  filter: drop-shadow(0 8px 18px rgba(130, 104, 81, 0.11));
}

.molecule--left {
  left: 1%;
  top: 8%;
  width: 42%;
  animation: molecule-drift-left 8s ease-in-out infinite alternate;
}

.molecule--right {
  right: 0;
  bottom: 8%;
  width: 36%;
  animation: molecule-drift-right 9.5s ease-in-out infinite alternate;
}

.molecule-bonds path {
  fill: none;
  stroke: rgba(130, 104, 81, 0.55);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.molecule-nodes circle {
  fill: rgba(255, 255, 255, 0.82);
  stroke: var(--gold);
  stroke-width: 2;
  transform-box: fill-box;
  transform-origin: center;
  animation: molecule-node-pulse 3.6s ease-in-out infinite alternate;
}

.molecule-nodes circle:nth-child(2n) { animation-delay: -1.2s; }
.molecule-nodes circle:nth-child(3n) { animation-delay: -2.4s; }

.molecule-disclaimer {
  position: absolute;
  left: 24px;
  bottom: 46px;
  z-index: 5;
  max-width: 300px;
  color: rgba(102, 91, 82, 0.8);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.45;
}

@keyframes molecule-drift-left {
  from { transform: translate3d(-4px, 7px, 0) rotate(-2deg); }
  to { transform: translate3d(8px, -9px, 0) rotate(3deg); }
}

@keyframes molecule-drift-right {
  from { transform: translate3d(6px, -5px, 0) rotate(2deg); }
  to { transform: translate3d(-8px, 8px, 0) rotate(-3deg); }
}

@keyframes molecule-node-pulse {
  from { transform: scale(0.92); opacity: 0.68; }
  to { transform: scale(1.08); opacity: 1; }
}

.detail-context {
  margin-top: 18px;
  padding: 18px 20px !important;
  background: var(--clinical);
  border: 1px solid var(--line) !important;
}

.formula-stage .detail-overline,
.formula-stage .detail-name > span,
.formula-stage .detail-for-you > span,
.formula-stage .detail-evidence > span,
.formula-stage .detail-evidence .evidence-link,
.formula-stage .detail-dose > span,
.formula-stage .detail-dose small {
  font-size: 12px;
}

.detail-context > span {
  display: block;
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.detail-context p {
  margin-top: 9px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.context-source-link {
  display: inline-block;
  margin-top: 11px;
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.detail-meta {
  margin-top: 24px;
}

.detail-meta .detail-dose small {
  display: block;
}

.dose-register dl {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dose-register dl > div:nth-child(3n) { border-right: 1px solid var(--line); }
.dose-register dl > div:nth-child(4n) { border-right: 0; }

@media (max-width: 1100px) {
  .formula-stage,
  .formula-stage .capsule-specimen { min-height: 720px; }
  .dose-register dl { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .dose-register dl > div:nth-child(4n) { border-right: 1px solid var(--line); }
  .dose-register dl > div:nth-child(3n) { border-right: 0; }
}

@media (max-width: 980px) {
  .formula-stage { min-height: 0; }
  .formula-stage .ingredient-detail { min-height: 0; }
  .formula-stage .capsule-specimen { min-height: 560px; }
}

@media (max-width: 760px) {
  .formula-stage .capsule-specimen { min-height: 450px; }
  .detail-context { padding: 17px 18px !important; }
  .detail-context p { font-size: 14px; }
  .molecule--left { width: 46%; }
  .molecule--right { width: 41%; }
  .molecule-disclaimer { left: 18px; bottom: 52px; max-width: 235px; font-size: 9px; }
  .dose-register dl { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .dose-register dl > div:nth-child(3n) { border-right: 1px solid var(--line); }
  .dose-register dl > div:nth-child(2n) { border-right: 0; }
}

@media (max-width: 480px) {
  .formula-stage .capsule-specimen { min-height: 420px; }
  .dose-register dl { grid-template-columns: 1fr; }
  .dose-register dl > div { border-right: 0 !important; }
}

/* Cleaner clinical rhythm: white leads, EPIDERMA gold supports. */
:root {
  --clinical: #f6f8f7;
  --line: #dcded9;
  --muted: #5e625e;
}

body,
.people-section,
.formula-section,
.evidence-section,
.medical-section,
.routine-section,
.reviews-section,
.faq-section {
  background: var(--white);
}

.site-header { background: rgba(255, 255, 255, 0.97); }

.hero-order {
  background: var(--white);
  border: 1px solid var(--gold);
  border-top-width: 5px;
}

.hero-specimen,
.purchase-product {
  background: var(--clinical);
}

.doctor-mark,
.diagnosis-row--solution {
  background: var(--white);
}

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

.formula-console {
  box-shadow: 0 24px 64px rgba(65, 72, 68, 0.09);
}

.console-topbar,
.ingredient-picker {
  background: var(--clinical);
}

.formula-stage .capsule-specimen {
  background:
    radial-gradient(circle at 50% 44%, rgba(250, 234, 205, 0.68) 0 19%, rgba(255, 255, 255, 0.82) 48%, transparent 73%),
    var(--clinical);
}

.detail-for-you { background: rgba(250, 234, 205, 0.58); }

.research-context,
.spa-section,
.purchase-section {
  color: var(--ink);
  background: var(--white);
}

.research-context {
  border-left: 5px solid var(--gold);
  box-shadow: 0 16px 46px rgba(65, 72, 68, 0.07);
}

.spa-section {
  border-color: var(--line);
}

.purchase-section {
  border-color: var(--gold);
  box-shadow: 0 24px 70px rgba(65, 72, 68, 0.09);
}

.formula-benefit {
  margin-top: 64px;
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(520px, 1.1fr);
  min-height: 650px;
  overflow: hidden;
  background: var(--clinical);
  border: 1px solid var(--line);
  border-top: 5px solid var(--gold);
}

.formula-benefit-photo {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: var(--clinical);
}

.formula-benefit-photo img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center;
}

.formula-benefit-photo > div {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  padding: 19px 21px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border-left: 4px solid var(--gold);
  backdrop-filter: blur(12px);
}

.formula-benefit-photo span,
.formula-benefit-copy > span,
.purchase-persona-note span {
  display: block;
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
}

.formula-benefit-photo strong {
  display: block;
  margin-top: 7px;
  font-size: 17px;
  line-height: 1.45;
}

.formula-benefit-copy {
  padding: clamp(44px, 5.5vw, 82px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.formula-benefit-copy h3 {
  margin-top: 20px;
  font-size: clamp(34px, 3.9vw, 58px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.formula-benefit-copy h3 strong { font-weight: 600; }

.formula-benefit-copy > p {
  max-width: 720px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.formula-benefit-list {
  margin: 30px 0 34px;
  border-top: 1px solid var(--line);
}

.formula-benefit-list article {
  min-height: 92px;
  padding: 18px 0;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 17px;
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.formula-benefit-list article > b {
  color: var(--gold);
  font-size: 12px;
  line-height: 1.6;
}

.formula-benefit-list article strong,
.formula-benefit-list article span {
  display: block;
}

.formula-benefit-list article strong {
  font-size: 16px;
  font-weight: 600;
}

.formula-benefit-list article span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.formula-benefit-copy .button {
  width: fit-content;
  align-self: flex-start;
}

.purchase-product img {
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: normal;
}

.purchase-persona-note {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 3;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.94);
  border-left: 4px solid var(--gold);
  backdrop-filter: blur(12px);
}

.purchase-persona-note strong {
  display: block;
  margin-top: 7px;
  font-size: 16px;
  line-height: 1.45;
}

@media (max-width: 980px) {
  .formula-benefit { grid-template-columns: 1fr; }
  .formula-benefit-photo { min-height: 520px; }
}

@media (max-width: 760px) {
  .formula-benefit { margin-top: 38px; min-height: 0; }
  .formula-benefit-photo { min-height: 420px; }
  .formula-benefit-copy { padding: 36px 22px 42px; }
  .formula-benefit-copy h3 { font-size: 36px; }
  .formula-benefit-copy > p { font-size: 15px; }
  .formula-benefit-copy .button { width: 100%; }
  .purchase-persona-note { left: 16px; right: 16px; bottom: 16px; }
}

/* Complete-care programmes and verified retail paths. */
.primary-nav { gap: 16px; }
.primary-nav a { font-size: 11px; }

.programs-section {
  width: 100%;
  padding-left: max(32px, calc((100vw - 1480px) / 2));
  padding-right: max(32px, calc((100vw - 1480px) / 2));
  background: var(--clinical);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.programs-heading,
.availability-heading {
  display: grid;
  grid-template-columns: minmax(560px, 1.1fr) minmax(340px, 0.65fr);
  gap: 72px;
  align-items: end;
  margin-bottom: 56px;
}

.programs-heading .section-code,
.availability-heading .section-code {
  grid-column: 1 / -1;
  margin-bottom: -28px;
}

.programs-heading h2,
.availability-heading h2 {
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.programs-heading h2 strong,
.availability-heading h2 strong { font-weight: 600; }

.programs-summary > p,
.availability-heading > p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.programs-summary {
  min-width: 0;
}

.programs-innovation {
  position: relative;
  margin-top: 24px;
  padding: 20px 22px 20px 27px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
}

.programs-innovation::after {
  content: "®";
  position: absolute;
  top: 13px;
  right: 17px;
  color: rgba(185, 143, 75, 0.22);
  font-family: var(--data);
  font-size: 34px;
  line-height: 1;
}

.programs-innovation > span {
  display: block;
  padding-right: 42px;
  color: var(--gold-deep);
  font-family: var(--data);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.4;
}

.programs-innovation > p {
  max-width: 620px;
  margin-top: 8px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.6;
}

.programs-innovation strong {
  font-weight: 700;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.program-card {
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.program-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 22px 54px rgba(65, 72, 68, 0.11);
}

.program-card-media {
  position: relative;
  aspect-ratio: 2 / 3;
  padding: 18px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #fcf6f1;
  border-bottom: 1px solid var(--line);
}

.program-card[data-program="acne"] .program-card-media { background: #fbf6f2; }
.program-card[data-program="eczema"] .program-card-media,
.program-card[data-program="psoriasis"] .program-card-media { background: #fcf6f1; }

.program-card-concern {
  min-height: 92px;
  padding: 18px 22px;
  display: grid;
  grid-template-columns: 12px 1fr;
  grid-template-rows: auto auto;
  gap: 3px 12px;
  align-content: center;
  color: var(--ink);
  background: linear-gradient(100deg, rgba(237, 221, 184, 0.66), rgba(255, 255, 255, 0.98) 70%);
  border-top: 5px solid var(--gold);
  border-bottom: 1px solid var(--line);
}

.program-card-concern i {
  grid-row: 1 / 3;
  align-self: center;
  width: 10px;
  height: 10px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}

.program-card-concern span {
  color: var(--gold-deep);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.2;
}

.program-card-concern strong {
  font-size: clamp(21px, 1.8vw, 28px);
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.program-card-media img {
  position: absolute;
  inset: 18px;
  display: block;
  width: auto;
  height: auto;
  max-width: calc(100% - 36px);
  max-height: calc(100% - 36px);
  margin: auto;
  object-fit: contain;
  object-position: center;
}

.program-card-body { padding: 25px 25px 27px; }

.program-card-body > small {
  display: block;
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.45;
}

.program-card-body h3 {
  min-height: 62px;
  margin-top: 12px;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.025em;
}

.program-card-body > div {
  margin-top: 24px;
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
}

.program-card-body strong { font-size: 21px; font-weight: 600; }
.program-card-body > div span { color: var(--gold-deep); font-size: 11px; font-weight: 600; text-align: right; }

.programs-foot {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.programs-foot p {
  max-width: 760px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.availability-section {
  background: var(--white);
  border-top: 1px solid var(--line);
}

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

.availability-grid--single {
  grid-template-columns: minmax(0, 620px);
}

.availability-card {
  min-height: 240px;
  padding: 28px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-items: center;
  background: var(--clinical);
  border: 1px solid var(--line);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.availability-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 18px 44px rgba(65, 72, 68, 0.09);
}

.availability-card--epiderma {
  background: var(--white);
  border-color: var(--gold);
}

.availability-card > span {
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
}

.availability-card img {
  width: min(210px, 74%);
  max-height: 58px;
  margin: 28px auto;
  object-fit: contain;
}

.availability-card--epiderma img { width: min(230px, 78%); }

.availability-card > strong {
  padding-top: 18px;
  color: var(--ink);
  border-top: 1px solid var(--line);
  font-size: 14px;
  font-weight: 600;
}

.availability-note {
  margin-top: 22px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

@media (max-width: 1180px) {
  .primary-nav { gap: 12px; }
  .primary-nav a { font-size: 11px; }
  .programs-heading,
  .availability-heading { grid-template-columns: 1fr; gap: 28px; }
  .programs-heading .section-code,
  .availability-heading .section-code { margin-bottom: 0; }
}

@media (max-width: 900px) {
  .programs-grid { width: min(100%, 680px); margin-inline: auto; grid-template-columns: 1fr; }
  .program-card-media { aspect-ratio: 4 / 5; }
  .availability-grid { grid-template-columns: 1fr; }
  .availability-card { min-height: 210px; }
}

@media (max-width: 760px) {
  .primary-nav a { font-size: 12px; }
  .programs-section { padding-left: 14px; padding-right: 14px; }
  .programs-heading,
  .availability-heading { margin-bottom: 34px; }
  .programs-heading h2,
  .availability-heading h2 { font-size: 38px; }
  .programs-summary > p,
  .availability-heading > p { font-size: 15px; }
  .programs-innovation { padding: 18px 18px 18px 22px; }
  .programs-innovation > p { font-size: 14px; }
  .programs-grid { grid-template-columns: 1fr; }
  .program-card-media { aspect-ratio: 4 / 5; padding: 0; }
  .program-card-concern { min-height: 84px; padding: 16px 18px; }
  .program-card-concern strong { font-size: 24px; }
  .program-card-body h3 { min-height: 0; }
  .programs-foot { align-items: flex-start; flex-direction: column; }
  .availability-card { min-height: 190px; padding: 24px 22px; }
}

/* Locale control: compact, keyboard-friendly and visually subordinate to the purchase action. */
.nav-shell {
  grid-template-columns: 190px minmax(0, 1fr) auto auto;
  gap: 22px;
}

.language-switcher {
  position: relative;
  z-index: 120;
}

.language-current {
  min-width: 58px;
  min-height: 44px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--gold);
  font: 600 11px/1 var(--brand);
  letter-spacing: 0.08em;
  cursor: pointer;
}

.language-current i {
  color: var(--gold-deep);
  font-style: normal;
  transition: transform 0.2s ease;
}

.language-switcher.is-open .language-current i { transform: rotate(180deg); }

.language-options {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 170px;
  padding: 8px;
  display: none;
  background: var(--white);
  border: 1px solid var(--gold);
  box-shadow: 0 18px 48px rgba(130, 104, 81, 0.18);
}

.language-switcher.is-open .language-options { display: grid; }

.language-options a {
  min-height: 40px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
}

.language-options a:hover,
.language-options a[aria-current="page"] {
  color: var(--gold-deep);
  background: var(--champagne);
}

@media (max-width: 1080px) {
  .nav-shell { grid-template-columns: 1fr auto auto auto; }
  .brand { grid-column: 1; grid-row: 1; }
  .language-switcher { grid-column: 2; grid-row: 1; }
  .menu-toggle { grid-column: 3; grid-row: 1; }
  .nav-cta { grid-column: 4; grid-row: 1; }
}

@media (max-width: 760px) {
  .nav-shell { grid-template-columns: 1fr auto auto; gap: 10px; }
  .brand { grid-column: 1; grid-row: 1; }
  .language-switcher { grid-column: 2; grid-row: 1; }
  .menu-toggle { grid-column: 3; grid-row: 1; }
  .language-current { min-width: 52px; min-height: 40px; padding: 0 10px; }
  .language-options { position: fixed; top: 74px; left: 14px; right: 14px; width: auto; }
}

/* A human routine bridges the section thesis and its clinical explanation. */
.diagnosis .section-intro { margin-bottom: 54px; }

.diagnosis-persona {
  min-height: 590px;
  margin-bottom: 46px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(480px, 1.12fr) minmax(390px, 0.88fr);
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 5px solid var(--gold);
  box-shadow: 0 24px 66px rgba(65, 72, 68, 0.08);
}

.diagnosis-persona-photo {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  background: var(--clinical);
}

.diagnosis-persona-photo > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.persona-dose-rail {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  min-height: 86px;
  padding: 16px 22px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-left: 5px solid var(--gold);
  box-shadow: 0 16px 40px rgba(65, 72, 68, 0.14);
  backdrop-filter: blur(14px);
}

.persona-dose-rail span:last-child { text-align: right; }

.persona-dose-rail small,
.persona-dose-rail strong { display: block; }

.persona-dose-rail small {
  color: var(--gold-deep);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.persona-dose-rail strong {
  margin-top: 5px;
  font-size: 17px;
  font-weight: 650;
}

.persona-dose-rail > i {
  color: var(--gold);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
}

.diagnosis-persona figcaption {
  padding: clamp(44px, 5vw, 78px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--line);
}

.diagnosis-persona figcaption > span {
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
}

.diagnosis-persona figcaption h3 {
  margin-top: 20px;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.diagnosis-persona figcaption h3 strong { font-weight: 600; }

.diagnosis-persona figcaption > p {
  max-width: 600px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.diagnosis-persona figcaption > small {
  margin-top: 34px;
  padding-top: 18px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 11px;
  line-height: 1.55;
}

/* Inside-out skin system: one interactive explanation, four recognisable needs. */
.skin-system {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gold);
  box-shadow: 0 28px 80px rgba(65, 72, 68, 0.09);
}

.concern-picker {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(620px, 1.28fr);
  align-items: stretch;
  border-bottom: 1px solid var(--gold);
}

.concern-picker-copy {
  padding: clamp(30px, 3.4vw, 54px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--clinical);
  border-right: 1px solid var(--gold);
}

.concern-picker-copy > span,
.care-side > span,
.skin-claim-line > span,
.concern-answer-copy > span,
.concern-boundary > span {
  color: var(--gold-deep);
  font-family: var(--data);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
}

.concern-picker-copy h3 {
  margin-top: 13px;
  font-size: clamp(27px, 2.5vw, 39px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.concern-picker-copy p {
  max-width: 460px;
  margin-top: 15px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.concern-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  background: var(--white);
}

.concern-tabs button {
  position: relative;
  min-height: 150px;
  padding: 27px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 8px;
  color: var(--ink);
  text-align: left;
  background: var(--white);
  border: 0;
  border-right: 1px solid var(--line);
  transition: color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.concern-tabs button:last-child { border-right: 0; }

.concern-tabs button i {
  position: absolute;
  top: 24px;
  left: 22px;
  width: 17px;
  height: 17px;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.concern-tabs button i::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: inherit;
  background: var(--orange);
  opacity: 0;
  transform: scale(0.45);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.concern-tabs button span {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.concern-tabs button small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.concern-tabs button:hover,
.concern-tabs button[aria-selected="true"] {
  color: var(--gold-deep);
  background: var(--champagne);
  box-shadow: inset 0 -4px 0 var(--gold);
}

.concern-tabs button[aria-selected="true"] i::after {
  opacity: 1;
  transform: scale(1);
}

.care-duet {
  min-height: 390px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px minmax(0, 1fr);
  border-bottom: 1px solid var(--gold);
}

.care-side {
  position: relative;
  padding: clamp(46px, 5vw, 78px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.care-side--outside { background: var(--white); }
.care-side--inside { background: var(--clinical); }

.care-side-index {
  position: absolute;
  top: 28px;
  right: 34px;
  color: rgba(130, 104, 81, 0.25);
  font-family: var(--data);
  font-size: 46px;
  font-weight: 500;
  letter-spacing: -0.07em;
}

.care-side h3 {
  max-width: 520px;
  margin-top: 20px;
  font-size: clamp(30px, 3.2vw, 48px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.care-side p {
  max-width: 540px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.care-bridge {
  position: relative;
  z-index: 2;
  margin: -1px 0;
  display: grid;
  place-content: center;
  justify-items: center;
  color: var(--white);
  text-align: center;
  background: linear-gradient(145deg, #a97d3e, #c89b58 52%, #98703a);
}

.care-bridge::before,
.care-bridge::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 1px;
  height: 52px;
  background: rgba(255, 255, 255, 0.52);
}

.care-bridge::before { top: 0; }
.care-bridge::after { bottom: 0; }

.skin-orbit {
  position: relative;
  width: 88px;
  height: 88px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
}

.skin-orbit::before,
.skin-orbit::after {
  content: "";
  position: absolute;
  inset: 13px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
}

.skin-orbit::after { inset: 29px; background: var(--white); border: 0; }

.skin-orbit i {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 7px rgba(230, 111, 31, 0.16);
  animation: skin-orbit-pulse 2.8s ease-in-out infinite;
}

.skin-orbit i:nth-child(1) { top: 7px; left: 39px; }
.skin-orbit i:nth-child(2) { right: 7px; bottom: 18px; animation-delay: -0.9s; }
.skin-orbit i:nth-child(3) { left: 8px; bottom: 18px; animation-delay: -1.8s; }

.care-bridge > span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  opacity: 0.78;
}

.care-bridge > strong {
  margin-top: 9px;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: 0.06em;
}

.skin-claim-line {
  min-height: 94px;
  padding: 22px clamp(28px, 3.5vw, 54px);
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  background: var(--white);
  border-bottom: 1px solid var(--gold);
}

.skin-claim-line p {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.skin-claim-line a,
.concern-boundary a {
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.concern-answer {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(330px, 0.7fr);
  min-height: 410px;
  background: var(--white);
}

.concern-answer-copy {
  padding: clamp(42px, 5vw, 78px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.concern-answer-copy h3 {
  max-width: 770px;
  margin-top: 17px;
  font-size: clamp(34px, 4.2vw, 62px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.04;
}

.concern-answer-copy > p {
  max-width: 790px;
  margin-top: 25px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.concern-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.concern-actions .button { min-width: 236px; }
.concern-actions .text-link { color: var(--gold-deep); font-size: 12px; }

.concern-boundary {
  padding: clamp(38px, 4vw, 62px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--champagne);
  border-left: 1px solid var(--gold);
}

.concern-boundary strong {
  margin-top: 18px;
  font-size: clamp(23px, 2.2vw, 32px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.concern-boundary p {
  margin: 22px 0 28px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.concern-answer.is-changing .concern-answer-copy,
.concern-answer.is-changing .concern-boundary {
  animation: concern-answer-in 0.38s ease both;
}

@keyframes skin-orbit-pulse {
  0%, 100% { transform: scale(0.72); opacity: 0.58; }
  50% { transform: scale(1.08); opacity: 1; }
}

@keyframes concern-answer-in {
  from { opacity: 0.45; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1120px) {
  .diagnosis-persona { grid-template-columns: 1fr 1fr; }
  .concern-picker { grid-template-columns: 1fr; }
  .concern-picker-copy { border-right: 0; border-bottom: 1px solid var(--gold); }
  .care-duet { grid-template-columns: minmax(0, 1fr) 150px minmax(0, 1fr); }
  .care-side { padding: 54px 38px; }
  .skin-claim-line { grid-template-columns: 180px minmax(0, 1fr); }
  .skin-claim-line a { grid-column: 2; }
  .concern-answer { grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr); }
}

@media (max-width: 820px) {
  .diagnosis-persona { min-height: 0; grid-template-columns: 1fr; }
  .diagnosis-persona-photo { min-height: 520px; }
  .diagnosis-persona figcaption { padding: 48px 34px; border-left: 0; border-top: 1px solid var(--line); }
  .concern-tabs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .concern-tabs button { min-height: 126px; }
  .concern-tabs button:nth-child(2) { border-right: 0; }
  .concern-tabs button:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .care-duet { grid-template-columns: 1fr; }
  .care-side { min-height: 300px; }
  .care-bridge { min-height: 190px; margin: 0 -1px; }
  .care-bridge::before,
  .care-bridge::after { top: 50%; width: 52px; height: 1px; }
  .care-bridge::before { left: 0; }
  .care-bridge::after { left: auto; right: 0; bottom: auto; }
  .skin-orbit { width: 76px; height: 76px; margin-bottom: 14px; }
  .skin-orbit i:nth-child(1) { left: 33px; }
  .skin-claim-line { grid-template-columns: 1fr; gap: 12px; }
  .skin-claim-line a { grid-column: auto; }
  .concern-answer { grid-template-columns: 1fr; }
  .concern-boundary { border-left: 0; border-top: 1px solid var(--gold); }
}

@media (max-width: 520px) {
  .diagnosis .section-intro { margin-bottom: 38px; }
  .diagnosis-persona { margin-bottom: 32px; }
  .diagnosis-persona-photo { min-height: 410px; }
  .diagnosis-persona figcaption { padding: 36px 24px 38px; }
  .diagnosis-persona figcaption h3 { font-size: 38px; }
  .diagnosis-persona figcaption > p { font-size: 16px; }
  .persona-dose-rail { left: 14px; right: 14px; bottom: 14px; min-height: 76px; padding: 13px 15px; gap: 10px; }
  .persona-dose-rail small { font-size: 9px; }
  .persona-dose-rail strong { font-size: 14px; }
  .concern-picker-copy { padding: 30px 24px; }
  .concern-tabs button { min-height: 118px; padding: 22px 17px; }
  .concern-tabs button i { top: 18px; left: 17px; }
  .concern-tabs button span { font-size: 15px; }
  .concern-tabs button small { font-size: 11px; }
  .care-side { min-height: 285px; padding: 52px 25px 38px; }
  .care-side-index { top: 20px; right: 24px; font-size: 38px; }
  .care-side h3 { font-size: 31px; }
  .care-side p { font-size: 15px; }
  .skin-claim-line { padding: 25px 24px; }
  .skin-claim-line p { font-size: 15px; }
  .concern-answer-copy,
  .concern-boundary { padding: 38px 24px; }
  .concern-answer-copy h3 { font-size: 37px; }
  .concern-answer-copy > p { font-size: 16px; }
  .concern-actions { align-items: stretch; flex-direction: column; gap: 18px; }
  .concern-actions .button { width: 100%; min-width: 0; }
  .concern-actions .text-link { padding: 4px 0; }
}

@media (prefers-reduced-motion: reduce) {
  .skin-orbit i,
  .concern-answer.is-changing .concern-answer-copy,
  .concern-answer.is-changing .concern-boundary { animation: none; }
}

/* Premium medical-development seal beside the hero product. */
.hero-specimen .doctor-mark {
  top: 76px;
  right: 28px;
  bottom: auto;
  left: auto;
  width: 154px;
  height: 154px;
  display: grid;
  place-items: center;
  overflow: visible;
  color: var(--ink);
  background:
    radial-gradient(circle at 36% 28%, rgba(255, 255, 255, 0.98) 0 14%, transparent 35%),
    linear-gradient(145deg, #fffdf8 0%, #f8e7c5 100%);
  border: 2px solid var(--gold);
  border-radius: 50%;
  box-shadow:
    0 20px 42px rgba(130, 104, 81, 0.22),
    0 0 0 7px rgba(255, 255, 255, 0.82),
    0 0 0 8px rgba(189, 143, 75, 0.52),
    inset 0 0 0 5px rgba(255, 255, 255, 0.72);
  text-align: center;
  transform: rotate(-5deg);
}

.doctor-mark-halo {
  position: absolute;
  inset: 10px;
  display: block;
  border: 1px dashed rgba(130, 104, 81, 0.68);
  border-radius: 50%;
}

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

.doctor-mark-halo::before {
  top: 50%;
  left: -5px;
  right: -5px;
  height: 1px;
}

.doctor-mark-halo::after {
  top: -5px;
  bottom: -5px;
  left: 50%;
  width: 1px;
}

.doctor-mark-halo i {
  position: absolute;
  z-index: 2;
  width: 6px;
  height: 6px;
  background: var(--orange);
  border: 2px solid #fff8eb;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--gold);
}

.doctor-mark-halo i:nth-child(1) { top: -3px; left: calc(50% - 3px); }
.doctor-mark-halo i:nth-child(2) { right: -3px; top: calc(50% - 3px); }
.doctor-mark-halo i:nth-child(3) { bottom: -3px; left: calc(50% - 3px); }
.doctor-mark-halo i:nth-child(4) { left: -3px; top: calc(50% - 3px); }

.doctor-mark-core {
  position: relative;
  z-index: 3;
  width: 108px;
  min-height: 108px;
  padding: 18px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.83);
  border: 1px solid rgba(189, 143, 75, 0.52);
  border-radius: 50%;
  backdrop-filter: blur(2px);
}

.doctor-mark .doctor-mark-kicker {
  color: var(--gold-deep);
  font-family: var(--data);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.1;
}

.doctor-mark-core strong {
  max-width: 96px;
  margin-top: 3px;
  font-family: var(--brand);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

@media (max-width: 760px) {
  .hero-specimen .doctor-mark {
    top: 72px;
    right: 20px;
    bottom: auto;
    left: auto;
    width: 132px;
    height: 132px;
    box-shadow:
      0 16px 34px rgba(130, 104, 81, 0.2),
      0 0 0 5px rgba(255, 255, 255, 0.82),
      0 0 0 6px rgba(189, 143, 75, 0.52);
  }

  .doctor-mark-halo { inset: 8px; }
  .doctor-mark-core { width: 94px; min-height: 94px; padding: 13px 7px; }
  .doctor-mark .doctor-mark-kicker { font-size: 8px; }
  .doctor-mark-core strong { max-width: 82px; font-size: 15px; }
}

@media (max-width: 420px) {
  .hero-specimen .doctor-mark {
    top: 68px;
    right: 16px;
    bottom: auto;
    left: auto;
    width: 116px;
    height: 116px;
  }

  .doctor-mark-core { width: 82px; min-height: 82px; padding: 11px 5px; }
  .doctor-mark .doctor-mark-kicker { font-size: 7px; }
  .doctor-mark-core strong { max-width: 74px; font-size: 13px; }
}

/* Reviews: verified numbers balanced by a human lifestyle moment. */
.reviews-layout {
  display: grid;
  grid-template-columns: minmax(500px, 0.92fr) minmax(560px, 1.08fr);
  gap: clamp(56px, 7vw, 112px);
  align-items: center;
}

.reviews-content { min-width: 0; }
.reviews-heading { max-width: 760px; }

.reviews-content .review-ledger {
  margin-top: 48px;
  grid-template-columns: 1fr;
  border: 1px solid var(--gold);
}

.reviews-content .review-ledger > a {
  min-height: 154px;
  padding: 24px 26px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto auto;
  column-gap: 24px;
  border-right: 0;
  border-bottom: 1px solid var(--line);
}

.reviews-content .review-ledger > a:last-child { border-bottom: 0; }

.reviews-content .review-ledger span {
  grid-column: 1;
  grid-row: 1;
}

.reviews-content .review-ledger strong {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  margin-top: 0;
  font-size: clamp(42px, 4vw, 58px);
}

.reviews-content .review-ledger > a > div {
  grid-column: 1;
  grid-row: 2;
  margin-top: 7px;
  font-size: 15px;
}

.reviews-content .review-ledger p {
  grid-column: 1;
  grid-row: 3;
  align-self: end;
  margin-top: 15px;
}

.reviews-content .review-ledger small {
  grid-column: 2;
  grid-row: 3;
  align-self: end;
  justify-self: end;
  margin-top: 15px;
  text-align: right;
}

.reviews-content .review-boundary {
  max-width: 680px;
  margin-top: 24px;
}

.reviews-photo {
  margin: 0;
  align-self: center;
  overflow: hidden;
  background: var(--champagne);
  border: 1px solid var(--gold);
  box-shadow: 0 30px 80px rgba(65, 72, 68, 0.14);
}

.reviews-photo > img {
  width: 100%;
  height: auto;
  aspect-ratio: 1264 / 848;
  object-fit: cover;
  object-position: center;
}

.reviews-photo figcaption {
  min-height: 128px;
  padding: 28px 32px;
  display: grid;
  align-content: center;
  gap: 9px;
  background: linear-gradient(110deg, var(--champagne), var(--white));
  border-top: 1px solid var(--gold);
}

.reviews-photo figcaption span {
  color: var(--gold-deep);
  font-family: var(--data);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.reviews-photo figcaption strong {
  max-width: 580px;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.25;
}

@media (max-width: 1080px) {
  .reviews-layout {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .reviews-photo {
    width: 100%;
    max-width: 900px;
  }
}

@media (max-width: 760px) {
  .reviews-layout { gap: 42px; }

  .reviews-content .review-ledger > a {
    min-height: 0;
    padding: 22px;
    grid-template-columns: minmax(0, 1fr) auto;
    row-gap: 0;
  }

  .reviews-content .review-ledger p {
    grid-column: 1 / -1;
    grid-row: 3;
  }

  .reviews-content .review-ledger small {
    grid-column: 1 / -1;
    grid-row: 4;
    justify-self: start;
    margin-top: 12px;
    text-align: left;
  }

  .reviews-photo figcaption {
    min-height: 0;
    padding: 22px;
  }
}

/* Mobile editorial carousels: less scrolling, clear touch affordance and intact product images. */
.mobile-carousel-nav {
  display: none;
}

@media (max-width: 900px) {
  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-copy,
  .hero-specimen,
  .hero-order {
    min-width: 0;
  }

  .hero-specimen {
    min-height: 620px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .hero-order {
    grid-column: auto;
  }

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

  .trust-rail > div {
    min-width: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-rail > div:nth-child(2n) {
    border-right: 0;
  }

  .trust-rail > div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .trust-source {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .trust-source strong {
    max-width: 96px;
    font-size: 15px;
    letter-spacing: -0.025em;
    white-space: nowrap;
  }

  .mobile-carousel-nav {
    min-height: 48px;
    margin: -8px 0 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .mobile-carousel-label {
    color: var(--gold-deep);
    font-family: var(--data);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mobile-carousel-actions {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .mobile-carousel-button {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: var(--ink);
    background: transparent;
    border: 0;
    font-family: var(--data);
    font-size: 20px;
    transition: color 0.2s ease, background 0.2s ease, opacity 0.2s ease;
  }

  .mobile-carousel-button:not(:disabled):active {
    color: var(--white);
    background: var(--gold);
  }

  .mobile-carousel-button:disabled {
    opacity: 0.28;
  }

  .mobile-carousel-status {
    min-width: 42px;
    color: var(--muted);
    font-family: var(--data);
    font-size: 11px;
    font-weight: 600;
    text-align: center;
  }

  .people-grid,
  .programs-grid {
    width: auto;
    max-width: none;
    margin-inline: 0;
    margin-right: -14px;
    padding-right: 34px;
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 0 34px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .people-grid::-webkit-scrollbar,
  .programs-grid::-webkit-scrollbar {
    display: none;
  }

  .person-card,
  .program-card {
    flex: 0 0 min(84vw, 360px);
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .person-photo {
    aspect-ratio: 4 / 4.65;
  }

  .person-copy {
    padding: 22px 21px 24px;
  }

  .people-boundary {
    margin-top: 20px;
  }

  .program-card-media {
    aspect-ratio: 2 / 3;
    padding: 14px;
  }

  .program-card-media img {
    inset: 14px;
    max-width: calc(100% - 28px);
    max-height: calc(100% - 28px);
  }

  .program-card-body {
    padding: 22px 21px 24px;
  }

  .program-card-body > div {
    margin-top: 18px;
    padding-top: 17px;
  }

  .formula-stage .detail-evidence > span {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    letter-spacing: 0.055em;
    line-height: 1.35;
  }

  .formula-stage .detail-meta,
  .formula-stage .detail-evidence {
    min-width: 0;
    overflow: hidden;
  }

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

  .dose-register dl > div {
    border-right: 1px solid var(--line) !important;
  }

  .dose-register dl > div:nth-child(2n) {
    border-right: 0 !important;
  }
}

@media (max-width: 340px) {
  .specimen-heading {
    left: 16px;
    right: 16px;
    gap: 10px;
    font-size: 9px;
    line-height: 1.25;
  }

  .specimen-heading span {
    max-width: 50%;
    white-space: normal;
  }

  .specimen-heading span:last-child {
    text-align: right;
  }

  .trust-rail > div {
    padding: 14px;
    gap: 6px 10px;
  }

  .trust-rail strong {
    font-size: 24px;
  }

  .trust-source strong {
    font-size: 13px;
  }

  .person-card,
  .program-card {
    flex-basis: calc(100vw - 46px);
  }

  .dose-register dl {
    grid-template-columns: 1fr;
  }

  .dose-register dl > div {
    border-right: 0 !important;
  }
}
