/* ============================================================
   CUPRUM LABS — styles.css
   ------------------------------------------------------------
   HOW TO EDIT:
   • Colors + type live in :root below. Change them there and the
     whole site updates. Nothing is hard-coded elsewhere.
   • Sections are ordered to match index.html (SECTION 1..12).
   • Discipline: warm neutrals do the work; blue (--glacier/--slate)
     is the one accent family; copper is a small metallic detail only.
   ============================================================ */

/* ------------------------------------------------------------
   1. DESIGN TOKENS (:root variables)
   ------------------------------------------------------------ */
:root {
  /* --- Color palette (Paper / Ink / Peptide Blue; copper = detail only) --- */
  --porcelain: #F5F3EE;   /* Paper — page background */
  --ink: #1A1A18;         /* Ink — text + the transparency card surface */
  --sand: #EAE6DD;        /* quiet warm neutral for image-slot fills */
  --glacier: #C7D6E4;     /* soft tint of Peptide Blue (accents on dark) */
  --slate: #284E74;       /* Peptide Blue — hero accent, links, CTA fill */
  --char: #1A1A18;        /* dark card surface = Ink */
  --copper: #A6712E;      /* Copper — restrained metallic detail ONLY */
  --copper-dark: #8A5D26; /* copper accent on dark backgrounds */
  --muted: #8A8A82;       /* Muted — labels, captions, dividers */

  /* Derived / helper colors (kept minimal, all from the palette) */
  --slate-hover: #33608c;         /* subtle lighter blue for button hover */
  --ink-70: rgba(26, 26, 24, 0.72);
  --ink-55: rgba(26, 26, 24, 0.55);
  --porcelain-70: rgba(245, 243, 238, 0.72);
  --porcelain-55: rgba(245, 243, 238, 0.55);
  --sand-soft: #F0EDE5;           /* lighter neutral for card fills */
  --glacier-soft: #DCE4EC;        /* softer blue tint for placeholder fills */
  --hairline: rgba(26, 26, 24, 0.12);
  --hairline-light: rgba(245, 243, 238, 0.16);

  /* --- Type families --- */
  --font-head: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "Space Mono", "SF Mono", ui-monospace, monospace;

  /* --- Fluid type scale (min, preferred, max) --- */
  --fs-display: clamp(2.9rem, 4.2vw + 1.6rem, 5.5rem); /* hero H1 (76–88px desktop) */
  --fs-h2:      clamp(2rem, 2.4vw + 1.1rem, 3.5rem);   /* section headline (44–56px) */
  --fs-h3:      clamp(1.2rem, 1vw + 0.9rem, 1.5rem);
  --fs-stat:    clamp(3rem, 6vw + 1rem, 5.5rem);       /* big stat numerals */
  --fs-truth:   clamp(2.1rem, 4.5vw + 1rem, 4rem);     /* emotional band */
  --fs-lead:    clamp(1.1rem, 0.6vw + 1rem, 1.3rem);
  --fs-body:    1.0625rem;
  --fs-small:   0.8125rem;

  /* --- Spacing + layout --- */
  --maxw: 1180px;
  --maxw-narrow: 720px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(3.75rem, 9vw, 7.5rem);
  --radius: 5px;
  --radius-lg: 8px;

  /* --- Motion --- */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur: 240ms;
}

/* ------------------------------------------------------------
   2. RESET + BASE
   ------------------------------------------------------------ */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem; /* clears the sticky nav on anchor jumps */
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--porcelain);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--slate); text-decoration-thickness: 1px; text-underline-offset: 2px; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
  font-optical-sizing: auto;
  text-wrap: balance; /* nicer headline line breaks where supported */
}

p { text-wrap: pretty; }

/* ------------------------------------------------------------
   3. LAYOUT HELPERS
   ------------------------------------------------------------ */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--narrow { max-width: var(--maxw-narrow); }

.section { padding-block: var(--section-y); }

.center { text-align: center; }
.center .lead, .center p { margin-inline: auto; }

/* Constrain paragraph measure for readability */
.lead { font-size: var(--fs-lead); color: var(--ink-70); max-width: 60ch; }
.section p { max-width: 62ch; }
.center .lead { max-width: 58ch; }

/* Eyebrow / small label */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.eyebrow--tick { color: var(--copper-dark); }
.eyebrow--tick::before {
  content: "";
  display: inline-block;
  width: 1.6rem;
  height: 1px;
  background: var(--copper);
  vertical-align: middle;
  margin-right: 0.6rem;
}

/* Accessibility utilities */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute;
  left: 1rem; top: -3rem;
  background: var(--slate);
  color: var(--porcelain);
  padding: 0.6rem 1rem;
  border-radius: var(--radius);
  z-index: 100;
  transition: top var(--dur) var(--ease);
}
.skip-link:focus { top: 1rem; }

/* Visible focus ring for keyboard users everywhere */
:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ------------------------------------------------------------
   4. BUTTONS
   ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  letter-spacing: 0.01em;
  padding: 0.95rem 1.6rem;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background-color var(--dur) var(--ease),
              color var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}
.btn--primary {
  background: var(--slate);
  color: var(--porcelain);
  border-color: var(--slate);
}
.btn--primary:hover { background: var(--slate-hover); border-color: var(--slate-hover); }
.btn--secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--secondary:hover { background: var(--ink); color: var(--porcelain); }
.btn--sm { padding: 0.6rem 1.05rem; font-size: 0.85rem; }
.btn--lg { padding: 1.1rem 2.1rem; font-size: 1.05rem; }
.btn:active { transform: translateY(1px); }

/* ------------------------------------------------------------
   5. WORDMARK
   ------------------------------------------------------------ */
.wordmark {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.wordmark__cu { color: var(--copper); }
.wordmark--light { color: var(--porcelain); }

/* ------------------------------------------------------------
   7. STICKY NAV
   ------------------------------------------------------------ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 241, 234, 0.86);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--hairline);
}
.nav__inner {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 0.85rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
}
.nav__menu a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}
.nav__menu a:not(.btn):hover { color: var(--slate); }
/* The menu is 8 items now (Shop All + Wholesale) — squeeze it onto
   one line between the mobile breakpoint and full desktop */
@media (min-width: 821px) and (max-width: 1120px) {
  .nav__menu { gap: 0.7rem; }
  .nav__menu a { font-size: 0.88rem; white-space: nowrap; }
}
.nav__menu .btn { color: var(--porcelain); }

/* Mobile toggle — hidden on desktop */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.nav__toggle-bar {
  display: block;
  width: 24px; height: 2px;
  margin-inline: auto;
  background: var(--ink);
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
/* Animate to an X when open */
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ------------------------------------------------------------
   8. SECTION 1 — HERO
   ------------------------------------------------------------ */
/* Bottle image left, copy right (stacks copy-first on mobile). */
.hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  max-width: var(--maxw);
  margin-inline: auto;
  padding: clamp(2.5rem, 6vw, 6rem) var(--gutter) clamp(3rem, 7vw, 6rem);
}
.hero__media { display: flex; justify-content: center; }
.hero__img {
  max-height: clamp(340px, 46vw, 560px);
  width: auto;
  border-radius: var(--radius-lg);
}
.hero__copy { max-width: 52ch; }
.hero h1 {
  font-size: var(--fs-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.03;
  margin-block: 0.5rem 1.3rem;
}
.hero__deck {
  font-size: clamp(1.15rem, 0.6vw + 1rem, 1.5rem);
  line-height: 1.45;
  color: var(--ink-70);
  max-width: 46ch;
  margin-bottom: 1.4rem;
}
.hero__micro {
  font-family: var(--font-mono);
  font-size: var(--fs-small);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  max-width: 48ch;
  margin-bottom: 2rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.hero__trust {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 1.2rem;
}

/* ------------------------------------------------------------
   9. IMAGE SLOTS (placeholders — see README for how to swap)
   ------------------------------------------------------------ */
.image-slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  padding: 1.5rem;
  background: var(--sand);
  border-radius: var(--radius-lg);
  color: var(--ink-70);
  overflow: hidden;
}
.image-slot__tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--copper-dark);
  border: 1px solid var(--copper);
  border-radius: 2px;
  padding: 0.15rem 0.5rem;
}
.image-slot__label {
  font-family: var(--font-mono);
  font-size: var(--fs-small);
  line-height: 1.5;
  max-width: 32ch;
}
/* Alternating fill so slots feel considered, not empty */
.image-slot--product,
.image-slot--founder { background: var(--glacier-soft); }
.image-slot--dark {
  background: #24211b;
  color: var(--porcelain-70);
}
.image-slot--dark .image-slot__tag { color: var(--copper); border-color: var(--copper-dark); }

/* Aspect ratios per section */
.image-slot--portrait { aspect-ratio: 4 / 5; }
.image-slot--wide     { aspect-ratio: 16 / 9; margin-top: 2.5rem; }
.image-slot--product  { aspect-ratio: 3 / 2; margin-top: 2.5rem; }
.image-slot--square   { aspect-ratio: 1 / 1; }
.image-slot--founder  { aspect-ratio: 4 / 5; }

/* ------------------------------------------------------------
   10. SECTION 2 — THE PROBLEM
   ------------------------------------------------------------ */
.problem h2 { font-size: var(--fs-h2); margin-bottom: 1.3rem; }
.problem .lead { margin-bottom: 1.2rem; }

/* Generic H2 rhythm for centered sections */
.section > .wrap > h2 { font-size: var(--fs-h2); }
.section .lead + .lead,
.section h2 + .lead { margin-top: 1.2rem; }

/* ------------------------------------------------------------
   11. SECTION 2.5 — RESULTS (before / after — show, don't tell)
   ------------------------------------------------------------ */
.results {
  background: var(--sand);
  padding-block: clamp(4rem, 9vw, 7.5rem);
  border-block: 1px solid var(--hairline);
}
.results__title {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: var(--fs-truth);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 20ch;
  margin-inline: auto;
}
.results__sub {
  font-size: var(--fs-lead);
  color: var(--ink-70);
  max-width: 46ch;
  margin: 1.4rem auto 0;
}
.beforeafter {
  margin-top: clamp(2.5rem, 5vw, 3.75rem);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 2rem);
  max-width: 680px;
  margin-inline: auto;
}
.beforeafter__item { margin: 0; }
.beforeafter__item figcaption {
  font-family: var(--font-mono);
  font-size: var(--fs-small);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-70);
  margin-top: 0.85rem;
}
.beforeafter__note {
  display: inline-block;
  color: var(--copper-dark);
  text-transform: none;
  letter-spacing: 0;
}
/* Slots sit on a --sand band, so give them a contrasting fill to read
   as image areas until real before/after photos replace them. */
.beforeafter .image-slot {
  background: var(--glacier-soft);
  border: 1px solid rgba(33, 29, 25, 0.14);
}

/* ------------------------------------------------------------
   12. SECTION 3 — THE FIX (product + 3 columns)
   ------------------------------------------------------------ */
.fix h2 { font-size: var(--fs-h2); margin-bottom: 1.1rem; }
.fix .image-slot--product { max-width: 760px; margin-inline: auto; }
.cols {
  list-style: none;
  padding: 0;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3.5vw, 3rem);
  text-align: left;
}
.col {
  padding-top: 1.4rem;
  border-top: 2px solid var(--copper);
}
.col h3 { font-size: var(--fs-h3); margin-bottom: 0.6rem; }
.col p { color: var(--ink-70); max-width: none; }

/* ------------------------------------------------------------
   13. SECTION 4 — THE DOSE DISCLOSURE (spec card)
   ------------------------------------------------------------ */
.dose { background: var(--porcelain); }
.spec-card {
  background: var(--char);
  color: var(--porcelain);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 4vw, 2.8rem);
  max-width: 620px;
  margin: 1.5rem auto 0;
  text-align: left;
  box-shadow: 0 24px 60px -30px rgba(22, 20, 15, 0.55);
  border: 1px solid rgba(188, 123, 76, 0.25);
}
.spec { font-family: var(--font-mono); font-size: 0.95rem; }
.spec__row {
  display: grid;
  grid-template-columns: 8.5rem 1fr;
  gap: 0.75rem;
  padding: 0.7rem 0;
  border-bottom: 1px dashed var(--hairline-light);
}
.spec__row:last-child { border-bottom: 0; }
.spec dt {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: var(--porcelain-55);
  padding-top: 0.1rem;
}
.spec dd { margin: 0; color: var(--porcelain); }
.spec__row--flag dd { color: var(--glacier); }
.spec__verify {
  background: rgba(188, 123, 76, 0.18);
  border: 1px solid var(--copper-dark);
  color: var(--copper);
  padding: 0.1rem 0.4rem;
  border-radius: 2px;
}
.spec__note {
  display: inline-block;
  color: var(--porcelain-55);
  font-size: 0.8rem;
  margin-left: 0.3rem;
}
.dose__caption {
  font-size: var(--fs-small);
  color: var(--ink-70);
  max-width: 52ch;
  margin: 1.4rem auto 0;
}

/* ------------------------------------------------------------
   14. SECTION 5 — THE SCIENCE (dark, full-bleed)
   ------------------------------------------------------------ */
.science {
  background: var(--char);
  color: var(--porcelain);
}
.science__h2 {
  font-size: var(--fs-h2);
  max-width: 20ch;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--porcelain);
}
.beats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.75rem, 4vw, 3.25rem);
}
.beat h3 {
  font-size: var(--fs-h3);
  color: var(--porcelain);
  margin-bottom: 0.7rem;
  padding-top: 1rem;
  border-top: 1px solid var(--copper-dark);
}
.beat p { color: var(--porcelain-70); max-width: none; }

/* Big stat callouts */
.stats {
  list-style: none;
  padding: 0;
  margin-block: clamp(3rem, 6vw, 4.5rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  border-block: 1px solid var(--hairline-light);
  padding-block: clamp(2rem, 4vw, 3rem);
  text-align: center;
}
.stat { display: flex; flex-direction: column; gap: 0.4rem; }
.stat__num {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: var(--fs-stat);
  line-height: 1;
  color: var(--copper);
  letter-spacing: -0.02em;
}
.stat__label {
  font-family: var(--font-mono);
  font-size: var(--fs-small);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--porcelain-70);
}
.science__close {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-style: italic;
  font-weight: 400;
  color: var(--porcelain);
  max-width: 24ch;
  margin-top: clamp(3rem, 6vw, 4.5rem);
}

/* ------------------------------------------------------------
   15. SECTION 6 — WHY IT'S BLUE
   ------------------------------------------------------------ */
.blue {
  background: var(--glacier);
  color: var(--ink);
}
.blue h2 { font-size: var(--fs-h2); margin-bottom: 1.1rem; }
.blue .lead { color: rgba(33, 29, 25, 0.78); }

/* ------------------------------------------------------------
   16. SECTION 7 — HOW TO USE (3 steps)
   ------------------------------------------------------------ */
.howto h2 { font-size: var(--fs-h2); margin-bottom: clamp(2rem, 4vw, 3rem); }
.steps {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3.5vw, 3rem);
  text-align: left;
}
.step { display: flex; flex-direction: column; align-items: flex-start; }
.step__num {
  font-family: var(--font-mono);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--slate);
  padding-bottom: 0.6rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--copper);
}
.step h3 { font-size: var(--fs-h3); margin-bottom: 0.5rem; }
.step p { color: var(--ink-70); max-width: none; }

.callout {
  background: var(--sand-soft);
  border-left: 3px solid var(--copper);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  margin: clamp(2.5rem, 5vw, 3.5rem) auto 0;
  max-width: 60ch;
  text-align: left;
  color: var(--ink-70);
  font-size: 0.98rem;
}
.callout__tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper-dark);
  margin-right: 0.5rem;
  font-weight: 600;
}

/* ------------------------------------------------------------
   17. SECTION 8 — REVIEWS
   ------------------------------------------------------------ */
.reviews h2 { font-size: var(--fs-h2); margin-bottom: 1.1rem; }
.review-cards {
  list-style: none;
  padding: 0;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  text-align: left;
}
.review-card {
  background: var(--porcelain);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.review-card__stars { color: var(--copper); letter-spacing: 0.15em; font-size: 1rem; }
.review-card__quote {
  font-family: var(--font-head);
  font-size: 1.15rem;
  line-height: 1.4;
  font-weight: 400;
  border: 0;
  margin: 0;
  color: var(--ink);
}
.review-card__name {
  font-family: var(--font-mono);
  font-size: var(--fs-small);
  color: var(--ink-55);
  margin-top: auto;
}
.ugc-strip {
  margin-top: clamp(1.25rem, 3vw, 2rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.75rem, 2vw, 1.25rem);
}

/* ------------------------------------------------------------
   18. SECTION 9 — FOUNDER NOTE
   ------------------------------------------------------------ */
.founder { background: var(--sand); }
.founder__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}
.founder__letter h2 { font-size: var(--fs-h2); margin-bottom: 1.2rem; }
.founder__letter p { color: rgba(33, 29, 25, 0.8); margin-bottom: 1rem; }
.founder__sign {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--ink);
  margin-top: 0.5rem;
}
.founder .image-slot--founder { max-width: 340px; }

/* ------------------------------------------------------------
   19. SECTION 10 — GUARANTEE (badge)
   ------------------------------------------------------------ */
.badge {
  border: 2px solid var(--copper);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3rem);
  max-width: 640px;
  margin-inline: auto;
  position: relative;
}
.badge::before {
  content: "60";
  position: absolute;
  top: -1.1rem; left: 50%;
  transform: translateX(-50%);
  background: var(--porcelain);
  padding-inline: 0.8rem;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: var(--copper-dark);
}
.badge h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); margin-bottom: 0.8rem; }
.badge p { color: var(--ink-70); }

/* ------------------------------------------------------------
   20. SECTION 11 — FAQ ACCORDION
   ------------------------------------------------------------ */
.faq h2 { font-size: var(--fs-h2); margin-bottom: clamp(2rem, 4vw, 3rem); }
.accordion { list-style: none; padding: 0; }
.accordion__item { border-top: 1px solid var(--hairline); }
.accordion__item:last-child { border-bottom: 1px solid var(--hairline); }
.accordion__heading { margin: 0; }
.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem 0.25rem;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 1.4vw, 1.3rem);
  font-weight: 500;
  color: var(--ink);
  transition: color var(--dur) var(--ease);
}
.accordion__trigger:hover { color: var(--slate); }

/* Plus/minus icon drawn in CSS */
.accordion__icon {
  position: relative;
  flex: 0 0 auto;
  width: 18px; height: 18px;
}
.accordion__icon::before,
.accordion__icon::after {
  content: "";
  position: absolute;
  background: var(--copper-dark);
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.accordion__icon::before { top: 8px; left: 0; width: 18px; height: 2px; }        /* horizontal */
.accordion__icon::after  { left: 8px; top: 0; width: 2px; height: 18px; }         /* vertical */
.accordion__trigger[aria-expanded="true"] .accordion__icon::after { transform: scaleY(0); opacity: 0; }

.accordion__panel {
  overflow: hidden;
  /* height is animated inline via script.js for a smooth open/close.
     When JS is unavailable, the [hidden] attribute still fully hides
     the panel (UA display:none), so content never gets stranded. */
  transition: height var(--dur) var(--ease);
}
.accordion__panel > p {
  padding: 0 0.25rem 1.5rem;
  color: var(--ink-70);
  max-width: 68ch;
}

/* ------------------------------------------------------------
   21. SECTION 12a — FINAL CTA
   ------------------------------------------------------------ */
.final-cta { background: var(--porcelain); }
.final-cta h2 { font-size: var(--fs-h2); margin-bottom: 1.1rem; }
.final-cta .lead { margin-bottom: 2rem; }

/* ------------------------------------------------------------
   22. SECTION 12b — FOOTER
   ------------------------------------------------------------ */
.footer {
  background: var(--char);
  color: var(--porcelain-70);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--hairline-light);
}
.footer__tag {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--porcelain);
  margin-top: 0.8rem;
  max-width: 30ch;
}
.footer__nav { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__nav h4 {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--porcelain-55);
  margin-bottom: 0.3rem;
}
.footer__nav a {
  color: var(--porcelain-70);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color var(--dur) var(--ease);
}
.footer__nav a:hover { color: var(--glacier); }
.footer__legal { padding-top: 2rem; display: flex; flex-direction: column; gap: 0.8rem; }
.footer__disclaimer {
  font-size: var(--fs-small);
  color: var(--porcelain-55);
  max-width: 80ch;
  line-height: 1.6;
}
.footer__copy { font-size: var(--fs-small); color: var(--porcelain-55); }

/* ------------------------------------------------------------
   23. RESPONSIVE — TABLET (<= 820px)
   ------------------------------------------------------------ */
@media (max-width: 820px) {
  /* Collapse nav into a toggle menu */
  .nav__toggle { display: flex; }
  .nav__menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--porcelain);
    border-bottom: 1px solid var(--hairline);
    padding: 0.5rem var(--gutter) 1.25rem;
    box-shadow: 0 20px 40px -24px rgba(22, 20, 15, 0.4);
    /* hidden by default; toggled open via [data-open] */
    display: none;
  }
  .nav__menu[data-open="true"] { display: flex; }
  .nav__menu a { padding: 0.85rem 0; border-bottom: 1px solid var(--hairline); }
  .nav__menu .btn { margin-top: 0.9rem; justify-content: center; border-bottom: 0; }

  /* Hero stacks; copy first on mobile per the page spec */
  .hero { grid-template-columns: 1fr; }
  .hero__copy { max-width: none; order: 1; }
  .hero__media { order: 2; }
  .hero__deck { max-width: none; }

  /* Two-up grids collapse */
  .beats { grid-template-columns: 1fr; }
  .founder__grid { grid-template-columns: 1fr; }
  .founder .image-slot--founder { max-width: 280px; }

  /* Product hero: gallery + purchase panel stack (no more 2-col overflow) */
  .buy__grid { grid-template-columns: 1fr; }
  .buy__grid > * { min-width: 0; }
  .gallery { position: static; top: auto; }
  .buy__panel { max-width: none; }
}

/* ------------------------------------------------------------
   24. RESPONSIVE — MOBILE (<= 620px)
   ------------------------------------------------------------ */
@media (max-width: 620px) {
  .cols { grid-template-columns: 1fr; gap: 2rem; }
  .stats { grid-template-columns: 1fr; gap: 2rem; text-align: left; }
  .stat { align-items: flex-start; }
  .steps { grid-template-columns: 1fr; gap: 2.25rem; }
  .review-cards { grid-template-columns: 1fr; }
  .ugc-strip { grid-template-columns: repeat(2, 1fr); }
  .spec__row { grid-template-columns: 1fr; gap: 0.15rem; }
  .spec dt { padding-top: 0; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero__actions .btn { flex: 1 1 auto; justify-content: center; }
}

/* ------------------------------------------------------------
   25. REDUCED MOTION — respect user preference
   ------------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ------------------------------------------------------------
   26. BUY AREA + LIFESTYLE BANNER (product purchase block)
   Self-contained (base + responsive) so it's easy to find/edit.
   ------------------------------------------------------------ */

/* --- Buy area layout: gallery (left) + purchase panel (right) --- */
.buy__grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

/* --- Product gallery: 5 slots (Photo 1–5) + a large viewer --- */
.gallery { position: sticky; top: 5.5rem; }
.image-slot--gallery { aspect-ratio: 1 / 1; }
.gallery__thumbs {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}
.gallery__thumb {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: var(--radius);
}
.image-slot--thumb {
  aspect-ratio: 1 / 1;
  padding: 0.35rem;
  gap: 0;
  border: 2px solid transparent;
  transition: border-color var(--dur) var(--ease);
}
.image-slot--thumb .image-slot__label { font-size: 0.62rem; }
.gallery__thumb:hover .image-slot--thumb { border-color: var(--copper); }
.gallery__thumb.is-active .image-slot--thumb { border-color: var(--slate); }

/* --- Persuasion carousel (buy area): each slide does one selling job.
   Scoped to .gallery--persuasion so shop-page card galleries are unaffected. --- */
.gallery--persuasion .image-slot--gallery { position: relative; overflow: hidden; }
/* Photo slides show a clean image — no dark scrim, no overlaid caption.
   Only the text-only slides (risk reversal, testimonials) render their caption. */
.gallery__caption {
  display: none;
  color: #fff;
}
.gallery__eyebrow {
  margin: 0 0 0.45rem;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
}
.gallery__cap-text {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.42;
  max-width: 36ch;
}
/* Text-only slides (risk reversal, testimonials): no photo, dark card */
.image-slot--gallery.is-text { background: var(--char); }
.image-slot--gallery.is-text .gallery__caption {
  display: flex;
  position: static;
  height: 100%;
  background: none;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.6rem, 4vw, 2.6rem);
}
.image-slot--gallery.is-text .gallery__cap-text {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  line-height: 1.28;
  max-width: 24ch;
}

/* Thumb strip: 6 scannable purpose-boxes in a scrollable row */
.gallery--persuasion .gallery__thumbs {
  display: flex;
  grid-template-columns: none;
  gap: 0.55rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}
.gallery--persuasion .gallery__thumb {
  flex: 0 0 5.6rem;
  width: 5.6rem;
  scroll-snap-align: start;
}
.gallery__thumb-glyph {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--porcelain);
}
.gallery--persuasion .gallery__thumb[data-variant="text"] .image-slot--thumb {
  background: var(--char);
  border-color: transparent;
}
.gallery__thumb-label {
  display: block;
  margin-top: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-align: center;
  color: var(--ink-55);
}
.gallery__thumb.is-active .gallery__thumb-label { color: var(--ink); }

/* --- Purchase panel --- */
.buy__panel { max-width: 34rem; }
.buy__panel h1 {
  font-size: clamp(2.1rem, 3vw + 1.1rem, 2.9rem);
  margin: 0.2rem 0 0.6rem;
}
.buy__desc { color: var(--ink-70); margin-bottom: 1.3rem; }

/* --- Purchase options: subscribe vs one-time --- */
.buy__purchase {
  border: 0;
  padding: 0;
  margin: 0 0 1.3rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
.buy__option {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 0.9rem 1rem;
  cursor: pointer;
  transition: border-color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.buy__option:hover { border-color: var(--slate); }
.buy__option.is-selected {
  border-color: var(--slate);
  background: var(--glacier-soft);
}
.buy__option input[type="radio"] { margin-top: 0.3rem; accent-color: var(--slate); flex-shrink: 0; }
.buy__option-content { display: flex; flex-direction: column; gap: 0.3rem; }
.buy__option-top { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.buy__option-name { font-weight: 600; font-size: 0.95rem; color: var(--ink); }
.buy__option-badge {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper-dark);
  background: rgba(188, 123, 76, 0.12);
  border: 1px solid rgba(188, 123, 76, 0.4);
  border-radius: 3px;
  padding: 0.1em 0.45em;
}
.buy__option-price { font-family: var(--font-mono); margin: 0; }
.buy__option-amount { font-size: 1.15rem; font-weight: 600; color: var(--ink); }
.buy__option-unit { color: var(--ink-55); font-size: 0.82rem; }
.buy__option-note { font-size: 0.78rem; color: var(--ink-55); }

.buy__chips {
  list-style: none; padding: 0; margin: 0 0 1.4rem;
  display: flex; flex-wrap: wrap; gap: 0.5rem;
}
.buy__chips li {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-70);
  border: 1px solid var(--hairline);
  border-radius: 100px;
  padding: 0.3rem 0.7rem;
}
.buy__cta { width: 100%; justify-content: center; }
.buy__reassure {
  font-size: var(--fs-small);
  color: var(--ink-55);
  text-align: center;
  margin: 0.7rem 0 0;
}

/* Product-info accordions inside the buy panel */
.accordion--info { margin-top: 1.75rem; }
.benefit-list {
  list-style: none;
  padding: 0 0.25rem 1.5rem;
  margin: 0;
  display: grid;
  gap: 0.55rem;
}
.benefit-list li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--ink-70);
}
.benefit-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.5em;
  width: 0.5rem; height: 0.5rem;
  border: 1.5px solid var(--copper);
  border-radius: 50%;
}

/* --- Lifestyle banner (full-bleed photo + headline) --- */
.banner {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  align-items: stretch;
  background: linear-gradient(115deg, var(--porcelain) 42%, var(--glacier-soft));
}
.banner__media {
  border-radius: 0;
  min-height: clamp(320px, 38vw, 460px);
}
/* Banner shot is a tall portrait cropped into a short wide panel — bias the
   crop upward so her eyes/face stay in frame instead of the default center
   landing on the mouth/neck. */
.banner__media .slot-img { object-position: center 28%; }
.banner__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1.6rem;
  padding: clamp(2rem, 5vw, 4rem);
}
.banner__title {
  font-size: clamp(2rem, 3.5vw + 1rem, 3.4rem);
  line-height: 1.05;
  max-width: 13ch;
}

/* --- Buy area + banner: responsive --- */
@media (max-width: 820px) {
  .buy__grid { grid-template-columns: 1fr; }
  .gallery { position: static; }
  .buy__panel { max-width: none; }
  .banner { grid-template-columns: 1fr; }
  .banner__media { min-height: clamp(240px, 55vw, 360px); }
}
@media (max-width: 480px) {
  .buy__purchase { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------
   27. CREDIBILITY SECTIONS (trust bar, press, lab/COA, research,
   comparison, cold chain, ingredients, certs, signup, buy bar)
   Self-contained; responsive rules at the end of this block.
   ------------------------------------------------------------ */

/* Small "[VERIFY]" chip reused across sections */
.verify-chip {
  font-family: var(--font-mono);
  font-size: 0.72em;
  color: var(--copper-dark);
  background: rgba(188, 123, 76, 0.12);
  border: 1px solid rgba(188, 123, 76, 0.4);
  border-radius: 3px;
  padding: 0.05em 0.4em;
  white-space: nowrap;
}

/* --- Trust bar --- */
.trustbar { background: var(--char); color: var(--porcelain); }
.trustbar__list {
  list-style: none; margin: 0 auto; padding: 1.4rem var(--gutter);
  max-width: var(--maxw);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.trustbar__item {
  display: flex; flex-direction: column; gap: 0.15rem;
  padding-left: 1rem; border-left: 2px solid var(--copper-dark);
}
.trustbar__title { font-weight: 600; font-size: 0.98rem; }
.trustbar__sub { font-size: var(--fs-small); color: var(--porcelain-55); }

/* --- Buy area additions --- */
.buy__rating {
  font-size: var(--fs-small);
  color: var(--ink-55);
  margin: 0 0 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.buy__stars { color: var(--copper); letter-spacing: 0.1em; }
.buy__rating-score { font-weight: 600; color: var(--ink); }
.buy__rating-count { color: var(--ink-55); text-decoration: underline; text-underline-offset: 2px; }
.buy__rating-count:hover { color: var(--ink); }
/* the `display` above overrides the [hidden] attribute's display:none — restore it */
.buy__rating[hidden] { display: none; }

/* Top-of-panel rating bar (MOCKUP — flagged on-page) */
.buy__ratingbar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  font-size: var(--fs-small);
  margin: 0 0 0.75rem;
}
.buy__ratingbar-stars { color: var(--copper); letter-spacing: 0.08em; font-size: 1rem; }
.buy__ratingbar-score { font-weight: 700; color: var(--ink); }
.buy__ratingbar-count { color: var(--ink-55); }
.buy__ratingbar-mock {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: #c0392b;
  letter-spacing: 0.02em;
}

/* Reviews aggregate summary (SAMPLE data) */
.reviews__summary {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.4rem;
  text-align: left;
}
.reviews__avg {
  font-family: var(--font-head);
  font-size: 2.6rem;
  line-height: 1;
  color: var(--ink);
  margin: 0;
}
.reviews__avg-stars { color: var(--copper); letter-spacing: 0.12em; font-size: 1.05rem; margin: 0 0 0.15rem; }
.reviews__avg-count { font-family: var(--font-mono); font-size: var(--fs-small); color: var(--ink-55); margin: 0; }
.buy__payments {
  list-style: none; padding: 0; margin: 0.9rem 0 0;
  display: flex; flex-wrap: wrap; gap: 0.4rem; justify-content: center;
}
.buy__payments li {
  font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--ink-55);
  border: 1px solid var(--hairline); border-radius: 3px; padding: 0.25rem 0.5rem;
}

/* --- Dose: COA download --- */
.coa-actions { margin-top: 1.6rem; }

/* --- Lab / batch testing --- */
.lab { background: var(--sand); }
.lab__grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.lab__grid h2 { font-size: var(--fs-h2); margin-bottom: 1rem; }
.lab__grid > div > p { color: rgba(33, 29, 25, 0.8); }
.image-slot--lab { aspect-ratio: 4 / 5; }
.lab__points { list-style: none; padding: 0; margin: 1.4rem 0 0; display: grid; gap: 0.9rem; }
.lab__points li {
  padding-left: 1.4rem; position: relative; color: rgba(33, 29, 25, 0.8); max-width: none;
}
.lab__points li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 0.5rem; height: 0.5rem; border-radius: 50%; background: var(--copper);
}
.lab__points strong { color: var(--ink); }
.batch { margin-top: 1.75rem; }
.batch__label {
  display: block; font-family: var(--font-mono); font-size: var(--fs-small);
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-70); margin-bottom: 0.5rem;
}
.batch__row { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.batch__row input {
  flex: 1 1 12rem; min-width: 0; font-family: var(--font-mono); font-size: 0.95rem;
  padding: 0.85rem 1rem; border: 1.5px solid var(--ink); border-radius: var(--radius);
  background: var(--porcelain); color: var(--ink);
}
.batch__row input:focus-visible { outline: 2px solid var(--copper); outline-offset: 2px; }
.batch__msg { margin: 0.8rem 0 0; font-size: 0.92rem; color: var(--ink-70); min-height: 1.2em; max-width: none; }
.batch__msg.is-error { color: var(--copper-dark); }
.batch__msg.is-info { color: var(--slate); }

/* --- Research library --- */
.research__list {
  list-style: none; padding: 0; margin: clamp(2rem, 4vw, 2.75rem) 0 0; display: grid; gap: 0;
  counter-reset: none;
}
.research__item {
  display: grid; grid-template-columns: 5.5rem 1fr; gap: 1.25rem;
  padding: 1.2rem 0; border-top: 1px solid var(--hairline); align-items: baseline;
}
.research__item:last-of-type { border-bottom: 1px solid var(--hairline); }
.research__year {
  font-family: var(--font-head); font-size: 1.5rem; color: var(--copper-dark); font-weight: 500;
}
.research__what { margin: 0 0 0.35rem; color: var(--ink); max-width: none; }
.research__cite {
  font-family: var(--font-mono); font-size: var(--fs-small); color: var(--copper-dark);
}
.research__disclaimer { font-size: var(--fs-small); color: var(--ink-55); margin-top: 1.5rem; }

/* --- Comparison table --- */
.compare h2 { font-size: var(--fs-h2); margin-bottom: clamp(1.5rem, 3vw, 2.5rem); max-width: 24ch; margin-inline: auto; }
.compare__scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare__table {
  width: 100%; border-collapse: collapse; min-width: 520px; margin-inline: auto;
  text-align: left; font-size: 0.98rem;
}
.compare__table th, .compare__table td {
  padding: 0.95rem 1.1rem; border-bottom: 1px solid var(--hairline); vertical-align: top;
}
.compare__table thead th { font-family: var(--font-body); font-weight: 600; font-size: 0.9rem; }
.compare__table tbody th { font-weight: 500; color: var(--ink); }
.compare__table td { color: var(--ink-70); }
.compare__us { background: rgba(166, 198, 214, 0.18); }
th.compare__us { color: var(--slate); }
.compare__table td.compare__us { color: var(--ink); font-weight: 500; }
.tick { color: #2f6d4f; font-weight: 700; }
.cross { color: var(--copper-dark); font-weight: 700; }
.compare__note { font-size: var(--fs-small); color: var(--ink-55); margin-top: 1.2rem; }

/* --- Cold chain --- */
.coldchain__grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.coldchain__grid h2 { font-size: var(--fs-h2); margin-bottom: 1rem; }
.coldchain__grid > div > p { color: var(--ink-70); }
.coldchain__steps { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: 1rem; }
.coldchain__steps li { display: flex; gap: 1rem; align-items: flex-start; }
.coldchain__steps > li > div { color: var(--ink-70); }
.coldchain__steps strong { color: var(--ink); }
.coldchain__num {
  flex: 0 0 auto; width: 2rem; height: 2rem; display: grid; place-items: center;
  font-family: var(--font-mono); font-size: 0.85rem; color: var(--copper-dark);
  border: 1.5px solid var(--copper); border-radius: 50%;
}
.image-slot--cold { aspect-ratio: 4 / 5; }

/* --- Ingredients / INCI --- */
.ingredients h2 { font-size: var(--fs-h2); margin-bottom: 1rem; }
.inci {
  margin-top: clamp(1.5rem, 3vw, 2.25rem); background: var(--sand-soft);
  border: 1px solid var(--hairline); border-radius: var(--radius-lg); padding: clamp(1.4rem, 3vw, 2rem);
}
.inci__heading {
  font-family: var(--font-mono); font-size: var(--fs-small); letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--ink-70); margin-bottom: 0.7rem;
}
.inci__list { font-family: var(--font-mono); font-size: 0.92rem; line-height: 1.7; color: var(--ink); max-width: none; }
.inci__flags { list-style: none; padding: 0; margin: 1.2rem 0 0; display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; }
.inci__flags li { font-size: 0.9rem; color: var(--ink-70); }
.inci__flags strong { color: var(--ink); }
.inci__note { font-size: var(--fs-small); color: var(--ink-55); margin-top: 1rem; }

/* --- Certifications --- */
.certs__h2 { font-size: var(--fs-h2); margin-bottom: clamp(1.75rem, 4vw, 2.75rem); }
.certs__list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.25rem, 3vw, 2rem);
}
.cert { display: flex; flex-direction: column; align-items: center; gap: 0.8rem; }
.image-slot--badge { width: 4.5rem; height: 4.5rem; border-radius: 50%; padding: 0.5rem; }
.image-slot--badge .image-slot__label { font-size: 0.55rem; }
.cert__label { font-size: 0.9rem; color: var(--ink-70); }

/* --- Newsletter signup --- */
.signup { background: var(--glacier); }
.signup h2 { font-size: var(--fs-h2); margin-bottom: 0.9rem; }
.signup .lead { color: rgba(33, 29, 25, 0.78); }
.signup__form {
  display: flex; gap: 0.6rem; flex-wrap: wrap; justify-content: center;
  max-width: 30rem; margin: 1.8rem auto 0;
}
.signup__form input {
  flex: 1 1 15rem; min-width: 0; font-family: var(--font-body); font-size: 1rem;
  padding: 0.9rem 1.1rem; border: 1.5px solid var(--ink); border-radius: var(--radius);
  background: var(--porcelain); color: var(--ink);
}
.signup__form input:focus-visible { outline: 2px solid var(--slate); outline-offset: 2px; }
.signup__msg { min-height: 1.2em; margin: 0.9rem auto 0; font-size: 0.92rem; }
.signup__msg.is-error { color: var(--copper-dark); }
.signup__msg.is-ok { color: var(--slate); font-weight: 600; }
.signup__fine { font-size: var(--fs-small); color: rgba(33, 29, 25, 0.55); margin-top: 1rem; }

/* --- Footer extensions --- */
.footer__grid { grid-template-columns: 1.7fr 1fr 1fr 1.1fr 0.8fr; }
.footer__contact { font-size: var(--fs-small); color: var(--porcelain-70); margin-top: 0.9rem; line-height: 1.7; }
.footer__contact a { color: var(--porcelain-70); }
.footer__social { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__social h4 {
  font-family: var(--font-mono); font-size: 0.75rem; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--porcelain-55); margin-bottom: 0.3rem;
}
.footer__social a { color: var(--porcelain-70); text-decoration: none; font-size: 0.95rem; }
.footer__social a:hover { color: var(--glacier); }
.footer__pay {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  padding: 1.5rem 0; border-bottom: 1px solid var(--hairline-light); margin-top: 0.5rem;
}
.footer__pay-label {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--porcelain-55);
}
.footer__pay-list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 0.4rem; }
.footer__pay-list li {
  font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--porcelain-70); border: 1px solid var(--hairline-light); border-radius: 3px; padding: 0.25rem 0.5rem;
}

/* --- Sticky buy bar --- */
.buybar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  background: rgba(22, 20, 15, 0.96);
  backdrop-filter: saturate(140%) blur(8px); -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-top: 1px solid var(--hairline-light);
  transform: translateY(110%); transition: transform var(--dur) var(--ease);
}
.buybar.is-visible { transform: translateY(0); }
.buybar__inner {
  max-width: var(--maxw); margin-inline: auto; padding: 0.7rem var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.buybar__info { display: flex; flex-direction: column; line-height: 1.2; color: var(--porcelain); min-width: 0; }
.buybar__name { font-size: 0.9rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.buybar__price { font-family: var(--font-mono); font-size: 0.8rem; color: var(--porcelain-70); }
.buybar__cta { flex: 0 0 auto; }

/* --- Credibility sections: responsive --- */
@media (max-width: 820px) {
  .lab__grid { grid-template-columns: 1fr; }
  .coldchain__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 620px) {
  .trustbar__list { grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
  .certs__list { grid-template-columns: repeat(2, 1fr); }
  .research__item { grid-template-columns: 4rem 1fr; gap: 0.9rem; }
  .footer__grid { grid-template-columns: 1fr; }
  .buybar__name { max-width: 48vw; }
}
@media (prefers-reduced-motion: reduce) {
  .buybar { transition: none; }
}

/* ------------------------------------------------------------
   28. BUY-AREA DOSE DISCLOSURE PANEL (0.2% active explainer)
   ------------------------------------------------------------ */
.dose-note {
  margin: 0 0 1.4rem;
  padding: 1.1rem 1.25rem;
  background: rgba(166, 198, 214, 0.16);
  border: 1px solid var(--hairline);
  border-left: 3px solid var(--slate);
  border-radius: var(--radius);
}
.dose-note__stat {
  display: flex; align-items: baseline; gap: 0.55rem;
  font-family: var(--font-mono); font-size: 0.9rem; letter-spacing: 0.02em;
  color: var(--ink); margin: 0 0 0.6rem;
}
.dose-note__num {
  font-family: var(--font-head); font-weight: 600; font-size: 1.9rem;
  line-height: 1; color: var(--slate);
}
.dose-note__body { font-size: 0.9rem; color: var(--ink-70); margin: 0 0 0.55rem; max-width: none; }
.dose-note__body:last-child { margin-bottom: 0; }
.dose-note__body strong { color: var(--ink); }

/* Spec card: real concentration value (replaces the old [VERIFY] chip) */
.spec__conc { font-weight: 600; font-size: 1.05em; }

/* ------------------------------------------------------------
   29. PERSUASION / FRAMING SECTIONS
   (economics of underdosing, the real math, decision fork,
   per-day price line, final-CTA proof row, buybar chip)
   ------------------------------------------------------------ */

/* --- 2.2 Why they underdose --- */
.economics { border-top: 1px solid var(--hairline); }
.economics h2 { font-size: var(--fs-h2); max-width: 22ch; margin-inline: auto; margin-bottom: 1.1rem; }
.economics__cards {
  list-style: none; padding: 0;
  margin-top: clamp(2.5rem, 5vw, 3.75rem);
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3.5vw, 3rem);
  text-align: left;
}
.economics__card { padding-top: 1.3rem; border-top: 2px solid var(--copper); }
.economics__num {
  font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.14em;
  color: var(--copper-dark); display: block; margin-bottom: 0.7rem;
}
.economics__card h3 { font-size: var(--fs-h3); margin-bottom: 0.55rem; }
.economics__card p { color: var(--ink-70); max-width: none; }
.economics__close {
  font-family: var(--font-head); font-style: italic; font-weight: 400;
  font-size: clamp(1.25rem, 2vw, 1.6rem); line-height: 1.35;
  max-width: 34ch; margin: clamp(2.5rem, 5vw, 3.5rem) auto 0;
}

/* --- 6.7 The real math --- */
.math { background: var(--sand); border-block: 1px solid var(--hairline); }
.math h2 { font-size: var(--fs-h2); max-width: 22ch; margin-inline: auto; margin-bottom: 1.1rem; }
.math .lead { color: rgba(33, 29, 25, 0.75); }
.math__stats {
  list-style: none; padding: 0;
  margin: clamp(2.5rem, 5vw, 3.75rem) 0 0;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.math__stat { display: flex; flex-direction: column; gap: 0.5rem; align-items: center; }
.math__num {
  font-family: var(--font-head); font-weight: 500;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem); line-height: 1;
  color: var(--slate); letter-spacing: -0.02em;
}
.math__label { font-size: 0.9rem; color: rgba(33, 29, 25, 0.72); max-width: 26ch; }
.math__body {
  color: rgba(33, 29, 25, 0.8); max-width: 58ch;
  margin: clamp(2.25rem, 4.5vw, 3.25rem) auto 0;
}

/* --- 11.8 Decision fork --- */
.fork h2 { font-size: var(--fs-h2); margin-bottom: clamp(2rem, 4.5vw, 3.25rem); }
.fork__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 3vw, 2rem);
  max-width: 920px; margin-inline: auto;
  align-items: stretch;
}
.fork__card {
  border: 1px solid var(--hairline); border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3.5vw, 2.4rem);
  display: flex; flex-direction: column;
}
.fork__card h3 { font-size: var(--fs-h3); margin-bottom: 1.1rem; }
.fork__card--go {
  background: var(--char); color: var(--porcelain);
  border-color: var(--char);
  box-shadow: 0 24px 60px -30px rgba(22, 20, 15, 0.55);
}
.fork__card--go h3 { color: var(--porcelain); }
.fork__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.75rem; }
.fork__list li {
  position: relative; padding-left: 1.35rem;
  color: var(--ink-70); font-size: 0.98rem; max-width: none;
}
.fork__list li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 0.45rem; height: 0.45rem; border-radius: 50%;
  border: 1.5px solid var(--ink-55);
}
.fork__card--go .fork__list li { color: var(--porcelain-70); }
.fork__card--go .fork__list li::before { border-color: var(--copper); background: rgba(188, 123, 76, 0.25); }
.fork__cta { margin-top: 1.6rem; justify-content: center; }


/* --- Final CTA proof row --- */
.final-cta__proof {
  font-family: var(--font-mono); font-size: var(--fs-small);
  letter-spacing: 0.04em; color: var(--ink-55);
  margin-top: 1.4rem;
}

/* --- Buybar dose chip --- */
.buybar__chip {
  display: inline-block; vertical-align: middle;
  font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--glacier);
  border: 1px solid rgba(166, 198, 214, 0.45); border-radius: 3px;
  padding: 0.12rem 0.4rem; margin-left: 0.5rem;
}

/* --- Persuasion sections: responsive --- */
@media (max-width: 820px) {
  .fork__grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .economics__cards { grid-template-columns: 1fr; gap: 2rem; }
  .math__stats { grid-template-columns: 1fr; gap: 2rem; }
  .math__stat { align-items: flex-start; text-align: left; }
  .math__label { max-width: none; }
  .buybar__chip { display: none; }
}

/* ------------------------------------------------------------
   30. REAL IMAGES, HERO TRANSFORMATION, PRODUCT-KEY BUTTON,
   "THE LIE" STRIP, and the PRODUCT MODAL
   ------------------------------------------------------------ */

/* Any placeholder slot can now hold a real <img class="slot-img">.
   If the file is missing, inline onerror removes the img and the
   labeled placeholder shows through. */
.image-slot { position: relative; }
.slot-img {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* Hero before/after transformation */
.hero__transformation { margin: 0; }
.image-slot--transformation { aspect-ratio: 1 / 1; }
.hero__transformation-cap {
  margin-top: 0.7rem; text-align: center;
  font-family: var(--font-mono); font-size: var(--fs-small); color: var(--ink-55);
}

/* Product-key button — the bottle photo IS the button (opens the modal) */
.product-key {
  display: inline-flex; align-items: center; gap: 0.85rem;
  margin-top: 1.6rem; padding: 0.4rem 1.1rem 0.4rem 0.4rem;
  background: var(--porcelain); border: 1px solid var(--hairline);
  border-radius: 100px; cursor: pointer; text-align: left;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.product-key:hover { border-color: var(--slate); transform: translateY(-1px); box-shadow: 0 14px 30px -20px rgba(22,20,15,0.55); }
.product-key__thumb {
  position: relative; flex: 0 0 auto; width: 3rem; height: 3rem;
  border-radius: 50%; overflow: hidden; background: var(--glacier);
  display: grid; place-items: center;
}
.product-key__cu { font-family: var(--font-head); font-weight: 600; font-size: 1.15rem; color: var(--slate); }
.product-key__text { display: flex; flex-direction: column; line-height: 1.25; }
.product-key__text strong { font-size: 0.95rem; color: var(--ink); }
.product-key__text span { font-family: var(--font-mono); font-size: 0.72rem; color: var(--ink-55); }

/* Results section disclaimer */
.results__disclaimer { font-size: var(--fs-small); color: var(--ink-55); margin: 1.2rem auto 0; }

/* Product modal */
.modal[hidden] { display: none; }
.modal {
  position: fixed; inset: 0; z-index: 100;
  display: grid; place-items: center; padding: clamp(1rem, 4vw, 2rem);
}
.modal__overlay { position: absolute; inset: 0; background: rgba(22,20,15,0.62); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); }
.modal__panel {
  position: relative; z-index: 1;
  width: 100%; max-width: 900px; max-height: 90vh; overflow: auto;
  background: var(--porcelain); border-radius: var(--radius-lg);
  box-shadow: 0 40px 100px -40px rgba(22,20,15,0.7);
}
.modal__close {
  position: absolute; top: 0.75rem; right: 0.9rem; z-index: 2;
  width: 2.25rem; height: 2.25rem; border-radius: 50%;
  border: 1px solid var(--hairline); background: var(--porcelain);
  font-size: 1.5rem; line-height: 1; cursor: pointer; color: var(--ink);
}
.modal__close:hover { background: var(--sand-soft); }
.modal__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 3vw, 2.5rem); padding: clamp(1.6rem, 3vw, 2.5rem);
}
.modal__media { display: flex; flex-direction: column; gap: 0.75rem; }
.modal__media > .image-slot { aspect-ratio: 1 / 1; border-radius: var(--radius); }
.modal__thumbs { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.modal__thumbs .image-slot { aspect-ratio: 1 / 1; border-radius: var(--radius); }
.modal__info h2 { font-size: clamp(1.5rem, 2.2vw, 2rem); margin: 0.2rem 0 0.8rem; }
.modal__stat { color: var(--ink-70); margin-bottom: 1.1rem; }
.modal__stat strong { color: var(--slate); }
.modal__points { list-style: none; padding: 0; margin: 0 0 1.6rem; display: grid; gap: 0.55rem; }
.modal__points li { position: relative; padding-left: 1.35rem; color: var(--ink-70); font-size: 0.95rem; }
.modal__points li::before {
  content: ""; position: absolute; left: 0; top: 0.5em;
  width: 0.45rem; height: 0.45rem; border-radius: 50%; border: 1.5px solid var(--copper);
}
.modal__info .btn { width: 100%; justify-content: center; }
.modal__fine { font-size: var(--fs-small); color: var(--ink-55); text-align: center; margin-top: 0.9rem; }

@media (max-width: 700px) {
  .modal__grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .product-key { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .product-key:hover { transform: none; }
}

/* ------------------------------------------------------------
   31. (Removed 2026-07-14) The old flexbox "conversion-first order"
   hack pinned .hero above everything. The page now follows natural
   DOM order — photo carousel first — so this override is gone.
   ------------------------------------------------------------ */

/* ------------------------------------------------------------
   32. SHOP PAGE (shop.html — "Shop All" tab: the rest of the line)
   Product cards reuse the .gallery / .image-slot system; each card
   has a 3-thumb mini gallery, a "why ours is better" block, and a
   launch-list CTA. Retail prices are placeholders until set.
   ------------------------------------------------------------ */
.shop-hero { padding-bottom: 0; }
.shop-hero h1 { font-size: var(--fs-h2); margin-bottom: 1.1rem; }

/* Line-wide standards chips */
.shop-standards {
  list-style: none;
  padding: 0;
  margin: 1.7rem auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}
.shop-standards li {
  font-family: var(--font-mono);
  font-size: var(--fs-small);
  color: var(--ink-70);
  border: 1px solid var(--hairline);
  border-radius: 100px;
  padding: 0.35rem 0.9rem;
}

/* Flagship cross-sell strip (available now → index.html#buy) */
.shop-flagship-section { padding-block: clamp(2.5rem, 5vw, 3.5rem); }
.flagship {
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  background: var(--glacier-soft);
  padding: clamp(1.25rem, 3vw, 2rem);
  display: grid;
  grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 2.25rem);
  align-items: center;
}
.flagship__media { aspect-ratio: 1 / 1; }
.flagship__copy h2 { font-size: clamp(1.5rem, 2vw + 0.9rem, 2rem); margin: 0.2rem 0 0.6rem; }
.flagship__copy p { color: var(--ink-70); margin-bottom: 1.2rem; }

/* Product grid — 2-up on desktop, 1-up on mobile */
.shop-products h2 { font-size: var(--fs-h2); margin-bottom: 1.1rem; }
.shop-note {
  margin-top: 1.3rem;
  font-family: var(--font-mono);
  font-size: var(--fs-small);
  color: var(--ink-55);
  max-width: 70ch;
}
.shop-grid {
  list-style: none;
  padding: 0;
  margin: clamp(2.25rem, 5vw, 3.25rem) 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 3.5vw, 2.5rem);
}
.product-card {
  height: 100%;
  background: var(--porcelain);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
/* Cards don't need the PDP's sticky behavior */
.gallery--card { position: static; }

.product-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.product-card__soon {
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper-dark);
  border: 1px solid var(--copper);
  border-radius: 2px;
  padding: 0.18rem 0.55rem;
}
.product-card h3 { font-size: var(--fs-h3); margin: 0; }
.product-card__desc { color: var(--ink-70); margin: 0; }
.product-card__price { font-family: var(--font-mono); margin: 0; }
.product-card__amount { font-size: 1.25rem; font-weight: 600; color: var(--ink); }
.product-card__unit { color: var(--ink-55); font-size: 0.85rem; }

/* "Why ours is better" callout */
.why-ours {
  background: var(--sand-soft);
  border-radius: var(--radius-lg);
  padding: 1rem 1.15rem;
}
.why-ours__label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper-dark);
  margin: 0 0 0.55rem;
}
.why-ours .benefit-list { margin: 0; }
.why-ours .benefit-list li { font-size: 0.93rem; }

.product-card__cta { margin-top: auto; align-self: flex-start; }

/* Shop page: responsive */
@media (max-width: 820px) {
  .shop-grid { grid-template-columns: 1fr; }
  .flagship { grid-template-columns: 1fr; }
  .flagship__media { max-width: 260px; }
}

/* ------------------------------------------------------------
   33. WHOLESALE PAGE (wholesale.html — B2B partner program)
   Reuses the shop hero, standards chips, and .flagship strip.
   New here: the why-partner card grid, the dark terms spec list
   (values stay [PLACEHOLDER] until real terms are set), and the
   partnership application form (front-end stub — script.js §9).
   ------------------------------------------------------------ */
.wholesale-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}

/* Why-partner card grid */
.partner-grid {
  list-style: none;
  padding: 0;
  margin: clamp(2rem, 4.5vw, 3rem) 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
}
.partner-card {
  background: var(--sand-soft);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 2rem);
}
.partner-card__num {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper-dark);
  margin-bottom: 0.7rem;
}
.partner-card h3 { font-size: var(--fs-h3); margin: 0 0 0.55rem; }
.partner-card p { color: var(--ink-70); margin: 0; max-width: none; }

/* Terms — dark spec-list block (echoes the dose spec card) */
.terms { background: var(--char); color: var(--porcelain); }
.terms h2 { font-size: var(--fs-h2); color: var(--porcelain); margin-bottom: 1rem; }
.terms .lead { color: var(--porcelain-70); }
.terms-list {
  margin: clamp(1.8rem, 4vw, 2.5rem) 0 0;
  font-family: var(--font-mono);
}
.terms-list div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
  gap: 1rem;
  padding: 0.85rem 0;
  border-top: 1px solid rgba(245, 241, 234, 0.16);
}
.terms-list div:first-of-type { border-top: 0; padding-top: 0; }
.terms-list dt {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--porcelain-55);
  align-self: center;
}
.terms-list dd { margin: 0; font-size: 0.9rem; color: var(--porcelain); }
.terms-note {
  margin-top: 1.5rem;
  font-family: var(--font-mono);
  font-size: var(--fs-small);
  color: var(--porcelain-55);
}

/* Partnership application form (stub — script.js §9) */
.apply { background: var(--glacier); }
.apply h2 { font-size: var(--fs-h2); margin-bottom: 0.9rem; }
.apply .lead { color: rgba(33, 29, 25, 0.78); }
.apply-form {
  margin: 2.2rem auto 0;
  max-width: 720px;
  text-align: left;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem 1.2rem;
}
.apply-form .field { display: flex; flex-direction: column; gap: 0.4rem; }
.apply-form .field--full { grid-column: 1 / -1; }
.apply-form label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-70);
}
.apply-form input,
.apply-form select,
.apply-form textarea {
  font: inherit;
  color: var(--ink);
  width: 100%;
  background: var(--porcelain);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 0.7em 0.85em;
}
.apply-form textarea { min-height: 120px; resize: vertical; }
.apply-form input:focus-visible,
.apply-form select:focus-visible,
.apply-form textarea:focus-visible {
  outline: 2px solid var(--slate);
  outline-offset: 2px;
}
.apply__msg {
  min-height: 1.2em;
  max-width: 720px;
  margin: 1.1rem auto 0;
  font-size: 0.95rem;
}
.apply__msg.is-error { color: var(--copper-dark); font-weight: 600; }
.apply__msg.is-ok { color: var(--slate); font-weight: 600; }
.apply__msg a { color: inherit; text-decoration: underline; }
.apply__fine { font-size: var(--fs-small); color: rgba(33, 29, 25, 0.6); margin-top: 1rem; }

/* Wholesale page: responsive */
@media (max-width: 820px) {
  .partner-grid { grid-template-columns: 1fr; }
  .apply-form { grid-template-columns: 1fr; }
  .terms-list div { grid-template-columns: 1fr; gap: 0.25rem; }
  .terms-list dt { align-self: start; }
}

/* ------------------------------------------------------------
   28. 2026-07 REBUILD — announcement bar, hero support, science,
   offer / risk reversal, final CTA band (index product page)
   ------------------------------------------------------------ */

/* --- Announcement bar: one message, mono on Peptide Blue --- */
.annbar { background: var(--slate); }
.annbar__msg {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 0.55rem var(--gutter);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  color: var(--porcelain);
}

/* --- Benefit banner body copy --- */
.banner__body { color: var(--ink-70); max-width: 44ch; }

/* --- The science, honestly (light, three blocks + mono stats) --- */
.sci { background: var(--porcelain); }
.sci__h2 { font-size: var(--fs-h2); margin-bottom: clamp(1.25rem, 2.5vw, 2rem); max-width: 18ch; }
.sci__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3.5vw, 3rem);
}
.sci__block { padding-top: 1.4rem; border-top: 1px solid var(--hairline); }
.sci__stat {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(1.4rem, 1.6vw + 0.8rem, 2.2rem);
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 0.8rem;
}
.sci__block p { color: var(--ink-70); max-width: none; }
.sci__block em { font-style: italic; color: var(--ink-55); }
.sci__cite {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--copper-dark);
}
.sci__disclaimer {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  font-size: var(--fs-small);
  color: var(--muted);
  max-width: 70ch;
}
.sci__pubs { margin-top: clamp(1rem, 2vw, 1.5rem); }
.sci__pubs-h3 {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 1rem;
}
.sci__pubs-list { list-style: none; padding: 0; margin: 0; }
.sci__pubs-item {
  padding: 1rem 0;
  border-top: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.sci__pubs-item:last-child { border-bottom: 1px solid var(--hairline); }
.sci__pubs-title { font-weight: 500; max-width: 60ch; }
.sci__pubs-meta { color: var(--ink-55); font-size: var(--fs-small); }
.sci__pubs-meta em { font-style: italic; }

/* --- How to use: note under the steps --- */
.howto__note {
  margin-top: clamp(2rem, 4vw, 3rem);
  font-size: var(--fs-small);
  color: var(--muted);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

/* --- Offer + risk reversal (the buy area) --- */
.offer { background: var(--sand-soft); border-block: 1px solid var(--hairline); }
.offer__wrap {
  max-width: 40rem;
  display: flex;
  flex-direction: column;
}
.offer h2 { font-size: var(--fs-h2); margin-bottom: 1rem; }
.offer__box {
  color: var(--ink-70);
  margin: 0 auto 2rem;
  max-width: 52ch;
}
.offer__guarantee {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate);
  border: 1px solid var(--slate);
  border-radius: var(--radius);
  padding: 0.9rem 1.2rem;
  text-align: center;
  margin: 0.4rem 0 1.4rem;
}
.offer .buy__cta { width: 100%; justify-content: center; }

/* --- Final CTA band (Peptide Blue; one line, one button) --- */
.ctaband {
  background: var(--slate);
  color: var(--porcelain);
  padding-block: clamp(4rem, 8vw, 6rem);
}
.ctaband__title {
  font-size: var(--fs-h2);
  color: var(--porcelain);
  margin-bottom: 1.8rem;
}
.ctaband__trust {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--porcelain-70);
  margin-top: 1.4rem;
}
.btn--paper {
  background: var(--porcelain);
  color: var(--slate);
  border-color: var(--porcelain);
}
.btn--paper:hover { background: #fff; border-color: #fff; }

/* --- Rebuild responsive --- */
@media (max-width: 820px) {
  .sci__grid { grid-template-columns: 1fr; gap: 2rem; }
  .banner__copy { align-items: flex-start; }
}

/* --- Hero: temporary "under construction" placeholder --- */
.hero__underconstruction {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin: 0.5rem 0 2rem;
}

/* --- Photo carousel section (template with 6 option slots) --- */
.carousel { background: var(--porcelain); }
.carousel__h2 { font-size: var(--fs-h2); margin-bottom: 0.8rem; }
.carousel__note {
  color: var(--ink-70);
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  max-width: 52ch;
}
/* Constrain + un-stick the gallery for a centered standalone block */
.carousel__gallery {
  position: static;
  top: auto;
  max-width: 620px;
  margin-inline: auto;
  text-align: left;
}
/* Empty option slots read as labeled frames (like the template drawing) */
.carousel__gallery .image-slot--thumb .image-slot__label {
  font-size: 0.6rem;
  color: var(--muted);
}

/* ------------------------------------------------------------
   33. PRODUCT HERO (DTC buy hero — image left, buy column right)
   Reuses .buy__purchase / .buy__option / .buy__cta / .buy__payments.
   ------------------------------------------------------------ */
.phero { padding-block: clamp(2rem, 4vw, 3.5rem); }
.phero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

/* --- Left: product media = main stage + thumbnail strip --- */
.phero__media {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-self: start;
}
/* Main image stage — the soft tinted panel */
.phero__stage {
  position: relative;
  display: grid;
  place-items: center;
  padding: clamp(1.25rem, 4vw, 2.75rem);
  background: linear-gradient(160deg, var(--glacier-soft) 0%, var(--porcelain) 90%);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
}
.phero__stage-slot {
  background: transparent;
  padding: 0;
  width: 100%;
  aspect-ratio: 1 / 1;
}
.phero__stage-slot .slot-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* Thumbnail strip — small rounded squares in a row (wraps if needed) */
.phero__thumbs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.phero__thumbs .gallery__thumb {
  flex: 0 0 auto;
  width: clamp(3.4rem, 6vw, 4.4rem);
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: var(--radius-lg);
}
.phero__thumbs .image-slot--thumb {
  aspect-ratio: 1 / 1;
  padding: 0.3rem;
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  transition: border-color var(--dur) var(--ease);
}
.phero__thumbs .image-slot--thumb .image-slot__label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--muted);
}
.phero__thumbs .gallery__thumb:hover .image-slot--thumb { border-color: var(--copper); }
.phero__thumbs .gallery__thumb.is-active .image-slot--thumb { border-color: var(--slate); }
.phero__thumbs .gallery__thumb .slot-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.phero__badge {
  position: absolute;
  top: 1rem; left: 1rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--porcelain);
  background: var(--ink);
  padding: 0.35rem 0.7rem;
  border-radius: 100px;
}
.phero__seal {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 5.2rem; height: 5.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  border: 1.5px solid var(--slate);
  border-radius: 50%;
  background: rgba(245, 243, 238, 0.7);
  color: var(--slate);
  text-align: center;
}
.phero__seal strong {
  font-family: var(--font-head);
  font-size: 1.7rem;
  line-height: 1;
}
.phero__seal span {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.15;
}

/* --- Right: rating, headline, benefits, buy --- */
.phero__rating {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.phero__stars { color: var(--copper); letter-spacing: 0.15em; font-size: 1.05rem; }
.phero__rating-meta {
  font-family: var(--font-mono);
  font-size: var(--fs-small);
  color: var(--muted);
}
.phero__copy h1 {
  font-size: clamp(2.4rem, 3vw + 1.3rem, 3.7rem);
  line-height: 1.03;
  letter-spacing: -0.01em;
  margin: 0.4rem 0 1rem;
}
.phero__sub {
  font-size: clamp(1.1rem, 0.6vw + 1rem, 1.35rem);
  line-height: 1.45;
  color: var(--ink-70);
  max-width: 46ch;
  margin-bottom: 1.6rem;
}
.phero__benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 1.8rem;
  display: grid;
  gap: 0.75rem;
}
.phero__benefits li {
  position: relative;
  padding-left: 2.1rem;
  color: var(--ink);
  line-height: 1.4;
}
.phero__benefits li::before {
  content: "\2713";
  position: absolute;
  left: 0; top: 0.05em;
  width: 1.45rem; height: 1.45rem;
  display: grid;
  place-items: center;
  background: var(--glacier-soft);
  color: var(--slate);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
}

/* Buy controls sit tighter inside the hero */
.phero .buy__purchase { margin-bottom: 1rem; }
.phero .buy__reassure { text-align: left; }

/* --- Product hero: responsive --- */
@media (max-width: 820px) {
  .phero__grid { grid-template-columns: 1fr; }
  .phero__sub { max-width: none; }
}
@media (max-width: 480px) {
  .phero .buy__purchase { grid-template-columns: 1fr; }
  .phero__seal { width: 4.4rem; height: 4.4rem; }
  .phero__seal strong { font-size: 1.4rem; }
}

/* ------------------------------------------------------------
   34. (Removed 2026-07-14) The 7 stacked full-width photo boxes were
   replaced by the thumbnail gallery strip in the product hero (§33).
   ------------------------------------------------------------ */
