  :root {
    --bg: #efe8dc;
    --ink: #1a1512;
    --paper: #f7f1e6;
    --amber: #7a3d14;
    --amber-light: #d9a06b;
    --rule: #d9cfbd;
    --muted: #6b5d4c;
    /* Secondary accent: muted clay-rose. Restrained — trust/credibility marks only,
       never on CTAs/headlines/nav. Amber stays the single "action" color. */
    --rose: #b5705f;
    --rose-soft: #efdcd5;
    --serif: 'Cormorant Garamond', Garamond, 'Times New Roman', serif;
    --sans: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    /* Motion tokens (added 2026-05-17) */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
    --dur-fast: 0.18s;
    --dur: 0.28s;
    --lift-shadow: 0 12px 28px rgba(26, 21, 18, 0.10);
  }
  /* Use lining (full-height) figures in all serif display headings,
     so "GLP-1" / "9-16" / "$5,000" don't render with old-style numerals
     that sit at x-height and look like lowercase letters. */
  h1, h2, h3 {
    font-variant-numeric: lining-nums;
    font-feature-settings: "lnum" 1;
  }
  *, *::before, *::after { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; background: var(--bg); }
  body {
    overscroll-behavior: none;
    font-family: var(--sans);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  img { display: block; max-width: 100%; }
  button { font: inherit; cursor: pointer; }
  a { color: inherit; text-decoration: none; }

  *, *::before, *::after { box-sizing: border-box; }
  html { -webkit-text-size-adjust: 100%; }
  body { overflow-x: clip; }
  img { max-width: 100%; }
  .site { width: 100%; max-width: 1440px; margin: 0 auto; background: var(--paper); overflow-x: clip; }

  .pill {
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
  }

  /* Nav */
  .nav {
    display: flex; align-items: center; justify-content: space-between;
    padding: 26px 72px; border-bottom: 1px solid var(--rule);
    background: var(--paper);
  }
  .logo { display: inline-flex; align-items: center; gap: 10px; font-family: var(--serif); font-size: 28px; font-weight: 500; letter-spacing: -0.02em; font-style: italic; line-height: 1; }
  .logo .mark { width: 12px; height: 32px; color: var(--amber); flex-shrink: 0; display: block; }
  .logo .word { font-style: italic; }
  .logo .dot { color: var(--amber); font-style: normal; }
  .nav-links { display: flex; gap: 38px; font-size: 13px; }
  .nav-right { display: flex; gap: 22px; align-items: center; font-size: 13px; }
  .bag { padding: 8px 14px; border: 1px solid var(--ink); }

  /* NOTE: The authoritative Hero, button, and Voices styles live further down
     (the homepage refactor block). An earlier DUPLICATE hero block here was fully
     overridden and has been removed; its only unique helpers (.hero-tag, .hero-sub*,
     .img-caption, .num) had zero markup references. */

  /* Ticker */
  .ticker {
    display: flex; justify-content: space-between;
    padding: 16px 72px; font-size: 11px; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--muted);
    border-bottom: 1px solid var(--rule); background: var(--paper);
  }

  /* Gap — single chapter */
  .gap {
    padding: 120px 140px; border-bottom: 1px solid var(--rule);
    text-align: center;
  }
  .gap h2 {
    font-family: var(--serif); font-size: 58px; line-height: 1.08;
    font-weight: 400; letter-spacing: -0.02em; margin: 22px auto 28px;
    max-width: 960px;
  }
  .gap h2 em { color: var(--amber); font-style: italic; }
  .gap h2 { margin-bottom: 0; }

  /* Product rail */
  .rail {
    display: grid; grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--rule);
  }
  .rail.reverse .rail-img { order: 2; }
  .rail.reverse .rail-body { order: 1; border-left: none; border-right: 1px solid var(--rule); }
  .rail-img { background: var(--paper); position: relative; }
  .rail-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; position: absolute; inset: 0; }
  .rail-body {
    padding: 110px 80px; background: var(--paper);
    border-left: 1px solid var(--rule);
  }
  .rail-body h2 {
    font-family: var(--serif); font-size: 62px; line-height: 1.02;
    font-weight: 400; letter-spacing: -0.025em; margin: 22px 0 28px;
  }
  .rail-body h2 em { color: var(--amber); font-style: italic; }
  .rail-lede {
    font-family: var(--serif); font-size: 21px; line-height: 1.5;
    font-style: italic; color: var(--muted); margin: 0 0 36px;
  }
  .rail-pulls { list-style: none; padding: 0; margin: 0 0 36px; }
  .rail-pulls li {
    padding: 18px 0; border-top: 1px solid var(--rule);
    display: grid; grid-template-columns: 180px 1fr; gap: 20px;
  }
  .rail-pulls li:last-child { border-bottom: 1px solid var(--rule); }
  .rail-pull-name {
    font-family: var(--serif); font-size: 22px; font-weight: 500; font-style: italic;
  }
  .rail-pull-desc { font-size: 14px; line-height: 1.55; color: var(--muted); }
  .rail-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
  .rail-price {
    font-family: var(--serif); font-size: 32px; font-weight: 500; margin: 0 0 6px;
  }
  .rail-price-sub { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-left: 12px; }
  .rail-price-meta { font-size: 13px; color: var(--ink); margin: 0 0 6px; line-height: 1.5; }
  .rail-price-meta strong { font-weight: 600; }
  .rail-price-offer { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--amber); margin: 0 0 18px; }
  .rail-link {
    font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--amber); padding: 18px 0; border-bottom: 1px solid var(--amber);
  }
  .disclaimer {
    font-size: 11px; letter-spacing: 0.06em; color: var(--muted);
    margin-top: 24px; line-height: 1.6;
  }

  /* Biology short */
  .bio-short {
    padding: 64px 140px 120px; border-bottom: 1px solid var(--rule);
    background: var(--paper);
  }
  /* Gap section flows directly into the bio cards — drop its bottom border */
  .gap { border-bottom: none; padding-bottom: 72px; }
  .bio-mech {
    display: grid; grid-template-columns: 1fr; gap: 32px;
    max-width: 1080px; margin: 0 auto;
  }

  /* Carousel wrapper for the 5 mechanism cards */
  .bio-carousel {
    position: relative;
    max-width: 1080px;
    margin: 0 auto;
    cursor: pointer;
    user-select: none;
  }
  .bio-carousel::after {
    /* subtle hint that the surface is interactive */
    content: "";
    position: absolute; inset: 0;
    pointer-events: none;
    transition: box-shadow 0.2s ease;
  }
  .bio-carousel:hover::after { box-shadow: inset 0 0 0 1px rgba(122, 61, 20, 0.08); }
  .bio-track-viewport {
    overflow: hidden;
  }
  .bio-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
  }
  .bio-track .bio-card {
    flex: 0 0 100%;
    width: 100%;
    box-sizing: border-box;
  }
  .bio-dots {
    display: flex; justify-content: center; gap: 12px;
    margin-top: 28px;
  }
  .bio-dots button {
    width: 10px; height: 10px;
    border: 1px solid var(--amber);
    background: transparent;
    border-radius: 999px;
    padding: 0;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
  }
  .bio-dots button.is-active {
    background: var(--amber);
    transform: scale(1.15);
  }
  .bio-dots button:hover { background: var(--amber-light); }
  .bio-counter {
    position: absolute;
    top: 18px; right: 8px;
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    pointer-events: none;
  }
  .bio-counter [data-bio-current] {
    color: var(--amber); font-weight: 600;
  }
  .bio-carousel.is-paused .bio-counter::after {
    content: " · paused";
    color: var(--muted);
  }
  .bio-card {
    padding: 48px 44px; background: var(--bg);
    border-left: 2px solid var(--amber);
  }
  .bio-card-img {
    width: 100%; height: 280px; object-fit: cover;
    margin: 4px 0 24px; display: block;
  }
  .bio-card.simple { padding-bottom: 36px; }
  .bio-card.simple p { font-size: 15px; line-height: 1.65; }
  .bio-card-num {
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--amber); margin-bottom: 18px;
  }
  .bio-card h3 {
    font-family: var(--serif); font-size: 30px; line-height: 1.15;
    font-weight: 500; letter-spacing: -0.005em; margin: 0 0 20px;
  }
  .bio-card p { font-size: 15px; line-height: 1.65; color: var(--ink); margin: 0 0 22px; }
  .bio-more { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--amber); }

  /* Before/after compare visual — inline mid-face comparison */
  .compare-slider {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 2px; margin: 28px 0 26px;
    background: var(--rule);
  }
  .compare-slider figure { margin: 0; background: var(--paper); padding: 0; position: relative; }
  .compare-slider figure img {
    width: 100%; height: 220px; object-fit: cover; display: block;
  }
  .compare-slider figcaption {
    font-family: var(--sans); font-size: 10px;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--muted); padding: 12px 14px 0;
    display: flex; justify-content: space-between; align-items: baseline;
  }
  .compare-slider figcaption span.stat {
    color: var(--amber); font-weight: 600; letter-spacing: 0.05em;
  }
  .compare-slider figure.before figcaption { padding-bottom: 12px; }
  .compare-slider figure.after figcaption { padding-bottom: 12px; }

  /* Consequence block under Mechanism 02 */
  .consequence {
    font-family: var(--serif); font-size: 17px; line-height: 1.5;
    font-style: italic; color: var(--ink);
    padding: 18px 20px; background: var(--paper);
    border-left: 2px solid var(--amber); margin: 4px 0 24px;
  }
  .consequence strong { color: var(--amber); font-style: normal; font-weight: 500; }

  /* Founder */
  .founder {
    display: grid; grid-template-columns: 1fr 1.1fr;
    border-bottom: 1px solid var(--rule); min-height: 640px;
  }
  .founder-img { position: relative; background: var(--bg); }
  .founder-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
  .founder-body { padding: 100px 80px; background: var(--paper); border-left: 1px solid var(--rule); }
  .founder-body h2 {
    font-family: var(--serif); font-size: 50px; line-height: 1.05;
    font-weight: 400; letter-spacing: -0.02em; margin: 22px 0 28px;
  }
  .founder-body h2 em { color: var(--amber); font-style: italic; }
  .founder-prose p {
    font-size: 15px; line-height: 1.7; color: var(--ink); margin: 0 0 18px;
  }
  .founder-tribute {
    font-family: var(--serif); font-size: 17px; line-height: 1.55;
    font-style: italic; color: var(--muted);
    border-left: 2px solid var(--amber);
    padding: 6px 0 6px 20px;
    margin: 0 0 32px;
  }
  .founder-prose .pullquote {
    font-family: var(--serif); font-size: 22px; line-height: 1.4;
    font-style: italic; color: var(--amber);
    margin: 28px 0; padding: 0 0 0 24px; border-left: 2px solid var(--amber);
  }
  .founder-prose .lossy-intro {
    font-family: var(--serif); font-size: 22px; line-height: 1.45;
    color: var(--ink); margin: 0 0 26px; font-weight: 400;
  }
  .founder-prose .lossy-intro em { font-style: italic; color: var(--amber); font-weight: 500; }
  .founder-prose .lossy-list {
    list-style: none; margin: 0 0 28px; padding: 0;
    display: grid; gap: 18px;
  }
  .founder-prose .lossy-list li {
    display: grid; grid-template-columns: 36px 1fr; gap: 16px;
    padding: 16px 0; border-top: 1px solid var(--rule);
    font-size: 15px; line-height: 1.62; color: var(--ink);
  }
  .founder-prose .lossy-list li:last-child { border-bottom: 1px solid var(--rule); }
  .founder-prose .lossy-list strong { color: var(--ink); font-weight: 600; }
  .founder-prose .lossy-num {
    font-family: var(--serif); font-size: 22px; line-height: 1;
    color: var(--amber); font-style: italic;
    padding-top: 2px;
  }
  .founder-prose .lossy-close {
    font-family: var(--serif); font-size: 22px; line-height: 1.45;
    color: var(--ink); margin: 0;
  }
  .founder-prose .lossy-close strong { color: var(--amber); font-weight: 600; font-style: italic; }

  /* NOTE: An earlier DUPLICATE Voices block lived here and was fully overridden
     by the authoritative Voices block further down (its two unique decorative
     rules — blockquote::before and blockquote em — were migrated there). Removed.
     Unused helpers (.voices-head .pill, .by-name, .by-cred) had no markup refs. */

  .voices-stats {
    margin-top: 80px; padding-top: 60px; border-top: 1px solid var(--rule);
    max-width: 1280px; margin-left: auto; margin-right: auto;
    display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 36px;
  }
  .voices-stat { text-align: left; }
  .voices-stat .figure {
    font-family: var(--serif); font-size: 56px; line-height: 1; color: var(--amber);
    font-weight: 400; letter-spacing: -0.02em; margin-bottom: 14px;
  }
  .voices-stat .label {
    font-family: var(--sans); font-size: 14px; line-height: 1.55; color: var(--ink);
    margin-bottom: 10px;
  }
  .voices-stat .src {
    font-family: var(--sans); font-size: 11px; color: var(--muted); font-style: italic;
  }
  .voices-stat .src a { color: var(--amber); text-decoration: none; }

  /* Evidence standards */
  .standards {
    padding: 110px 120px; border-bottom: 1px solid var(--rule);
    background: var(--paper);
  }
  .standards-head { text-align: center; margin-bottom: 60px; }
  .standards-head h2 {
    font-family: var(--serif); font-size: 50px; line-height: 1.08;
    font-weight: 400; letter-spacing: -0.02em; margin: 22px 0;
  }
  .standards-head h2 em { color: var(--amber); font-style: italic; }
  .standards-head p {
    font-family: var(--serif); font-size: 19px; color: var(--muted);
    max-width: 720px; margin: 0 auto; font-style: italic; line-height: 1.55;
  }
  .standards-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
  .standards-col {
    padding: 44px 40px; background: var(--bg);
  }
  .standards-col.say { border-left: 2px solid var(--amber); }
  .standards-col.dont { border-left: 2px solid var(--ink); background: var(--ink); color: var(--paper); }
  .standards-col h3 {
    font-family: var(--serif); font-size: 28px; font-weight: 500;
    margin: 0 0 22px; font-style: italic;
  }
  .standards-col.dont h3 { color: var(--amber-light); }
  .standards-col ul { margin: 0; padding: 0; list-style: none; }
  .standards-col li {
    padding: 14px 0; border-top: 1px solid rgba(26,21,18,0.1);
    font-size: 14px; line-height: 1.55;
  }
  .standards-col.dont li { border-top-color: rgba(247,241,230,0.12); }
  .standards-col li:first-child { border-top: none; }

  /* Final CTA */
  .cta {
    padding: 140px 72px 120px; text-align: center;
    background: var(--paper); border-bottom: 1px solid var(--rule);
  }
  .cta .hero-tag { margin-bottom: 22px; }
  .cta h2 {
    font-family: var(--serif); font-size: 84px; line-height: 1.0;
    font-weight: 400; letter-spacing: -0.025em; margin: 0 0 28px;
  }
  .cta h2 em { color: var(--amber); font-style: italic; }
  .cta-lede {
    font-family: var(--serif); font-size: 22px; font-style: italic;
    color: var(--muted); max-width: 720px; margin: 0 auto 44px;
  }
  .cta-row-dual {
    display: flex; justify-content: center; gap: 16px; margin-bottom: 18px;
  }
  .cta-sub {
    font-size: 12px; letter-spacing: 0.1em; color: var(--muted);
    text-transform: uppercase; margin-top: 22px;
  }

  /* Footer */
  .foot { background: var(--ink); color: var(--paper); padding: 80px 72px 40px; }
  .foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 60px; }
  .foot-logo { display: inline-flex; flex-direction: column; align-items: flex-start; gap: 6px; font-family: var(--serif); font-size: 26px; font-style: italic; line-height: 1; }
  .foot-logo .mark { width: 14px; height: 38px; color: var(--amber-light); display: block; }
  .foot-logo .word { font-style: italic; }
  .foot-logo .dot { color: var(--amber-light); font-style: normal; }
  .foot-tag {
    font-family: var(--serif); font-style: italic; font-size: 17px;
    color: rgba(247, 241, 230, 0.6); max-width: 400px; margin-top: 16px; line-height: 1.5;
  }
  .foot-col .pill { font-size: 13px; letter-spacing: normal; text-transform: none; font-weight: 600; color: rgba(247, 241, 230, 0.62); margin-bottom: 18px; }
  .foot-link { display: block; font-size: 14px; margin-bottom: 10px; color: rgba(247, 241, 230, 0.85); }
  .foot-link:hover { color: var(--amber-light); }
  .foot-legal {
    display: flex; flex-direction: column; gap: 14px; align-items: flex-start;
    font-size: 11px; color: rgba(247, 241, 230, 0.5); line-height: 1.6;
    padding-top: 24px; border-top: 1px solid rgba(247,241,230,0.18);
  }
  .foot-legal .row-sm {
    display: flex; justify-content: space-between; width: 100%;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(247,241,230,0.4);
  }
  .foot-legal-links {
    display: flex; flex-wrap: wrap; gap: 8px 18px; width: 100%;
    letter-spacing: 0.12em; text-transform: uppercase;
  }
  .foot-legal-links a { color: rgba(247,241,230,0.4); }
  .foot-legal-links a:hover { color: var(--amber-light); }

  /* Trademark / no-affiliation notice on editorial pages that name a brand drug */
  .trademark-notice {
    max-width: 720px; margin: 0 auto; padding: 28px 24px 8px;
    font-size: 12px; line-height: 1.6; color: var(--muted);
    text-align: center; border-top: 1px solid var(--rule);
  }

  /* ── v2 · Urgency band (the first six months take both) ── */
  .first-six {
    padding: 70px 72px;
    background: var(--amber);
    color: var(--paper);
    text-align: center;
    border-bottom: 1px solid var(--rule);
  }
  .first-six h2 {
    font-family: var(--serif); font-size: 40px; line-height: 1.15;
    font-weight: 400; letter-spacing: -0.015em;
    margin: 0 auto 14px; max-width: 980px;
    font-style: italic;
  }
  .first-six p {
    font-family: var(--serif); font-style: italic;
    font-size: 18px; line-height: 1.5;
    max-width: 720px; margin: 0 auto;
    color: rgba(247,241,230,0.92);
  }
  .first-six p strong {
    color: var(--paper); font-weight: 700; font-style: italic;
  }

  /* ── v2 · CTA scarcity for combined ── */
  .scarcity-strip-combined {
    background: var(--ink); color: var(--amber-light);
    text-align: center; padding: 18px 72px;
    font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
    border-bottom: 1px solid rgba(247,241,230,0.15);
  }
  .scarcity-strip-combined strong { color: var(--paper); font-weight: 500; }

  /* ── v3 · Two paths · same woman (combined version) ── */
  .twopaths-combined {
    padding: 110px 72px;
    background: var(--paper);
    border-bottom: 1px solid var(--rule);
  }
  .twopaths-combined .head { text-align: center; max-width: 880px; margin: 0 auto 56px; }
  .twopaths-combined .head h2 {
    font-family: var(--serif); font-size: 52px; line-height: 1.05;
    font-weight: 400; letter-spacing: -0.02em;
    margin: 22px 0 22px;
  }
  .twopaths-combined .head h2 em { color: var(--amber); font-style: italic; }
  .twopaths-combined .head .lede {
    font-family: var(--serif); font-style: italic;
    font-size: 19px; color: var(--muted);
    max-width: 700px; margin: 0 auto;
    line-height: 1.5;
  }
  .tp-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
    background: var(--rule); border: 1px solid var(--rule);
    max-width: 1240px; margin: 0 auto;
  }
  .tp-card { padding: 48px 40px; }
  .tp-without { background: var(--ink); color: var(--paper); }
  .tp-with { background: var(--paper); }
  .tp-tag {
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
    margin-bottom: 16px;
  }
  .tp-without .tp-tag { color: rgba(247,241,230,0.5); }
  .tp-with .tp-tag { color: var(--amber); }
  .tp-card h3 {
    font-family: var(--serif); font-size: 28px; line-height: 1.15;
    font-weight: 500; font-style: italic;
    margin: 0 0 24px;
  }
  .tp-with h3 { color: var(--ink); }
  .tp-row {
    display: grid; grid-template-columns: 56px 1fr; gap: 14px;
    padding: 14px 0; border-top: 1px solid rgba(247,241,230,0.12);
  }
  .tp-with .tp-row { border-top-color: var(--rule); }
  .tp-card .tp-row:first-of-type { border-top: none; }
  .tp-row .area {
    font-family: var(--serif); font-style: italic;
    font-size: 14px; color: var(--amber-light);
    text-transform: lowercase;
  }
  .tp-with .tp-row .area { color: var(--amber); }
  .tp-row .desc {
    font-family: var(--serif); font-size: 16px; line-height: 1.45;
  }
  .tp-without .tp-row .desc { color: rgba(247,241,230,0.85); }
  .tp-with .tp-row .desc { color: var(--ink); }
  .tp-card .age-cap {
    margin-top: 28px; padding-top: 18px;
    font-family: var(--serif); font-style: italic; font-size: 17px;
    border-top: 1px solid rgba(247,241,230,0.18);
  }
  .tp-with .age-cap { border-top-color: var(--rule); color: var(--amber); }
  .tp-without .age-cap { color: var(--amber-light); }

  /* ── v3 · Process for combined (3 entry paths) ── */
  .entry-paths {
    padding: 110px 72px;
    background: var(--bg);
    border-bottom: 1px solid var(--rule);
  }
  .entry-paths-head { text-align: center; max-width: 880px; margin: 0 auto 56px; }
  .entry-paths-head h2 {
    font-family: var(--serif); font-size: 50px; line-height: 1.05;
    font-weight: 400; letter-spacing: -0.02em;
    margin: 22px 0 22px;
  }
  .entry-paths-head h2 em { color: var(--amber); font-style: italic; }
  .entry-paths-head .lede {
    font-family: var(--serif); font-style: italic;
    font-size: 19px; color: var(--muted);
    max-width: 720px; margin: 0 auto;
    line-height: 1.5;
  }
  .entry-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
    background: var(--rule); border: 1px solid var(--rule);
    max-width: 1240px; margin: 0 auto;
  }
  .entry-card {
    background: var(--paper); padding: 40px 32px;
  }
  .entry-num {
    font-family: var(--serif); font-size: 48px;
    color: var(--amber); font-style: italic;
    line-height: 1; margin-bottom: 12px;
  }
  .entry-card h3 {
    font-family: var(--serif); font-size: 22px;
    font-weight: 500; line-height: 1.2;
    margin: 0 0 14px;
  }
  .entry-card p {
    font-family: var(--serif); font-size: 15px; line-height: 1.55;
    color: var(--muted); margin: 0 0 22px;
  }
  .entry-card .next {
    display: inline-block;
    font-size: 11px; letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--amber);
    border-bottom: 1px solid var(--amber);
    padding-bottom: 4px;
  }

  /* ── v4 · Pre-hero strip (combined) ── */
  .pre-hero-combined {
    background: var(--amber); color: var(--paper);
    padding: 14px 72px;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  }
  .pre-hero-combined .stat {
    font-family: var(--serif); font-style: italic;
    text-transform: none; letter-spacing: 0; font-size: 15px;
    color: var(--paper);
  }
  .pre-hero-combined .stat strong {
    font-weight: 500; background: var(--ink);
    padding: 3px 8px; margin-right: 8px;
  }

  /* ── v4 · Backed by (credibility band, combined) ── */
  .backed-c {
    padding: 90px 72px;
    background: var(--paper);
    border-bottom: 1px solid var(--rule);
  }
  .backed-c-head { text-align: center; margin-bottom: 56px; }
  .backed-c-head h2 {
    font-family: var(--serif); font-size: 44px; line-height: 1.1;
    font-weight: 400; letter-spacing: -0.015em;
    margin: 18px 0 18px;
  }
  .backed-c-head h2 em { color: var(--amber); font-style: italic; }
  .backed-c-head p {
    font-family: var(--serif); font-style: italic;
    font-size: 17px; color: var(--muted);
    max-width: 720px; margin: 0 auto;
  }
  .backed-c-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
    background: var(--rule); border: 1px solid var(--rule);
    max-width: 1240px; margin: 0 auto;
  }
  .backed-c-cell {
    background: var(--bg); padding: 36px 28px;
  }
  .backed-c-tier {
    font-size: 10px; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--amber);
    margin-bottom: 14px;
  }
  .backed-c-cell h3 {
    font-family: var(--serif); font-size: 22px; line-height: 1.2;
    font-weight: 500; font-style: italic;
    margin: 0 0 10px;
  }
  .backed-c-cell p {
    font-family: var(--serif); font-size: 14px; line-height: 1.55;
    color: var(--muted); margin: 0;
  }

  /* ── v4 · Emotional close (combined) ── */
  .emo-close-c {
    padding: 80px 72px;
    background: var(--ink); color: var(--paper);
    text-align: center;
    border-bottom: 1px solid rgba(247,241,230,0.15);
  }
  .emo-close-c blockquote {
    font-family: var(--serif); font-style: italic;
    font-size: 36px; line-height: 1.25;
    font-weight: 400; letter-spacing: -0.005em;
    margin: 0 auto; max-width: 1020px;
  }
  .emo-close-c blockquote em { color: var(--amber-light); font-style: italic; }

  /* v2 · cascade — pre-hero loss strip */
  .prehero-loss-c {
    background: var(--ink);
    color: var(--paper);
    padding: 14px 80px;
    display: flex; align-items: baseline; gap: 18px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 13px; line-height: 1.45;
    border-bottom: 1px solid rgba(247,241,230,0.1);
  }
  .prehero-loss-c .num {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 22px; line-height: 1; color: var(--amber-light);
    font-weight: 400;
  }
  .prehero-loss-c .copy { color: rgba(247,241,230,0.92); flex: 1; }
  .prehero-loss-c .tag {
    font-size: 10px; letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(247,241,230,0.45);
  }

  /* v3 · cascade — hero promise band */
  .hero-promise-c {
    background: var(--bg);
    padding: 44px 80px;
    border-bottom: 1px solid var(--rule);
    display: flex; gap: 36px; align-items: center;
    justify-content: center;
  }
  .hero-promise-c .lead {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 28px; line-height: 1.35; color: var(--ink);
    max-width: 720px;
  }
  .hero-promise-c .lead em { color: var(--amber); }
  .hero-promise-c .arrow {
    font-family: 'Cormorant Garamond', serif;
    color: var(--amber); font-size: 32px;
  }
  .hero-promise-c .vision {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 13px; line-height: 1.6; color: var(--muted);
    max-width: 360px;
  }

  /* v4 · Cred chips (combined) */
  .cred-chips-c {
    background: var(--paper);
    padding: 32px 80px;
    border-bottom: 1px solid var(--rule);
    display: flex; align-items: center; justify-content: center;
    gap: 18px; flex-wrap: wrap;
  }
  .cred-chips-c .label {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 10px; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--muted);
    margin-right: 12px;
  }
  .cred-chip-c {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 10px 18px;
    border: 1px solid var(--rule);
    background: var(--bg);
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 12px; color: var(--ink);
    border-radius: 999px;
  }
  .cred-chip-c .dot-c { width: 6px; height: 6px; border-radius: 50%; background: var(--amber); }

  /* v4 · Founder pull quote inline (combined) */
  .founder-pull-c {
    background: var(--bg);
    padding: 90px 80px;
    border-bottom: 1px solid var(--rule);
  }
  .founder-pull-c .grid {
    display: grid; grid-template-columns: 200px 1fr;
    gap: 56px; max-width: 1100px; margin: 0 auto;
    align-items: center;
  }
  .founder-pull-c .avatar {
    aspect-ratio: 1;
    background: var(--rule);
    border-radius: 50%; overflow: hidden;
  }
  .founder-pull-c .avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .founder-pull-c blockquote {
    font-family: var(--serif);
    font-size: 28px; line-height: 1.4; font-weight: 300;
    color: var(--ink); margin: 0;
  }
  .founder-pull-c blockquote em { color: var(--amber); font-style: italic; }
  .founder-pull-c .attr {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 11px; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--muted);
    margin-top: 18px;
  }

  /* Founder note immediately under hero */
  .founder-note {
    background: var(--bg);
    padding: 80px 80px 90px;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }
  .founder-note-grid {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 56px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
  }
  .founder-note .avatar {
    aspect-ratio: 1;
    background: var(--rule);
    border-radius: 50%;
    overflow: hidden;
  }
  .founder-note .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .founder-note blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    line-height: 1.4;
    font-weight: 300;
    color: var(--ink);
    margin: 0;
  }
  .founder-note blockquote em {
    color: var(--amber);
    font-style: italic;
  }
  .founder-note .attr {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 18px;
  }

  /* ========== Cart drawer + product modal + checkout ========== */
  body.no-scroll { overflow: hidden; }

  .overlay-backdrop {
    position: fixed; inset: 0;
    background: rgba(26, 21, 18, 0.55);
    opacity: 0; pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 90;
  }
  .overlay-backdrop.is-open { opacity: 1; pointer-events: auto; }

  .nav .bag {
    cursor: pointer;
    position: relative;
  }
  .bag-count {
    display: inline-block;
    margin-left: 8px;
    min-width: 20px;
    padding: 2px 7px;
    background: var(--amber);
    color: var(--paper);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0;
    text-align: center;
    line-height: 1.4;
  }

  /* Cart drawer */
  .cart-drawer {
    position: fixed;
    top: 0; right: 0;
    width: 460px;
    max-width: 100vw;
    height: 100vh;
    background: var(--paper);
    box-shadow: -8px 0 32px rgba(26, 21, 18, 0.18);
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    display: flex;
    flex-direction: column;
  }
  .cart-drawer.is-open { transform: translateX(0); }
  .cart-head {
    padding: 32px 32px 24px;
    border-bottom: 1px solid var(--rule);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .cart-head h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 400;
    margin: 0;
    color: var(--ink);
  }
  .cart-close {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 24px;
    color: var(--muted);
    line-height: 1;
    padding: 4px;
  }
  .cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 24px 32px;
  }
  .cart-empty {
    text-align: center;
    color: var(--muted);
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 18px;
    padding: 40px 0;
  }
  .cart-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--rule);
  }
  .cart-item:last-child { border-bottom: none; }
  .cart-item-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    background: var(--bg);
  }
  .cart-item-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: var(--ink);
    margin: 0 0 4px;
  }
  .cart-item-meta {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.04em;
  }
  .cart-item-qty {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
  }
  .cart-item-qty button {
    width: 22px; height: 22px;
    background: var(--bg);
    border: 1px solid var(--rule);
    color: var(--ink);
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    border-radius: 50%;
  }
  .cart-item-qty span {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 12px;
    min-width: 24px;
    text-align: center;
  }
  .cart-item-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: var(--ink);
    text-align: right;
  }
  .cart-item-remove {
    display: block;
    background: none;
    border: none;
    color: var(--muted);
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    cursor: pointer;
    margin-top: 4px;
    text-align: right;
    padding: 0;
    width: 100%;
  }
  .cart-foot {
    padding: 24px 32px 32px;
    border-top: 1px solid var(--rule);
    background: var(--bg);
  }
  .cart-totals {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: var(--ink);
  }
  .cart-totals .label {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--muted);
    align-self: end;
  }
  /* Full-routine bundle saving reads as a positive saving (amber). */
  .cart-totals[data-cart-bundle-row] > span:last-child { color: var(--amber); }
  /* Grand total — the amount actually charged. Set off as the bottom line. */
  .cart-total-row { border-top: 1px solid var(--rule); padding-top: 16px; }
  .cart-total-row > span:last-child { font-weight: 600; }
  .cart-total-row > span:last-child small { font-size: 14px; }
  .cart-checkout {
    display: block;
    width: 100%;
    background: var(--ink);
    color: var(--paper);
    border: none;
    padding: 18px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    cursor: pointer;
    transition: background 0.18s;
  }
  .cart-checkout:hover { background: var(--amber); }
  .cart-checkout:disabled,
  .cart-checkout.is-disabled,
  .cart-checkout[aria-disabled="true"] { opacity: 0.4; cursor: not-allowed; pointer-events: none; }
  a.cart-checkout { text-decoration: none; text-align: center; }

  /* Visually-hidden helper for accessible legends */
  .visually-hidden {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0);
    white-space: nowrap; border: 0;
  }

  /* One-time vs Subscribe mode toggle (PDPs + product modal) */
  .mode-toggle {
    margin: 18px 0 0;
    padding: 0;
    border: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .mode-opt {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid var(--border, #d8cdb6);
    border-radius: 4px;
    cursor: pointer;
    background: rgba(247,241,230,0.6);
    transition: border-color 0.15s, background 0.15s;
  }
  .mode-opt:hover { border-color: var(--ink); }
  .mode-opt input[type="radio"] {
    flex: 0 0 auto;
    margin-top: 3px;
    accent-color: #7a3d14;
  }
  .mode-opt-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .mode-opt-title {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--ink);
  }
  .mode-opt-meta {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 12px;
    color: var(--muted);
    line-height: 1.45;
  }
  .mode-opt:has(input:checked) {
    border-color: var(--ink);
    background: rgba(247,241,230,1);
  }
  .mode-opt-sub:has(input:checked) {
    border-color: #7a3d14;
    background: rgba(122, 61, 20, 0.04);
  }
  .mode-opt-sub:has(input:checked) .mode-opt-title { color: #7a3d14; }
  /* Dark-background PDP buy-box overrides */
  .pp-buy-box .mode-opt {
    background: rgba(247,241,230,0.08);
    border-color: rgba(247,241,230,0.25);
  }
  .pp-buy-box .mode-opt:hover { border-color: rgba(247,241,230,0.6); }
  .pp-buy-box .mode-opt-title { color: var(--paper); }
  .pp-buy-box .mode-opt-meta { color: rgba(247,241,230,0.7); }
  .pp-buy-box .mode-opt:has(input:checked) {
    background: rgba(247,241,230,0.16);
    border-color: var(--paper);
  }
  .pp-buy-box .mode-opt-sub:has(input:checked) {
    background: rgba(122, 61, 20, 0.35);
    border-color: var(--amber);
  }
  .pp-buy-box .mode-opt-sub:has(input:checked) .mode-opt-title { color: var(--paper); }
  .pp-buy-box-meta { display: flex; flex-direction: column; }
  .pp-buy-box-meta .micro { color: rgba(247,241,230,0.65); }

  /* Standalone /checkout/ page */
  .nav-checkout { border-bottom: 1px solid var(--border, #d8cdb6); }
  .checkout-page input[type="email"],
  .checkout-page input[type="text"] {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 12px 14px;
    margin: 4px 0 14px;
    border: 1px solid var(--border, #d8cdb6);
    border-radius: 4px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 15px;
    color: var(--ink);
    background: var(--paper);
  }
  .checkout-page input[type="email"]:focus,
  .checkout-page input[type="text"]:focus {
    outline: none;
    border-color: var(--ink);
    box-shadow: 0 0 0 2px rgba(122,61,20,0.12);
  }
  .checkout-page label {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink);
  }
  .checkout-submit {
    display: block;
    width: 100%;
    background: var(--ink);
    color: var(--paper);
    border: none;
    padding: 18px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    cursor: pointer;
    transition: background 0.18s;
    margin-top: 6px;
  }
  .checkout-submit:hover { background: var(--amber); }
  .checkout-submit:disabled { opacity: 0.5; cursor: not-allowed; }
  .checkout-error {
    background: rgba(184,52,30,0.08);
    border-left: 3px solid #b8341e;
    padding: 12px 14px;
    margin: 0 0 16px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 13px;
    color: #b8341e;
  }
  .checkout-summary {
    background: rgba(122,61,20,0.04);
    padding: 28px;
    border: 1px solid var(--border, #d8cdb6);
    border-radius: 4px;
    align-self: start;
    position: sticky;
    top: 24px;
  }
  .checkout-summary-item {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(26,21,18,0.08);
  }
  .checkout-summary-item:last-child { border-bottom: none; }
  .checkout-summary-name {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 2px;
  }
  .checkout-summary-meta {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 12px;
    color: var(--muted);
  }
  .checkout-summary-price {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
  }
  .checkout-summary-totals {
    margin: 18px 0 0;
    padding: 18px 0 0;
    border-top: 1px solid rgba(26,21,18,0.12);
    font-family: 'IBM Plex Sans', sans-serif;
  }
  .checkout-summary-totals div {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 14px;
    color: var(--muted);
  }
  .checkout-summary-totals div dt, .checkout-summary-totals div dd { margin: 0; }
  .checkout-summary-totals .total {
    padding-top: 12px;
    margin-top: 6px;
    border-top: 1px solid rgba(26,21,18,0.12);
    font-size: 18px;
    color: var(--ink);
    font-weight: 600;
  }
  @media (max-width: 860px) {
    .checkout-page { grid-template-columns: 1fr !important; gap: 32px !important; }
    .checkout-summary { position: static; }
  }

  /* Account pages */
  .account-section {
    margin: 0 0 48px;
    padding: 0;
  }
  .account-section-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin: 0 0 16px;
    padding: 0 0 10px;
    border-bottom: 1px solid var(--border, #d8cdb6);
  }
  .account-section h2 {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 400;
    margin: 0;
    color: var(--ink);
  }
  .account-section-link {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--muted);
    text-decoration: none;
  }
  .account-section-link:hover { color: var(--amber); }
  .account-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(26,21,18,0.08);
    text-decoration: none;
  }
  .account-row:last-child { border-bottom: none; }
  .account-row-link { cursor: pointer; transition: background 0.12s; }
  .account-row-link:hover { background: rgba(122,61,20,0.03); }
  .account-row-title {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 4px;
  }
  .account-row-meta {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 12px;
    color: var(--muted);
  }
  .account-row-value {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    white-space: nowrap;
  }
  .account-addresses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 14px;
  }
  .account-address {
    padding: 14px 16px;
    background: rgba(247,241,230,0.5);
    border: 1px solid var(--border, #d8cdb6);
    border-radius: 4px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 13px;
    line-height: 1.6;
    color: var(--ink);
  }
  .status-pill {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 999px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    background: rgba(26,21,18,0.08);
    color: var(--ink);
  }
  .status-pill.status-active { background: rgba(52,184,30,0.12); color: #1c7a14; }
  .status-pill.status-paid { background: rgba(52,184,30,0.12); color: #1c7a14; }
  .status-pill.status-shipped { background: rgba(122,61,20,0.12); color: #7a3d14; }
  .status-pill.status-pending { background: rgba(184,148,30,0.12); color: #7a5814; }
  .status-pill.status-refunded { background: rgba(184,52,30,0.08); color: #b8341e; }
  .status-pill.status-canceled { background: rgba(120,120,120,0.12); color: var(--muted); }
  .status-pill.status-past_due { background: rgba(184,52,30,0.12); color: #b8341e; }

  /* Footer newsletter block */
  .foot-newsletter {
    background: transparent;
    padding: 28px 0 32px;
    margin: 0 0 24px;
    border-bottom: 1px solid rgba(247,241,230,0.18);
  }
  .foot-newsletter-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: end;
    max-width: 1200px;
  }
  .foot-newsletter h3 {
    font-family: var(--serif);
    font-size: 30px;
    font-weight: 400;
    margin: 8px 0 6px;
    color: var(--paper);
    line-height: 1.15;
  }
  .foot-newsletter p {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 14px;
    color: rgba(247,241,230,0.78);
    margin: 0;
    line-height: 1.55;
    max-width: 50ch;
  }
  .foot-newsletter-form {
    display: flex;
    gap: 0;
    max-width: 460px;
    border: 1px solid rgba(247,241,230,0.3);
    background: rgba(247,241,230,0.04);
  }
  .foot-newsletter-form input[type="email"] {
    flex: 1;
    background: transparent;
    border: 0;
    padding: 14px 16px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 15px;
    color: var(--paper);
    outline: none;
  }
  .foot-newsletter-form input[type="email"]::placeholder { color: rgba(247,241,230,0.45); }
  .foot-newsletter-form button {
    background: var(--paper);
    color: var(--ink);
    border: 0;
    padding: 14px 22px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    cursor: pointer;
    transition: background 0.15s;
  }
  .foot-newsletter-form button:hover { background: var(--amber); color: var(--paper); }
  .foot-newsletter-form button:disabled { opacity: 0.6; cursor: not-allowed; }
  .foot-newsletter-status {
    grid-column: 1 / -1;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 13px;
    margin: 12px 0 0;
    padding: 8px 12px;
    border-radius: 3px;
  }
  .foot-newsletter-status.is-ok { background: rgba(247,241,230,0.08); color: var(--paper); }
  .foot-newsletter-status.is-err { background: rgba(184,52,30,0.18); color: #ffb5a8; }
  @media (max-width: 760px) {
    .foot-newsletter-inner { grid-template-columns: 1fr; gap: 18px; }
  }

  /* Newsletter soft popup */
  .newsletter-popup {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: min(420px, calc(100vw - 32px));
    background: var(--paper);
    border: 1px solid var(--ink);
    box-shadow: 0 12px 40px rgba(26,21,18,0.22);
    padding: 24px 24px 22px;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
    z-index: 999;
    border-radius: 4px;
  }
  .newsletter-popup.is-open { transform: translateY(0); opacity: 1; }
  .newsletter-popup-inner { position: relative; }
  .newsletter-popup-close {
    position: absolute;
    top: -8px; right: -8px;
    background: transparent;
    border: 0;
    font-size: 24px;
    line-height: 1;
    color: var(--muted);
    cursor: pointer;
    padding: 4px 8px;
  }
  .newsletter-popup-close:hover { color: var(--ink); }
  .newsletter-popup h3 {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 400;
    margin: 10px 0 8px;
    color: var(--ink);
    line-height: 1.2;
  }
  .newsletter-popup p {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 14px;
    line-height: 1.55;
    color: var(--muted);
    margin: 0 0 14px;
  }
  .newsletter-popup .foot-newsletter-form {
    border-color: var(--ink);
    background: var(--paper);
    max-width: 100%;
  }
  .newsletter-popup .foot-newsletter-form input[type="email"] { color: var(--ink); }
  .newsletter-popup .foot-newsletter-form input[type="email"]::placeholder { color: rgba(26,21,18,0.4); }
  .newsletter-popup .foot-newsletter-form button { background: var(--ink); color: var(--paper); }
  .newsletter-popup .foot-newsletter-form button:hover { background: var(--amber); }
  .newsletter-popup-fine {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 11px;
    color: var(--muted);
    margin: 12px 0 0;
    line-height: 1.4;
  }
  .newsletter-popup .foot-newsletter-status.is-ok { background: rgba(122,61,20,0.06); color: var(--ink); }
  .newsletter-popup .foot-newsletter-status.is-err { background: rgba(184,52,30,0.08); color: #b8341e; }

  /* Accessibility — skip-to-main + global focus rings */
  .skip-to-main {
    position: absolute;
    left: -9999px;
    top: 8px;
    background: var(--ink);
    color: var(--paper);
    padding: 10px 16px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 13px;
    text-decoration: none;
    z-index: 99999;
    border-radius: 4px;
  }
  .skip-to-main:focus {
    left: 8px;
    outline: 2px solid var(--amber);
    outline-offset: 2px;
  }
  a:focus-visible, button:focus-visible,
  input:focus-visible, select:focus-visible, textarea:focus-visible,
  [tabindex]:focus-visible {
    outline: 2px solid var(--amber);
    outline-offset: 2px;
    border-radius: 2px;
  }

  /* Reduced motion — disable carousel auto-advance + newsletter popup slide */
  @media (prefers-reduced-motion: reduce) {
    .bio-track { transition: none !important; }
    .newsletter-popup { transition: none !important; }
    .cart-drawer { transition: none !important; }
    .product-modal { transition: none !important; }
    *, *::before, *::after {
      animation-duration: 0.001ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.001ms !important;
    }
  }

  /* Mobile cart drawer fills the screen */
  @media (max-width: 720px) {
    .cart-drawer { width: 100vw !important; max-width: none !important; }
    .nav { padding: 12px 16px; }
    .pp-section .inner { padding: 32px 20px; }
    .hero-grid { grid-template-columns: 1fr !important; }
    .checkout-page { padding: 20px !important; }
  }
  .cart-foot .micro {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 10px;
    color: var(--muted);
    text-align: center;
    margin-top: 12px;
    letter-spacing: 0.06em;
  }

  /* Product modal */
  .product-modal {
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0.96);
    width: min(1080px, calc(100vw - 80px));
    max-height: 94vh;
    background: var(--paper);
    box-shadow: 0 24px 80px rgba(26, 21, 18, 0.3);
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    overflow-y: auto;
  }
  .product-modal.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
  }
  .product-modal-grid {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 0;
    align-items: stretch;
  }
  .product-modal-img {
    background: var(--bg);
    min-width: 0;
  }
  .product-modal-img img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
  }
  .product-modal-body {
    padding: 48px 44px 40px 36px;
    position: relative;
  }
  .product-modal-close {
    position: absolute;
    top: 12px; right: 12px;
    width: 36px; height: 36px;
    background: rgba(247, 241, 230, 0.92);
    border: 1px solid var(--rule);
    border-radius: 999px;
    font-size: 22px;
    color: var(--ink);
    cursor: pointer;
    line-height: 1;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
  .product-modal-close:hover { background: var(--paper); }
  .product-modal h2,
  .product-modal .product-modal-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 44px;
    line-height: 1.1;
    font-weight: 300;
    color: var(--ink);
    margin: 18px 0 8px;
  }
  .product-modal h2 em,
  .product-modal .product-modal-title em { color: var(--amber); font-style: italic; }
  .product-modal .modal-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
    line-height: 1.4;
    font-style: italic;
    color: var(--muted);
    margin: 0 0 14px;
  }
  .product-modal .price-line {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    color: var(--ink);
    margin: 8px 0 24px;
  }
  .product-modal .price-line .freq {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 13px;
    color: var(--muted);
    letter-spacing: 0.08em;
    margin-left: 8px;
  }
  .product-modal .desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    line-height: 1.55;
    color: var(--ink);
    margin: 0 0 24px;
  }
  .product-modal .specs {
    list-style: none;
    padding: 16px 0;
    margin: 0 0 24px;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }
  .product-modal .specs li {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 13px;
    color: var(--ink);
    padding: 6px 0;
    display: flex;
    justify-content: space-between;
  }
  .product-modal .specs li span:first-child {
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 11px;
  }
  .product-modal-add {
    background: var(--ink);
    color: var(--paper);
    border: none;
    padding: 18px 32px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    cursor: pointer;
    width: 100%;
    transition: background 0.18s;
  }
  .product-modal-add:hover { background: var(--amber); }
  .product-modal .micro {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 10px;
    color: var(--muted);
    margin-top: 12px;
    text-align: center;
    letter-spacing: 0.06em;
  }

  /* Checkout overlay (simple form) */
  .checkout-modal {
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0.96);
    width: min(560px, calc(100vw - 80px));
    max-height: 88vh;
    background: var(--paper);
    box-shadow: 0 24px 80px rgba(26, 21, 18, 0.3);
    z-index: 110;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    overflow-y: auto;
    padding: 40px;
  }
  .checkout-modal.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
  }
  .checkout-close {
    position: absolute;
    top: 16px; right: 16px;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--muted);
    cursor: pointer;
    line-height: 1;
  }
  .checkout-modal h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 400;
    margin: 0 0 8px;
    color: var(--ink);
  }
  .checkout-modal .sub {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--muted);
    margin-bottom: 24px;
  }
  .checkout-form label {
    display: block;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--muted);
    margin: 14px 0 4px;
  }
  .checkout-form input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--rule);
    background: var(--bg);
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 14px;
    color: var(--ink);
    box-sizing: border-box;
  }
  .checkout-form .row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .checkout-submit {
    width: 100%;
    background: var(--ink);
    color: var(--paper);
    border: none;
    padding: 18px;
    margin-top: 24px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    cursor: pointer;
  }
  .checkout-submit:hover { background: var(--amber); }
  .checkout-submit:disabled { opacity: 0.55; cursor: progress; background: var(--ink); }
  [data-stripe-address-element],
  [data-stripe-payment-element] {
    margin-top: 16px;
    min-height: 1px;
  }
  [data-stripe-payment-element]:not(:empty),
  [data-stripe-address-element]:not(:empty) {
    margin-top: 18px;
    padding: 14px;
    background: var(--bg);
    border: 1px solid var(--rule);
  }
  .checkout-error {
    margin-top: 14px;
    padding: 12px 14px;
    background: #f7e6e0;
    border-left: 3px solid #b8341e;
    color: #1a1512;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 13px;
    line-height: 1.5;
  }
  .checkout-success {
    text-align: center;
    padding: 24px 0;
  }
  .checkout-success h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 400;
    color: var(--amber);
    margin: 0 0 8px;
  }
  .checkout-success p {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--muted);
  }

  /* Bio-card link row + science-citation modal */
  .bio-card-links {
    display: flex; flex-wrap: wrap; gap: 22px; align-items: center;
    margin-top: 4px;
  }
  .bio-learn {
    font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--muted); border-bottom: 1px solid var(--rule);
    padding-bottom: 2px; cursor: pointer; background: none; border-left: none;
    border-right: none; border-top: none;
    font-family: 'IBM Plex Sans', sans-serif;
  }
  .bio-learn:hover { color: var(--amber); border-bottom-color: var(--amber); }

  .science-modal {
    position: fixed; top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0.96);
    width: min(720px, calc(100vw - 80px));
    max-height: 86vh;
    background: var(--paper);
    box-shadow: 0 24px 80px rgba(26, 21, 18, 0.3);
    z-index: 110;
    opacity: 0; pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    overflow-y: auto;
    padding: 48px 52px;
  }
  .science-modal.is-open {
    opacity: 1; pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
  }
  .science-modal-close {
    position: absolute; top: 16px; right: 16px;
    background: none; border: none;
    font-size: 24px; color: var(--muted);
    cursor: pointer; line-height: 1;
  }
  .science-panel { display: none; }
  .science-panel.is-active { display: block; }
  .science-panel .pill {
    color: var(--amber);
  }
  .science-panel h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px; font-weight: 400; line-height: 1.15;
    margin: 14px 0 24px;
    color: var(--ink);
  }
  .science-panel h2 em {
    color: var(--amber); font-style: italic;
  }
  .science-panel h3 {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--muted); margin: 26px 0 14px; font-weight: 500;
  }
  .science-panel ul {
    list-style: none; padding: 0; margin: 0 0 16px;
  }
  .science-panel li {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px; line-height: 1.55;
    color: var(--ink);
    padding: 12px 0; border-top: 1px solid var(--rule);
  }
  .science-panel li:first-child { border-top: none; padding-top: 6px; }
  .science-panel li em { color: var(--muted); font-style: italic; }
  .science-panel .beg-note {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 15px; line-height: 1.5;
    color: var(--ink);
    background: var(--bg);
    border-left: 2px solid var(--amber);
    padding: 16px 18px;
    margin-top: 18px;
  }

  /* ─────────────────────────────────────────────────────────
     Tablet  (≤ 1100px)
     ───────────────────────────────────────────────────────── */
  @media (max-width: 1100px) {
    .hero-grid { grid-template-columns: 1fr; min-height: 0; }
    .hero-text { padding: 56px 48px 32px; }
    .hero-img img { height: auto; max-height: 480px; }
    .founder { grid-template-columns: 1fr; min-height: 0; }
    .founder-body { padding: 56px 48px; border-left: none; border-top: 1px solid var(--rule); }
    .rail { grid-template-columns: 1fr; }
    .rail.reverse .rail-img { order: 0; }
    .rail-img { height: 360px; }
    .rail-body { padding: 56px 48px; }
    .bio-mech { grid-template-columns: 1fr; gap: 24px; }
    .standards-cols { grid-template-columns: 1fr; gap: 32px; }
    .voices-grid { grid-template-columns: repeat(2, 1fr); }
    .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .gap { padding: 80px 48px 56px; }
    .bio-short { padding: 48px 48px 80px; }
    .first-six { padding: 56px 48px; }
    .founder-note-grid { grid-template-columns: 64px 1fr; gap: 24px; padding: 56px 48px; }
  }

  /* Tablet voices grid */
  @media (max-width: 1100px) {
    .voices { padding: 80px 36px; }
    .voices-grid { grid-template-columns: 1fr 1fr; gap: 22px; }
    .voices-stats { grid-template-columns: 1fr 1fr 1fr; gap: 28px; }
    .voices-head h2 { font-size: 38px; }
  }

  /* ─────────────────────────────────────────────────────────
     Mobile  (≤ 760px) — phone breakpoint
     ───────────────────────────────────────────────────────── */
  @media (max-width: 760px) {
    /* Logo + nav row */
    .nav { padding: 18px 20px; }
    .nav-right { gap: 14px; }
    .logo { font-size: 22px; gap: 8px; }
    .logo .mark { width: 10px; height: 26px; }
    .bag { padding: 6px 10px; font-size: 11px; }

    /* Pre-hero loss strip */
    .prehero-loss-c {
      padding: 14px 18px; font-size: 11px; gap: 8px;
      flex-direction: column; text-align: center;
      align-items: center; line-height: 1.4;
    }
    .prehero-loss-c .num { font-size: 14px; }
    .prehero-loss-c .copy { flex: none; }
    .prehero-loss-c .tag { font-size: 9px; }

    /* Hero */
    .hero-grid { grid-template-columns: 1fr; }
    .hero-text { padding: 36px 22px 28px; }
    .hero-text h1 {
      font-size: 34px !important;
      line-height: 1.08 !important;
      overflow-wrap: anywhere;
      word-break: break-word;
      hyphens: auto;
    }
    .hero-lede { font-size: 16px !important; line-height: 1.55 !important; }
    .cta-row { flex-direction: column; gap: 12px; align-items: stretch; }
    .cta-row .btn { text-align: center; width: 100%; box-sizing: border-box; }
    .hero-sub { flex-direction: column; gap: 18px; }
    .hero-sub-l { max-width: none; }
    .hero-sub-n { font-size: 22px; }
    .hero-img {
      position: relative;
      width: 100%;
      aspect-ratio: 4 / 3;
      min-height: 280px;
    }
    .hero-img img {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
    }
    .hero-img .img-caption { font-size: 9px; padding: 6px 10px; }
    .hero-pair { aspect-ratio: 3 / 2; }
    .hero-pair figcaption { font-size: 11px; padding: 9px 12px 11px; }
    .hero-pair figcaption span { font-size: 13px; }
    .proof { padding: 56px 22px; }
    .proof-head { margin-bottom: 32px; }
    .proof-head h2 { font-size: 30px; }

    /* Founder note */
    .founder-note-grid { grid-template-columns: 1fr !important; gap: 18px; padding: 40px 22px; text-align: left; }
    .founder-note-grid .avatar { width: 64px; height: 64px; }
    .founder-note-grid blockquote { font-size: 18px !important; line-height: 1.45 !important; }

    /* § 01 The gap */
    .gap { padding: 64px 22px 40px; }
    .gap h2 { font-size: 32px !important; line-height: 1.1 !important; }

    /* § 02 Biology */
    .bio-short { padding: 32px 22px 64px; }
    .bio-card { padding: 32px 24px; }
    .bio-card h3 { font-size: 22px !important; }
    .bio-card-num { font-size: 10px; letter-spacing: 0.18em; }
    .bio-card p { font-size: 14px; }
    .consequence { font-size: 15px; padding: 14px 16px; }
    .compare-slider figure img { height: 140px; }
    .compare-slider figcaption { font-size: 9px; padding: 8px 10px; }
    .bio-card-links { flex-direction: column; align-items: flex-start; gap: 14px; }

    /* First-six band */
    .first-six { padding: 40px 22px; }
    .first-six h2 { font-size: 26px !important; }
    .first-six p { font-size: 16px; }

    /* Voices */
    .voices { padding: 56px 22px; }
    .voices-head { margin-bottom: 40px; }
    .voices-head h2 { font-size: 28px !important; }
    .voices-head p { font-size: 14px; }
    .voices-grid { grid-template-columns: 1fr; gap: 18px; }
    .voice-card { padding: 26px 22px; gap: 18px; }
    .voice-card blockquote { font-size: 18px; }
    .voices-stats { margin-top: 48px; padding-top: 36px; grid-template-columns: 1fr; gap: 28px; }
    .voices-stat .figure { font-size: 42px; }

    /* Product rails */
    .rail { grid-template-columns: 1fr !important; }
    .rail.reverse .rail-img { order: 0; }
    .rail-img { height: 300px; }
    .rail-body { padding: 40px 22px; }
    .rail-body h2 { font-size: 36px !important; }
    .rail-lede { font-size: 16px !important; }
    .rail-pulls li {
      padding: 16px 0;
      grid-template-columns: 1fr;
      gap: 6px;
    }
    .rail-pull-name { font-size: 18px; }
    .rail-pull-desc { font-size: 14px; line-height: 1.45; }
    .rail-ctas { flex-direction: column; align-items: stretch; gap: 12px; }
    .rail-ctas .btn { text-align: center; }

    /* Founder section */
    .founder { grid-template-columns: 1fr; }
    .founder-img img { height: 320px; }
    .founder-body { padding: 40px 22px; border-top: 1px solid var(--rule); border-left: none; }
    .founder-body h2 { font-size: 30px !important; }

    /* Two paths · same woman section (tp-card) */
    .twopaths-combined { padding: 56px 22px; }
    .twopaths-combined .head h2 { font-size: 30px !important; line-height: 1.1 !important; }
    .twopaths-combined .head .lede { font-size: 16px !important; }
    .twopaths-combined .head { margin-bottom: 28px; }
    .tp-grid { grid-template-columns: 1fr !important; gap: 24px; }
    .tp-card { padding: 28px 22px; }
    .tp-card h3 { font-size: 22px !important; }
    .tp-row { grid-template-columns: 48px 1fr; gap: 10px; }
    .tp-row .desc { font-size: 14px; }

    /* CTA close */
    .cta { padding: 56px 22px 56px; }
    .cta h2 { font-size: 38px !important; line-height: 1.05 !important; }
    .cta-lede { font-size: 17px; margin-bottom: 28px; }
    .cta-row-dual { flex-direction: column; gap: 12px; }
    .cta-row-dual .btn { width: 100%; box-sizing: border-box; text-align: center; }
    .cta-sub { font-size: 10px; letter-spacing: 0.06em; }

    /* Standards / voices (if rendered) */
    .standards-cols { grid-template-columns: 1fr !important; }
    .voices-grid { grid-template-columns: 1fr !important; }

    /* Footer */
    .foot { padding: 48px 18px 24px; }
    .foot-grid { grid-template-columns: 1fr; gap: 32px; margin-bottom: 32px; }
    .foot-col { font-size: 13px; }
    .foot-tag { max-width: none; font-size: 15px; }
    .foot-legal { align-items: stretch; }
    .foot-legal > span { display: block; width: 100%; word-wrap: break-word; overflow-wrap: anywhere; }
    .foot-legal .row-sm { flex-direction: column; gap: 6px; }
    .foot-legal .row-sm > span { display: block; }

    /* Cart drawer */
    .cart-drawer { width: 100vw; max-width: none; }

    /* Product modal */
    .product-modal {
      width: calc(100vw - 24px);
      max-height: 92vh;
      padding: 24px 20px;
    }
    .product-modal-grid { grid-template-columns: 1fr; gap: 18px; }
    .product-modal-img img { height: 220px; object-fit: cover; }
    .product-modal h2, .product-modal .product-modal-title { font-size: 26px !important; }

    /* Checkout modal */
    .checkout-modal {
      width: calc(100vw - 24px);
      padding: 28px 22px;
    }

    /* Science modal */
    .science-modal {
      width: calc(100vw - 24px);
      padding: 32px 22px;
      max-height: 92vh;
    }
    .science-panel h2 { font-size: 24px !important; }
    .science-panel li { font-size: 15px; }
    .science-panel .beg-note { font-size: 14px; }
  }

  /* ───────────────────────────────────────────
     Sub-page layout (product, about, faq,
     biology, evidence, contact pages)
     ─────────────────────────────────────────── */

  /* Product page hero */
  .pp-hero {
    display: grid; grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--rule);
    background: var(--bg);
  }
  .pp-hero-img { background: var(--paper); position: relative; min-height: 560px; }
  .pp-hero-img img { width: 100%; height: 100%; object-fit: contain; position: absolute; inset: 0; }
  .pp-hero-body { padding: 96px 72px; display: flex; flex-direction: column; justify-content: center; background: var(--paper); }
  .pp-eyebrow { font-family: var(--sans); font-size: 13px; font-weight: 500; color: var(--muted); margin-bottom: 14px; }
  .pp-hero-body h1 { font-family: var(--serif); font-size: 80px; line-height: 0.98; font-weight: 400; letter-spacing: -0.025em; margin: 0 0 28px; }
  .pp-hero-body h1 em { color: var(--amber); font-style: italic; font-weight: 400; }
  .pp-hero-body .lede { font-family: var(--serif); font-size: 22px; line-height: 1.45; font-style: italic; color: var(--muted); margin: 0 0 32px; max-width: 540px; }
  .pp-hero-price { font-family: var(--serif); font-size: 32px; color: var(--ink); margin: 0 0 6px; }
  .pp-hero-price-sub { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }

  /* --- Conversion assets: editorial figures + restrained hero motion --- */
  .pp-figure { margin: 48px 0 8px; }
  .pp-figure img { width: 100%; height: auto; display: block; background: var(--paper); }
  .pp-figure figcaption {
    font-family: var(--serif); font-style: italic; font-size: 16px;
    color: var(--muted); text-align: center; margin-top: 16px;
    letter-spacing: 0.01em; max-width: 620px; margin-left: auto; margin-right: auto;
  }
  .pp-figure.feature { max-width: 1180px; margin-left: auto; margin-right: auto; }
  .pp-figure.diagram img { border: 1px solid var(--rule); }
  .pp-section .inner > .pp-figure:first-child { margin-top: 0; }

  /* Restrained hero motion — slow breath + a soft paper-toned light drift.
     Auto-disabled by the prefers-reduced-motion guard above. */
  .pp-hero-img { overflow: clip; }
  .pp-hero-img img { animation: pp-breath 22s ease-in-out infinite alternate; will-change: transform; }
  .pp-hero-img::after {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background: linear-gradient(115deg, transparent 40%, rgba(247,241,230,0.26) 50%, transparent 60%);
    animation: pp-sweep 15s ease-in-out infinite alternate;
  }
  @keyframes pp-breath { from { transform: scale(1); } to { transform: scale(1.045); } }
  @keyframes pp-sweep { from { transform: translateX(-32%); } to { transform: translateX(32%); } }

  /* ---- GLP-1 Side Effects page hero (text left, lifestyle image right) ---- */
  .bio-hero { background: var(--paper); border-bottom: 1px solid var(--rule); }
  .bio-hero-grid {
    display: grid; grid-template-columns: 1.02fr 1fr; gap: 56px;
    align-items: center; max-width: 1200px; margin: 0 auto; padding: 72px 80px;
    min-height: 80vh;
  }
  .bio-hero-text h1 {
    font-family: var(--serif); font-size: clamp(44px, 5.8vw, 82px);
    line-height: 1.04; letter-spacing: -0.02em; font-weight: 400; margin: 0 0 24px;
  }
  .bio-hero-text h1 em { color: var(--amber); font-style: italic; }
  .bio-hero-lede {
    font-family: var(--sans); font-size: 20px; line-height: 1.6;
    color: var(--muted); margin: 0 0 30px; max-width: 46ch;
  }
  .bio-hero-img {
    margin: 0; border-radius: 24px; overflow: hidden;
    aspect-ratio: 1 / 1; background: var(--warm);
  }
  .bio-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
  @media (max-width: 900px) {
    .bio-hero-grid { grid-template-columns: 1fr; gap: 30px; padding: 44px 22px 52px; min-height: 0; }
    .bio-hero-text h1 { font-size: clamp(34px, 9vw, 52px); }
    .bio-hero-img { aspect-ratio: 16 / 10; }
  }

  /* Long-form section wrapper */
  .pp-section {
    padding: 96px 80px; border-bottom: 1px solid var(--rule);
    background: var(--paper);
  }
  .pp-section.dark { background: var(--bg); }
  .pp-section .inner { max-width: 920px; margin: 0 auto; }
  .pp-section h1,
  .pp-section h2 {
    font-family: var(--serif); font-size: 42px; line-height: 1.1;
    font-weight: 400; letter-spacing: -0.02em; margin: 0 0 28px;
  }
  .pp-section h1 em,
  .pp-section h2 em { color: var(--amber); font-style: italic; }
  .pp-section h3 {
    font-family: var(--serif); font-size: 26px; font-weight: 500;
    line-height: 1.2; margin: 36px 0 14px;
  }
  .pp-section p {
    font-size: 16px; line-height: 1.7; color: var(--ink);
    margin: 0 0 18px; max-width: 720px;
  }
  .pp-section p.lede {
    font-family: var(--serif); font-size: 22px; line-height: 1.5;
    font-style: italic; color: var(--muted); margin: 0 0 28px;
  }
  .pp-section p.pp-spoke {
    font-family: var(--sans); font-size: 13px; letter-spacing: 0.02em;
    line-height: 1.5; margin: 0 0 18px; max-width: 720px;
  }
  .pp-section p.pp-spoke a {
    color: var(--amber); border-bottom: 1px solid rgba(122, 61, 20, 0.35);
    padding-bottom: 1px;
  }
  .pp-section p.pp-spoke a:hover { border-bottom-color: var(--amber); }
  .pp-section ul { padding-left: 20px; line-height: 1.7; font-size: 16px; }
  .pp-section ul li { margin-bottom: 8px; max-width: 720px; }
  .ps-list { border-top: 1px solid var(--rule); }
  .ps-row {
    display: flex; align-items: baseline; justify-content: space-between;
    gap: 24px; padding: 22px 4px;
    border-bottom: 1px solid var(--rule);
    text-decoration: none; transition: padding-left 0.18s ease;
  }
  .ps-row:hover { padding-left: 12px; }
  .ps-problem {
    font-family: var(--serif); font-size: 26px; line-height: 1.2;
    color: var(--ink);
  }
  .ps-product {
    font-family: var(--sans); font-size: 14px; font-weight: 600;
    letter-spacing: 0.04em; color: var(--amber); white-space: nowrap;
  }

  /* Ingredient panel (product pages) */
  .ingredient-panel {
    border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
    padding: 28px 0; margin: 32px 0 28px;
    list-style: none;
  }
  .ingredient-panel li {
    display: grid; grid-template-columns: 220px 1fr; gap: 24px;
    padding: 14px 0; border-top: 1px solid var(--rule);
    font-size: 14px;
  }
  .ingredient-panel li:first-child { border-top: none; }
  .ingredient-panel .ing-name {
    font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--ink);
  }
  .ingredient-panel .ing-desc { color: var(--muted); line-height: 1.55; }

  /* Buy CTA box */
  .pp-buy-box {
    background: var(--ink); color: var(--paper);
    padding: 48px 56px; max-width: 920px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr auto; gap: 24px;
    align-items: center;
  }
  .pp-buy-box h3 { font-family: var(--serif); font-size: 28px; font-weight: 400; margin: 0 0 6px; }
  .pp-buy-box p { font-size: 13px; color: rgba(247,241,230,0.8); margin: 0; }
  .pp-buy-box .btn { background: var(--amber); color: var(--paper); padding: 18px 36px; }

  /* Cross-sell strip */
  .cross-sell {
    padding: 90px 72px; border-bottom: 1px solid var(--rule);
    background: var(--paper);
  }
  .cross-sell h3 {
    font-family: var(--serif); font-size: 28px; font-weight: 500;
    margin: 0 0 32px; text-align: center; font-style: italic; color: var(--muted);
  }
  .cross-sell-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
    max-width: 1280px; margin: 0 auto;
  }
  .cross-sell a {
    display: block; background: var(--bg); padding: 0;
    border: 1px solid var(--rule); transition: border-color 0.18s;
  }
  .cross-sell a:hover { border-color: var(--amber); }
  .cross-sell .cs-img { aspect-ratio: 1; background: var(--paper); overflow: hidden; }
  .cross-sell .cs-img img { width: 100%; height: 100%; object-fit: contain; display: block; }
  .cross-sell .cs-body { padding: 18px 22px 22px; }
  .cross-sell .cs-name { font-family: var(--serif); font-size: 22px; font-style: italic; margin: 0 0 4px; }
  .cross-sell .cs-meta { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }

  /* Citations panel on long pages */
  .citations { background: var(--bg); padding: 80px 80px; border-bottom: 1px solid var(--rule); }
  .citations .inner { max-width: 920px; margin: 0 auto; }
  .citations h2 { font-family: var(--serif); font-size: 36px; font-weight: 400; margin: 0 0 24px; }
  .citations h2 em { color: var(--amber); font-style: italic; }
  .citations h3 {
    font-family: var(--sans); font-size: 11px; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--muted); margin: 26px 0 12px; font-weight: 500;
  }
  .citations ul { list-style: none; padding: 0; margin: 0 0 18px; }
  .citations li {
    font-family: var(--serif); font-size: 16px; line-height: 1.55;
    padding: 12px 0; border-top: 1px solid var(--rule); color: var(--ink);
  }
  .citations li:first-child { border-top: none; }

  /* FAQ accordion-style */
  .faq-list { max-width: 880px; margin: 0 auto; }
  .faq-section { margin-bottom: 56px; }
  .faq-section .label { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--amber); margin-bottom: 18px; }
  .faq-q {
    border-top: 1px solid var(--rule);
    padding: 22px 0;
  }
  .faq-q:last-child { border-bottom: 1px solid var(--rule); }
  .faq-q h4 {
    font-family: var(--serif); font-size: 22px; font-weight: 400;
    margin: 0 0 10px; color: var(--ink);
  }
  .faq-q p { font-size: 15px; line-height: 1.6; color: var(--muted); margin: 0; max-width: 720px; }

  /* Contact form */
  .contact-grid {
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px;
    max-width: 1080px; margin: 0 auto;
  }
  .contact-info p { font-size: 16px; line-height: 1.7; color: var(--ink); }
  .contact-info .email-line { font-family: var(--serif); font-size: 24px; color: var(--amber); margin: 18px 0; }
  .contact-form label { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted); margin: 14px 0 6px; }
  .contact-form input, .contact-form textarea {
    width: 100%; padding: 12px 14px; border: 1px solid var(--rule); background: var(--bg);
    font-family: 'IBM Plex Sans', sans-serif; font-size: 14px; color: var(--ink);
    box-sizing: border-box;
  }
  .contact-form textarea { min-height: 160px; resize: vertical; }
  .contact-form button { background: var(--ink); color: var(--paper); border: none; padding: 18px 32px; margin-top: 22px; font-size: 12px; text-transform: uppercase; letter-spacing: 0.18em; cursor: pointer; }
  .contact-form button:hover { background: var(--amber); }

  /* About page founder block */
  .about-hero {
    display: grid; grid-template-columns: 0.85fr 1.15fr;
    background: var(--paper); border-bottom: 1px solid var(--rule);
    min-height: 600px;
  }
  .about-hero-img {
    background: var(--bg);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 36px;
    padding: 64px 48px;
  }
  /* Source is 1024x1024 (HD upscale via BFL Flux Kontext);
     display capped at 340px so it sits comfortably in the column
     and stays crisp at retina sizes. */
  .about-hero-img img {
    width: 100%;
    max-width: 340px;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border: 1px solid var(--rule);
  }
  /* Founder "why I started APLOMB" video replaces the square portrait.
     Source is 720x1280 (9:16 portrait, stitched clips 08+09). */
  .founder-video-wrap {
    position: relative;
    width: 100%;
    max-width: 340px;
  }
  .about-hero-img video.founder-video {
    width: 100%;
    max-width: 340px;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border: 1px solid var(--rule);
    display: block;
    background: #000;
  }
  /* Prominent custom play button over the poster */
  .video-play {
    position: absolute; inset: 0; margin: auto;
    width: 136px; height: 136px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 9px;
    padding: 0; border: 0; border-radius: 50%;
    background: rgba(26, 29, 33, 0.55);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.28), 0 6px 24px rgba(0, 0, 0, 0.28);
    color: #fff; cursor: pointer;
    transition: transform .15s ease, background .15s ease;
  }
  .video-play:hover,
  .video-play:focus-visible { transform: scale(1.06); background: rgba(26, 29, 33, 0.72); }
  .video-play-ico {
    width: 0; height: 0; margin-left: 7px;
    border-style: solid;
    border-width: 18px 0 18px 30px;
    border-color: transparent transparent transparent #fff;
  }
  .video-play-txt {
    font-family: var(--sans); font-size: 12px; font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase;
  }
  .founder-video-wrap.is-playing .video-play { display: none; }
  .founder-portrait {
    display: flex; flex-direction: column;
    align-items: center; gap: 14px;
  }
  .founder-caption {
    font-family: var(--serif); font-size: 22px;
    color: var(--ink); text-align: center; letter-spacing: -0.01em;
  }
  .about-hero-body {
    padding: 88px 72px;
    display: flex; flex-direction: column; justify-content: center;
  }
  /* About-hero "Why Aplomb." variant — typography for the long lede */
  .about-why .about-hero-body h1 {
    font-family: var(--serif);
    font-size: clamp(52px, 5.4vw, 80px); line-height: 1.03;
    font-weight: 400; letter-spacing: -0.025em;
    margin: 0 0 26px;
  }
  .about-why .about-hero-body h1 em {
    color: var(--amber); font-style: italic;
  }
  .about-why .about-hero-body p {
    font-family: var(--serif);
    font-size: 17px; line-height: 1.6;
    color: var(--ink); margin: 0 0 16px;
    max-width: 560px;
  }
  .about-why .about-hero-body p.kicker {
    color: var(--ink); font-size: 17px; font-weight: 600;
    margin-top: 12px;
  }

  /* Credentials strip (institution wordmarks) — sits under the
     founder portrait inside .about-hero-img on the About page. */
  .creds {
    width: 100%;
    max-width: 480px;
  }
  .creds-label {
    font-family: var(--sans); font-size: 13px; font-weight: 500;
    color: var(--muted); margin-bottom: 20px; text-align: center;
  }
  .creds-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 32px;
    align-items: start;
  }
  .cred {
    display: flex; flex-direction: column; align-items: center;
    text-align: center;
    color: var(--muted);
    transition: color 0.25s ease;
  }
  .cred:hover { color: var(--amber); }
  .cred-mark {
    width: 60px; height: 60px;
    margin-bottom: 14px;
    color: inherit;
  }
  .cred-mark svg { width: 100%; height: 100%; display: block; }
  .cred-name {
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.04em;
    line-height: 1.4;
    color: var(--ink);
    max-width: 160px;
  }

  /* ─── Sub-page mobile breakpoints ─── */
  @media (max-width: 1100px) {
    .pp-hero { grid-template-columns: 1fr; }
    .pp-hero-img { min-height: 360px; }
    .pp-hero-body { padding: 56px 48px; }
    .pp-section { padding: 64px 48px; }
    .citations { padding: 56px 48px; }
    .cross-sell-grid { grid-template-columns: repeat(2, 1fr); }
    .pp-buy-box { grid-template-columns: 1fr; padding: 36px 32px; }
    .about-hero { grid-template-columns: 1fr; }
    .about-hero-img { min-height: 0; padding: 48px; }
    .about-hero-img img { max-width: 280px; }
    .founder-video-wrap, .about-hero-img video.founder-video { max-width: 280px; }
    .about-hero-body { padding: 56px 48px; }
    .about-why .about-hero-body h1 { font-size: 42px !important; }
    .creds-row { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  }
  @media (max-width: 760px) {
    .pp-hero-body h1 { font-size: 38px !important; line-height: 1.05 !important; }
    .pp-hero-body { padding: 32px 22px; }
    .pp-section { padding: 40px 22px; }
    .pp-section h1, .pp-section h2 { font-size: 28px !important; }
    .ingredient-panel li { grid-template-columns: 1fr; gap: 4px; }
    .pp-buy-box { padding: 28px 22px; }
    .cross-sell { padding: 48px 22px; }
    .cross-sell-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .citations { padding: 36px 22px; }
    .citations h2 { font-size: 26px; }
    .about-hero-body { padding: 32px 22px; }
    .about-hero-body h1 { font-size: 36px !important; }
    .about-hero-img { padding: 36px 22px; }
    .about-hero-img img { max-width: 220px; }
    .founder-video-wrap, .about-hero-img video.founder-video { max-width: 240px; }
    .about-why .about-hero-body h1 { font-size: 32px !important; }
    .about-why .about-hero-body p { font-size: 15px; }
    .creds-row { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .cred-name { font-size: 10px; }
  }

  /* ==========================================================================
     MIDI-HEALTH REDESIGN LAYER  (2026-05-17)
     Appended last so same-specificity rules win the cascade. Restyles the
     existing live class names toward the 05-midi-health.html design system
     (warm, empathetic, soft-rounded, credibility-led). No JS-required class
     is renamed; JS state hooks (.is-open/.is-active/.is-paused/.no-scroll/
     [hidden]/.is-ok/.is-err) and transform/opacity open mechanics preserved.
     ========================================================================== */

  :root {
    --bg: #f3ecdf;
    --paper: #fdf8ee;
    --warm: #efe2cb;
    --ink: #1a1512;
    --amber: #7a3d14;
    --amber-light: #d9a06b;
    --rule: #ddd0b8;
    --muted: #6b5d4c;
  }

  body { line-height: 1.62; }
  .site { background: var(--bg); max-width: none; width: 100%; }
  h1, h2, h3 { font-weight: 400; }

  /* ---- Nav: sticky, translucent, soft ---- */
  .nav {
    position: sticky; top: 0; z-index: 50;
    padding: 20px 40px; border-bottom: none;
    background: rgba(243, 236, 223, 0.94);
    -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  }
  .logo { font-size: 26px; }
  .logo .mark { width: auto; height: 30px; }
  .logo a { display: inline-flex; align-items: center; gap: 9px; }
  .nav-links { gap: 32px; font-size: 15px; font-weight: 500; color: var(--muted); }
  .nav-links a { transition: color 0.15s; text-transform: lowercase; }
  .nav-links a:hover { color: var(--ink); }
  .nav-right { gap: 16px; font-size: 15px; font-weight: 500; }
  .nav-right a { color: var(--muted); transition: color 0.15s; }
  .nav-right a:hover { color: var(--ink); }
  .bag {
    padding: 10px 18px; border: none; border-radius: 999px;
    background: var(--warm); color: var(--ink); font-weight: 600; font-size: 14px;
  }
  .bag:hover { background: var(--amber); color: var(--paper); }

  /* ---- Mobile nav: hamburger + full-screen overlay (built by nav.js) ----
     Hidden by default; the responsive block at the end of the file reveals
     the hamburger at <=980px (the same point .nav-links is hidden). */
  .nav-hamburger {
    display: none;
    flex-direction: column; justify-content: center; gap: 5px;
    width: 44px; height: 44px; padding: 11px; margin-left: 6px;
    background: none; border: 0; cursor: pointer; color: var(--ink);
    -webkit-tap-highlight-color: transparent;
  }
  .nav-hamburger span {
    display: block; width: 100%; height: 2px; border-radius: 2px;
    background: currentColor;
    transition: transform var(--dur) var(--ease-out), opacity var(--dur-fast) ease;
  }
  .nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .mobile-overlay {
    position: fixed; inset: 0; z-index: 1000;
    display: flex; flex-direction: column;
    background: var(--paper);
    padding: 20px 24px calc(28px + env(safe-area-inset-bottom));
    opacity: 0; transform: translateY(-8px);
    transition: opacity 0.32s var(--ease-out), transform 0.32s var(--ease-out);
    overflow-y: auto;
  }
  .mobile-overlay.is-open { opacity: 1; transform: none; }
  .mobile-overlay[hidden] { display: none; }
  .mobile-overlay-head {
    display: flex; align-items: center; justify-content: space-between; min-height: 44px;
  }
  .mobile-overlay-word {
    font-family: var(--serif); font-style: italic; font-size: 26px; font-weight: 500;
    letter-spacing: -0.02em; color: var(--ink); line-height: 1;
  }
  .mobile-overlay-word .dot { color: var(--amber); font-style: normal; }
  .mobile-overlay-close {
    width: 44px; height: 44px; padding: 0; line-height: 1;
    background: none; border: 0; cursor: pointer; font-size: 30px; color: var(--ink);
    -webkit-tap-highlight-color: transparent;
  }
  .mobile-overlay-nav {
    flex: 1 1 auto; display: flex; flex-direction: column;
    justify-content: center; gap: 2px; padding: 24px 0;
  }
  .mobile-overlay-nav > a {
    font-family: var(--serif); font-size: 30px; font-weight: 500; line-height: 1.1;
    color: var(--ink); padding: 11px 0; min-height: 44px;
    display: flex; align-items: center; text-transform: lowercase;
    background: none; border: 0; text-align: left; cursor: pointer; width: 100%;
  }
  .mobile-overlay-foot {
    display: flex; align-items: center; gap: 18px;
    border-top: 1px solid var(--rule); padding-top: 22px;
  }
  .mobile-overlay-foot a {
    font-family: var(--sans); font-size: 15px; font-weight: 600; color: var(--ink);
    min-height: 44px; display: flex; align-items: center;
  }

  /* ---- Buttons ---- */
  .btn, .btn-dark {
    display: inline-block; background: var(--amber); color: #fdf8ee;
    font-size: 15px; font-weight: 600; padding: 15px 30px; border-radius: 10px;
    border: none; letter-spacing: 0; text-transform: none;
    transition: background 0.18s, color 0.18s;
  }
  .btn:hover, .btn-dark:hover { background: var(--ink); color: #fdf8ee; }
  .btn-outline {
    background: var(--paper); color: var(--ink); border: 1px solid var(--rule);
    border-radius: 10px; padding: 15px 30px; font-weight: 600;
    letter-spacing: 0; text-transform: none;
  }
  .btn-outline:hover { background: var(--warm); color: var(--ink); }
  .cta-row { display: flex; flex-direction: row; flex-wrap: wrap; gap: 14px; align-items: center; }

  /* ---- Hero (homepage) ---- */
  .hero {
    background: var(--warm); border-radius: 0 0 36px 36px;
    padding: 0; margin: 0; border: none;
  }
  .hero-grid {
    display: grid; grid-template-columns: 1.05fr 1fr; gap: 50px;
    align-items: center; padding: 64px 40px 76px; max-width: 1200px; margin: 0 auto;
    min-height: 0;
  }
  .hero-text { padding: 0; display: flex; flex-direction: column; justify-content: center; }
  .hero-text h1 {
    font-family: var(--serif); font-size: clamp(38px, 5.4vw, 76px);
    line-height: 1.06; letter-spacing: -0.02em; margin: 0 0 22px; font-weight: 400;
  }
  .hero-text h1 em { color: var(--amber); font-style: italic; }
  .hero-lede {
    font-family: var(--sans); font-style: normal; font-size: 19px;
    line-height: 1.6; color: var(--muted); margin: 0 0 30px; max-width: 46ch;
  }
  .hero-lede strong, .hero-lede b { font-style: normal; }
  .hero-img { border-radius: 24px; overflow: hidden; aspect-ratio: 1 / 1; background: var(--paper); }
  .hero-img img { width: 100%; height: 100%; object-fit: cover; }
  .cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

  /* ---- Two-women hero pair (replaces the single .hero-img on the homepage) ---- */
  .hero-pair {
    display: grid; grid-template-columns: 1fr 1fr; aspect-ratio: 1 / 1;
    border-radius: 24px; overflow: hidden; background: var(--paper); align-self: stretch;
  }
  .hero-pair figure { margin: 0; display: flex; flex-direction: column; background: var(--ink); min-width: 0; }
  .hero-pair img { flex: 1 1 auto; min-height: 0; width: 100%; object-fit: cover; object-position: center 18%; }
  .hero-pair figure + figure img { object-position: center 22%; }
  .hero-pair figcaption {
    background: var(--ink); color: var(--paper); font-family: var(--sans);
    font-size: 12px; line-height: 1.4; padding: 11px 14px 13px;
  }
  .hero-pair figcaption span { display: block; font-weight: 600; font-size: 14px; color: var(--paper); margin-bottom: 1px; }

  /* ---- Proof band (same medication, same side effects, whatever your age) ---- */
  .proof {
    background: var(--bg); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
    padding: 96px 40px;
  }
  .proof-wrap { max-width: 1200px; margin: 0 auto; }
  .proof-head { max-width: 760px; margin: 0 0 44px; }
  .proof-head h2 {
    font-family: var(--serif); font-size: clamp(30px, 4.4vw, 52px);
    line-height: 1.05; letter-spacing: -0.02em; font-weight: 400; margin: 0 0 14px;
  }
  .proof-head h2 em { color: var(--amber); font-style: italic; }
  .proof-head p { font-family: var(--sans); font-size: 17px; line-height: 1.6; color: var(--muted); margin: 0; max-width: 620px; }
  .proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
  .proof-card { display: block; background: var(--paper); border-radius: 22px; overflow: hidden; color: inherit; text-decoration: none; }
  .proof-card .img { aspect-ratio: 4 / 5; overflow: hidden; background: var(--warm); }
  .proof-card .img img { width: 100%; height: 100%; object-fit: cover; }
  .proof-card .body { padding: 28px 30px 32px; }
  .proof-card h3 { font-family: var(--serif); font-size: 28px; font-weight: 400; margin: 0 0 8px; }
  .proof-card h3 .dot { color: var(--amber); }
  .proof-card p { font-family: var(--sans); font-size: 15px; line-height: 1.6; color: var(--ink); margin: 0; }
  /* Proof grid is one row of four on desktop; collapse to 2-up then 1-up.
     These overrides are declared AFTER the base rule so source order lets them win. */
  @media (max-width: 1100px) { .proof-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 760px)  { .proof-grid { grid-template-columns: 1fr; gap: 18px; } }

  /* ---- "The gap" statement band ---- */
  .gap {
    background: var(--bg); text-align: center;
    padding: 70px 40px; max-width: 900px; margin: 0 auto;
  }
  .gap h2 {
    font-family: var(--serif); font-size: clamp(28px, 4vw, 46px);
    line-height: 1.16; letter-spacing: -0.018em; font-weight: 400;
  }
  .gap h2 em { color: var(--amber); font-style: italic; }

  /* ---- New Midi homepage components (namespaced; no collision) ---- */
  .mh-wrap { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
  .mh-cred {
    display: flex; justify-content: center; gap: 50px; flex-wrap: wrap;
    padding: 34px 40px 10px 40px; font-size: 14px; font-weight: 600; color: var(--muted);
    max-width: 1200px; margin: 0 auto;
  }
  .mh-cred span::before {
    content: "\25CF"; color: var(--rose); font-size: 9px;
    margin-right: 9px; vertical-align: middle;
  }
  .mh-sec { padding: 80px 0; }
  .mh-sec-head { text-align: center; max-width: 62ch; margin: 0 auto 52px; }
  .mh-sec-head h2 {
    font-family: var(--serif); font-size: clamp(30px, 4.4vw, 52px);
    line-height: 1.12; letter-spacing: -0.018em; font-weight: 400;
  }
  .mh-sec-head h2 em { color: var(--amber); font-style: italic; }
  .mh-sec-head p { margin: 16px 0 0; color: var(--muted); font-size: 17px; }

  .mh-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
  .mh-card {
    background: var(--paper); border-radius: 22px; overflow: hidden;
    display: grid; grid-template-rows: auto 1fr;
  }
  .mh-card-img { overflow: hidden; background: var(--warm); aspect-ratio: 1 / 1; }
  .mh-card-img img { width: 100%; height: 100%; object-fit: cover; }
  .mh-card-body { padding: 26px 20px; display: flex; flex-direction: column; }
  .mh-card-kicker {
    font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--amber); font-weight: 700; margin-bottom: 9px;
  }
  .mh-card-body h3 { font-family: var(--serif); font-size: 30px; margin: 0 0 6px; font-weight: 400; }
  .mh-card-body h3 .dot { color: var(--amber); }
  .mh-card-claim { font-size: 16px; color: var(--ink); font-weight: 500; margin: 0 0 12px; }
  .mh-card-desc { font-size: 14px; color: var(--muted); margin: 0 0 20px; }
  .mh-card-foot {
    margin-top: auto; display: flex; align-items: center;
    justify-content: space-between; gap: 14px;
  }
  .mh-card-price { font-family: var(--serif); font-size: 25px; }
  .mh-card-acts { display: flex; gap: 8px; }
  /* Single-product grid: one row of four on desktop, then 2-up, then 1-up.
     Declared after the base rule so source order lets these win. */
  @media (max-width: 1100px) { .mh-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 760px)  { .mh-grid { grid-template-columns: 1fr; } }
  .mh-mini {
    font-size: 13px; font-weight: 600; padding: 9px 12px; border-radius: 9px;
    background: var(--warm); color: var(--ink); border: none; cursor: pointer;
    display: inline-block; white-space: nowrap;
  }
  .mh-mini.solid { background: var(--amber); color: #fdf8ee; }
  .mh-mini:hover { filter: brightness(0.95); }

  .mh-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .mh-step { background: var(--paper); border-radius: 18px; padding: 30px 26px; }
  .mh-step .n {
    width: 38px; height: 38px; border-radius: 999px; background: var(--amber);
    color: #fdf8ee; display: flex; align-items: center; justify-content: center;
    font-family: var(--serif); font-size: 20px; margin-bottom: 16px;
  }
  .mh-step h3 { font-size: 18px; font-weight: 600; margin: 0 0 8px; font-family: var(--sans); }
  .mh-step p { font-size: 14px; color: var(--muted); margin: 0; }

  /* ---- Voices (kept on homepage) ---- */
  .voices { background: var(--bg); padding: 80px 40px; }
  .voices-head { text-align: center; max-width: 1080px; margin: 0 auto 52px; }
  .voices-head h2 {
    font-family: var(--serif); font-size: clamp(30px, 4.4vw, 52px);
    line-height: 1.12; font-weight: 400;
  }
  .voices-head h2 em { color: var(--amber); font-style: italic; }
  .voices-head p { color: var(--muted); font-size: 17px; margin-top: 16px; }
  .voices-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 1200px; margin: 0 auto; }
  .voice-card { background: var(--paper); border-radius: 20px; padding: 36px 34px; border: none; }
  .voice-card .topic {
    font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--amber); font-weight: 700; margin-bottom: 16px;
  }
  .voice-card blockquote {
    font-family: var(--serif); font-size: 23px; line-height: 1.42;
    margin: 0 0 18px; font-style: normal;
  }
  .voice-card blockquote::before { content: "\201C"; font-size: 32px; color: var(--amber); margin-right: 4px; line-height: 0; }
  .voice-card blockquote em { color: var(--amber); font-style: italic; }
  .voice-card .by { display: block; }
  .voice-card .by-name { display: block; font-weight: 700; font-size: 15px; }
  .voice-card .by-source { color: var(--muted); font-size: 14px; }
  .voice-card .by-source a { text-decoration: underline; }

  /* ---- Founder / lossy (kept on homepage) ---- */
  .founder {
    display: grid; grid-template-columns: 1fr 1.15fr; gap: 48px;
    align-items: center; padding: 80px 40px; max-width: 1200px; margin: 0 auto;
    background: var(--bg);
  }
  .founder-img { border-radius: 24px; overflow: hidden; aspect-ratio: 4 / 5; background: var(--paper); }
  .founder-img img { width: 100%; height: 100%; object-fit: cover; }
  .founder-body h2 {
    font-family: var(--serif); font-size: clamp(32px, 4.4vw, 52px);
    line-height: 1.12; margin: 0 0 18px; font-weight: 400;
  }
  .founder-body h2 em { color: var(--amber); font-style: italic; }
  .founder-tribute { color: var(--muted); margin: 0 0 28px; }
  .lossy-intro { color: var(--muted); margin: 0 0 16px; }
  .lossy-list { list-style: none; display: flex; flex-direction: column; gap: 13px; padding: 0; margin: 0; }
  .lossy-list li { background: var(--paper); border-radius: 14px; padding: 20px 24px; display: flex; gap: 18px; }
  .lossy-num { font-family: var(--serif); font-size: 25px; color: var(--amber); }
  .lossy-list li div { color: var(--muted); font-size: 15px; }
  .lossy-close { margin-top: 22px; font-family: var(--serif); font-size: 22px; }
  .lossy-close strong { color: var(--amber); font-weight: 500; }

  /* ---- Final CTA ---- */
  .cta {
    background: var(--bg); text-align: center; padding: 80px 40px;
  }
  .cta h2 { max-width: 20ch; margin-left: auto; margin-right: auto; }
  .cta .hero-tag { color: var(--amber); font-weight: 700; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 14px; }
  .cta h2 { font-family: var(--serif); font-size: clamp(32px, 4.4vw, 54px); line-height: 1.1; font-weight: 400; }
  .cta h2 em { color: var(--amber); font-style: italic; }
  .cta-lede { font-family: var(--sans); font-style: normal; color: var(--muted); font-size: 17px; max-width: 60ch; margin: 18px auto 30px; }
  .cta-row-dual { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
  .cta-sub { color: var(--muted); font-size: 14px; margin-top: 18px; }

  /* ---- Footer ---- */
  .foot {
    background: var(--warm); color: var(--ink); border-radius: 36px 36px 0 0;
    padding: 60px 40px 42px; margin-top: 60px; border-top: none;
  }
  .foot-logo, .foot-logo .word { color: var(--ink); }
  .foot-newsletter h3, .foot-newsletter-copy h3 { color: var(--ink); }
  .foot-newsletter-form input::placeholder { color: var(--muted); }
  .foot-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 34px;
    max-width: 1200px; margin: 0 auto;
  }
  .foot-logo { display: inline-flex; align-items: center; gap: 9px; font-family: var(--serif); font-style: italic; font-size: 24px; font-weight: 500; }
  .foot-logo .mark { width: auto; height: 28px; color: var(--amber); }
  .foot-logo .dot { color: var(--amber); font-style: normal; }
  .foot-tag { font-family: var(--sans); font-style: normal; color: var(--muted); font-size: 14px; margin-top: 14px; max-width: 30ch; }
  .foot .pill {
    font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--amber); margin-bottom: 16px; font-weight: 600;
  }
  .foot-link { display: block; color: var(--muted); font-size: 15px; padding: 6px 0; }
  .foot-link:hover { color: var(--ink); }
  .foot-legal {
    border-top: 1px solid var(--rule); margin-top: 44px; padding-top: 24px;
    font-size: 12px; color: var(--muted); line-height: 1.7;
    max-width: 1200px; margin-left: auto; margin-right: auto;
    display: block;
  }
  .foot-legal .row-sm { display: block; margin-top: 16px; }

  /* ---- Newsletter (auto-injected into .foot) ---- */
  .foot-newsletter {
    max-width: 1200px; margin: 44px auto 0; padding-top: 28px;
    border-top: 1px solid var(--rule);
  }
  .foot-newsletter-inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: center;
  }
  .foot-newsletter-copy h3, .foot-newsletter h3 {
    font-family: var(--serif); font-size: 24px; font-weight: 400; margin: 0 0 6px;
  }
  .foot-newsletter-copy p, .foot-newsletter p { color: var(--muted); font-size: 14px; margin: 0; }
  .foot-newsletter-form { display: flex; gap: 10px; }
  .foot-newsletter-form input {
    flex: 1; padding: 13px 16px; border: 1px solid var(--rule); border-radius: 10px;
    background: var(--paper); font: inherit; color: var(--ink);
  }
  .foot-newsletter-form input:focus { outline: none; border-color: var(--amber); }
  .foot-newsletter-form input[type="email"] {
    background: var(--paper); border: 1px solid rgba(26, 21, 18, 0.32);
    color: var(--ink); box-shadow: 0 1px 0 rgba(26, 21, 18, 0.04) inset;
  }
  .foot-newsletter-form input[type="email"]::placeholder { color: var(--muted); }
  .newsletter-popup .foot-newsletter-form input[type="email"] {
    background: var(--paper); border: 1px solid rgba(26, 21, 18, 0.22); color: var(--ink);
  }
  .foot-newsletter-form button {
    background: var(--amber); color: #fdf8ee; border: none; border-radius: 10px;
    padding: 13px 24px; font-weight: 600; cursor: pointer;
  }
  .foot-newsletter-form button:hover { background: var(--ink); }
  .foot-newsletter-status { font-size: 13px; margin-top: 10px; padding: 6px 0; }
  .foot-newsletter-status.is-ok { background: transparent; color: var(--amber); }
  .foot-newsletter-status.is-err { background: transparent; color: #b8341e; }

  /* ---- Newsletter popup ---- */
  .newsletter-popup {
    position: fixed; left: 50%; bottom: 28px; transform: translate(-50%, 140%);
    z-index: 120; width: 440px; max-width: 92vw; background: var(--paper);
    border-radius: 20px; padding: 0; opacity: 0; transition: transform 0.4s ease, opacity 0.4s ease;
    box-shadow: 0 24px 60px rgba(26, 21, 18, 0.22); border: 1px solid var(--rule);
  }
  .newsletter-popup.is-open { transform: translate(-50%, 0); opacity: 1; }
  .newsletter-popup-inner { padding: 30px 32px; }
  .newsletter-popup-inner h3 { font-family: var(--serif); font-size: 25px; font-weight: 400; margin: 0 0 8px; }
  .newsletter-popup-inner p { color: var(--muted); font-size: 14px; margin: 0 0 16px; }
  .newsletter-popup-close {
    position: absolute; top: 14px; right: 16px; width: 30px; height: 30px;
    border-radius: 999px; background: var(--warm); border: none; font-size: 18px;
    color: var(--ink); cursor: pointer; line-height: 1;
  }
  .newsletter-popup-fine { font-size: 11px; color: var(--muted); margin-top: 12px; line-height: 1.5; }
  .newsletter-popup .foot-newsletter-status.is-ok { background: transparent; color: var(--amber); }
  .newsletter-popup .foot-newsletter-status.is-err { background: transparent; color: #b8341e; }

  /* ---- Cart drawer + backdrop ---- */
  .overlay-backdrop {
    position: fixed; inset: 0; background: rgba(26, 21, 18, 0.5);
    opacity: 0; pointer-events: none; transition: opacity 0.3s; z-index: 90;
  }
  .overlay-backdrop.is-open { opacity: 1; pointer-events: auto; }
  .cart-drawer {
    position: fixed; top: 0; right: 0; height: 100%; width: 440px; max-width: 92vw;
    background: var(--bg); transform: translateX(100%); transition: transform 0.35s ease;
    z-index: 100; display: flex; flex-direction: column; border: none;
  }
  .cart-drawer.is-open { transform: translateX(0); }
  .cart-head {
    display: flex; justify-content: space-between; align-items: center;
    padding: 26px 30px; border-bottom: none;
  }
  .cart-head h3 { font-family: var(--serif); font-size: 26px; font-weight: 400; margin: 0; }
  .cart-close {
    font-size: 22px; width: 36px; height: 36px; border-radius: 999px;
    background: var(--paper); border: none; color: var(--ink); cursor: pointer; line-height: 1;
  }
  .cart-items { flex: 1; overflow-y: auto; padding: 6px 30px; }
  .cart-item {
    display: flex; gap: 15px; padding: 17px; background: var(--paper);
    border-radius: 14px; margin-bottom: 11px; border: none;
  }
  .cart-item-img { width: 60px; height: 60px; object-fit: cover; border-radius: 10px; background: var(--warm); flex-shrink: 0; }
  .cart-item-name { font-family: var(--serif); font-size: 18px; display: block; font-weight: 400; }
  .cart-item-meta { color: var(--muted); font-size: 13px; margin-top: 2px; }
  .cart-item-qty { display: flex; align-items: center; gap: 8px; margin-top: 8px; font-size: 14px; }
  .cart-item-qty button {
    width: 26px; height: 26px; border-radius: 8px; background: var(--warm);
    border: none; cursor: pointer; color: var(--ink);
  }
  .cart-item-price { font-family: var(--serif); font-size: 18px; }
  .cart-item-remove { font-size: 13px; color: var(--muted); text-decoration: underline; margin-top: 6px; background: none; border: none; cursor: pointer; padding: 0; }
  .cart-empty { padding: 70px 0; text-align: center; color: var(--muted); font-style: italic; font-family: var(--serif); font-size: 20px; }
  .cart-foot { padding: 22px 30px; border-top: none; }
  .cart-totals {
    display: flex; justify-content: space-between; font-family: var(--serif);
    font-size: 22px; margin-bottom: 6px;
  }
  .cart-totals .label { font-family: var(--serif); }
  .cart-foot .micro { font-size: 13px; color: var(--muted); margin: 10px 0 16px; }
  .cart-checkout {
    display: block; width: 100%; text-align: center; background: var(--amber);
    color: #fdf8ee; font-weight: 600; padding: 16px; border-radius: 10px;
  }
  .cart-checkout:hover { background: var(--ink); }
  .cart-checkout[aria-disabled="true"] { opacity: 0.45; pointer-events: none; }

  /* ---- Modals: original centered-panel mechanic preserved (position/transform/
         opacity/display handled by the pre-existing rules above, now fed by the
         Midi tokens). Earlier overlay-conversion rules were removed because they
         fought translate(-50%,-50%)/opacity and broke the layout. Surface polish
         only below. ---- */
  .product-modal-add, .checkout-submit, .cart-checkout {
    background: var(--amber); color: #fdf8ee; border: none; border-radius: 10px;
    padding: 16px 24px; font-family: var(--sans); font-size: 15px; font-weight: 600;
    letter-spacing: 0; text-transform: none; width: 100%; text-align: center; cursor: pointer;
  }
  .product-modal-add:hover, .checkout-submit:hover, .cart-checkout:hover { background: var(--ink); color: #fdf8ee; }
  .product-modal .modal-sub {
    font-family: var(--sans); font-style: normal; color: var(--amber);
    font-weight: 700; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  }
  .product-modal .desc { font-family: var(--sans); font-size: 15px; color: var(--muted); }
  .checkout-modal .sub { font-family: var(--sans); font-style: normal; }
  .checkout-success p { font-family: var(--sans); font-style: normal; }
  .product-modal h2, .product-modal .product-modal-title, .checkout-modal h2, .science-panel h2, .science-panel h3 { font-weight: 400; }
  .mode-opt { border-radius: 12px; }
  .mode-opt input { accent-color: var(--amber); }
  .checkout-form input:focus { outline: none; border-color: var(--amber); }
  .checkout-error { color: #b8341e; }

  /* ---- PDP system (/serum/, /roots/, /calm/, /breath/) ---- */
  .pp-hero {
    display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start;
    padding: 42px 40px 80px; max-width: 1200px; margin: 0 auto; background: var(--bg);
  }
  .pp-hero-img { border-radius: 22px; overflow: hidden; aspect-ratio: 4 / 5; background: var(--paper); position: sticky; top: 86px; }
  .pp-hero-img img { width: 100%; height: 100%; object-fit: cover; }
  .pp-hero-body { padding: 0; background: none; }
  .pp-hero-body h1 { font-family: var(--serif); font-size: clamp(38px, 5vw, 56px); font-weight: 400; line-height: 1.08; margin: 0 0 12px; }
  .pp-hero-body h1 em { color: var(--amber); font-style: italic; }
  .pp-hero-body .lede { font-size: 17px; margin: 0 0 20px; }
  .pp-hero-price { font-family: var(--serif); font-size: 30px; }
  .pp-hero-price-sub { font-family: var(--sans); font-size: 14px; color: var(--muted); }
  .pp-section {
    padding: 28px 40px; max-width: 940px; margin: 0 auto; background: var(--bg);
  }
  .pp-section .inner { background: var(--paper); border-radius: 18px; padding: 34px 38px; }
  .pp-section.dark .inner { background: var(--warm); }
  .pp-section h2 { font-family: var(--serif); font-size: 30px; font-weight: 400; margin: 0 0 14px; }
  .pp-section p { color: var(--muted); margin: 0 0 12px; }
  .pp-section p strong { color: var(--ink); }
  .ingredient-panel { list-style: none; padding: 0; margin: 14px 0 0; }
  .ingredient-panel li { display: grid; grid-template-columns: 230px 1fr; gap: 24px; padding: 16px 0; border-bottom: 1px solid var(--rule); }
  .ingredient-panel li:last-child { border-bottom: none; }
  .ing-name { font-weight: 600; color: var(--ink); }
  .ing-desc { color: var(--muted); font-size: 14px; }
  .pp-buy-box {
    display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center;
    background: var(--paper); border-radius: 18px; padding: 36px 40px;
  }
  .pp-buy-box-meta h3 { font-family: var(--serif); font-size: 24px; font-weight: 400; margin: 0 0 6px; }
  .pp-buy-box-meta p { color: var(--muted); font-size: 14px; margin: 0 0 14px; }
  .citations { padding: 56px 40px; max-width: 940px; margin: 0 auto; background: var(--bg); }
  .citations .inner { background: var(--paper); border-radius: 18px; padding: 36px 40px; }
  .citations h2 { font-family: var(--serif); font-size: 30px; font-weight: 400; margin: 0 0 16px; }
  .citations h2 em { color: var(--amber); font-style: italic; }
  .citations h3 { font-family: var(--serif); font-size: 19px; font-weight: 400; margin: 20px 0 10px; }
  .citations ul { padding-left: 18px; }
  .citations li { font-size: 14px; color: var(--muted); margin-bottom: 8px; }
  .citations li strong { color: var(--ink); }
  .cross-sell { padding: 70px 40px; max-width: 1200px; margin: 0 auto; background: var(--bg); text-align: center; }
  .cross-sell h3 { font-family: var(--serif); font-size: 32px; font-weight: 400; margin: 0 0 32px; }
  .cross-sell-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .cross-sell-grid a { background: var(--paper); border-radius: 18px; overflow: hidden; display: block; text-align: left; }
  .cs-img { background: var(--warm); aspect-ratio: 4 / 3; overflow: hidden; }
  .cs-img img { width: 100%; height: 100%; object-fit: cover; }
  .cs-body { padding: 22px 24px; }
  .cs-name { font-family: var(--serif); font-size: 22px; }
  .cs-meta { color: var(--muted); font-size: 13px; margin-top: 4px; }

  /* ---- About / contact / account / generic sub-pages ---- */
  .about-hero, .contact-grid {
    display: grid; gap: 48px; max-width: 1200px; margin: 0 auto;
    padding: 64px 40px; background: var(--bg); align-items: center;
  }
  .about-hero { grid-template-columns: 1.1fr 0.9fr; }
  .about-hero-img { background: var(--warm); border-radius: 22px; overflow: hidden; padding: 36px 0 0; }
  .about-hero-img img, .founder-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
  .about-hero-body { background: none; padding: 0; }
  .about-hero-body h1 { font-family: var(--serif); font-weight: 400; line-height: 1.1; }
  .about-hero-body h1 em, .about-why em { color: var(--amber); font-style: italic; }
  .about-hero-body p, .about-why p { color: var(--muted); }
  .creds-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; max-width: 1200px; margin: 0 auto; padding: 40px; }
  /* "What the brand believes" cards (About page) */
  .believes { background: var(--paper); border-bottom: 1px solid var(--rule); padding: 88px 80px; }
  .believes-head { max-width: 720px; margin: 0 auto 52px; text-align: center; }
  .believes-head h2 { font-family: var(--serif); font-size: clamp(32px, 4vw, 48px); font-weight: 400; letter-spacing: -0.01em; margin: 0 0 14px; }
  .believes-head h2 .dot { color: var(--amber); }
  .believes-head p { font-family: var(--sans); font-size: 17px; line-height: 1.6; color: var(--muted); margin: 0; }
  .believes-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .believe { background: var(--bg); border: 1px solid var(--rule); border-radius: 18px; padding: 30px 26px; }
  .believe h3 { font-family: var(--serif); font-size: 24px; font-weight: 400; margin: 0 0 12px; }
  .believe p { font-family: var(--sans); font-size: 15px; line-height: 1.6; color: var(--muted); margin: 0; }
  @media (max-width: 1024px) { .believes-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 600px) { .believes-grid { grid-template-columns: 1fr; } .believes { padding: 56px 22px; } }
  .contact-form input, .contact-form textarea, .account-row input {
    width: 100%; padding: 14px 16px; border: 1px solid var(--rule);
    border-radius: 11px; background: var(--paper); font: inherit; color: var(--ink);
  }
  .contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--amber); }
  .account-section, .checkout-summary, .checkout-page {
    background: var(--paper); border-radius: 18px; padding: 32px 36px;
    max-width: 900px; margin: 24px auto;
  }
  .account-section-head h2, .checkout-page h1 { font-family: var(--serif); font-weight: 400; }
  .status-pill { border-radius: 999px; padding: 4px 12px; font-size: 12px; font-weight: 600; }
  .status-active, .status-paid, .status-shipped { background: var(--warm); color: var(--amber); }
  .status-pending, .status-past_due { background: rgba(184, 52, 30, 0.1); color: #b8341e; }

  .skip-to-main:focus { background: var(--amber); color: var(--paper); }
  .disclaimer { color: var(--muted); font-size: 12px; }
  .micro { color: var(--muted); font-size: 12px; }

  /* ---- Midi responsive ---- */
  @media (max-width: 980px) {
    .nav { padding: 16px 22px; }
    .nav-links { display: none; }
    .hero-grid, .pp-hero, .founder, .about-hero, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
    .pp-hero-img { position: static; }
    .voices-grid { grid-template-columns: 1fr; }
    .mh-steps { grid-template-columns: 1fr 1fr; }
    .product-modal-grid { grid-template-columns: 1fr; }
    .product-modal-img img { min-height: 240px; }
    .foot-grid { grid-template-columns: 1fr 1fr; }
    .foot-newsletter-inner { grid-template-columns: 1fr; gap: 14px; }
    .cross-sell-grid { grid-template-columns: 1fr; }
    .ingredient-panel li { grid-template-columns: 1fr; gap: 4px; }
    .pp-buy-box { grid-template-columns: 1fr; }
    .creds-row { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 560px) {
    .hero-grid { padding: 40px 22px 52px; }
    .mh-steps { grid-template-columns: 1fr; }
    .mh-wrap, .mh-cred, .gap, .voices, .founder, .cta { padding-left: 22px; padding-right: 22px; }
  }

  /* ---- Midi PDP (exact mockup recipe; new classes, no collision) ---- */
  .pdp-page { max-width: 1200px; margin: 0 auto; padding: 42px 40px 90px; }
  .crumb { font-size: 14px; color: var(--muted); font-weight: 500; margin-bottom: 26px; }
  .crumb a:hover { color: var(--ink); }
  .pdp { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
  .pdp-img { border-radius: 22px; overflow: hidden; aspect-ratio: 4 / 5; background: var(--paper); position: sticky; top: 86px; }
  .pdp-img img { width: 100%; height: 100%; object-fit: cover; }
  .pdp-body h1 { font-family: var(--serif); font-size: 50px; font-weight: 400; line-height: 1.04; margin: 0; }
  .pdp-body h1 .dot { color: var(--amber); }
  .pdp-claim { font-size: 19px; color: var(--ink); font-weight: 600; margin: 6px 0 8px; }
  .pdp-claim small { display: block; color: var(--amber); font-weight: 700; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 8px; }
  .pdp-desc { font-size: 16px; color: var(--muted); margin: 18px 0 24px; }
  .pdp-specs { background: var(--paper); border-radius: 18px; padding: 8px 22px; margin-bottom: 22px; }
  .spec { display: flex; justify-content: space-between; gap: 18px; padding: 13px 0; border-bottom: 1px solid var(--rule); font-size: 14px; }
  .spec:last-child { border-bottom: none; }
  .spec span:first-child { color: var(--muted); font-weight: 500; }
  .spec span:last-child { text-align: right; max-width: 58%; }
  .modes { display: flex; flex-direction: column; gap: 11px; margin-bottom: 20px; border: none; padding: 0; }
  .modes legend { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .mode { display: flex; gap: 12px; padding: 17px 20px; border: 1px solid var(--rule); border-radius: 13px; cursor: pointer; align-items: flex-start; background: var(--paper); }
  .mode input { margin-top: 3px; accent-color: var(--amber); }
  .mode b { font-weight: 600; display: block; }
  .mode small { display: block; color: var(--muted); font-size: 13px; margin-top: 2px; }
  .pdp-body .btn { width: 100%; text-align: center; }
  .pdp-micro { font-size: 13px; color: var(--muted); margin-top: 15px; line-height: 1.6; }
  .pdp-rest { max-width: 1200px; margin: 0 auto; padding: 0 40px 80px; }
  .pdp-rest h3 { font-family: var(--serif); font-size: 30px; font-weight: 400; text-align: center; margin: 0 0 28px; }
  .pdp-rest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .pdp-rest-grid a { background: var(--paper); border-radius: 18px; overflow: hidden; display: block; }
  .pdp-rest-grid .ci { background: var(--warm); aspect-ratio: 4 / 3; }
  .pdp-rest-grid .ci img { width: 100%; height: 100%; object-fit: cover; }
  .pdp-rest-grid .cb { padding: 20px 22px; }
  .pdp-rest-grid .cn { font-family: var(--serif); font-size: 22px; }
  .pdp-rest-grid .cm { color: var(--muted); font-size: 13px; margin-top: 4px; }
  @media (max-width: 980px) {
    .pdp { grid-template-columns: 1fr; gap: 32px; }
    .pdp-img { position: static; }
    .pdp-rest-grid { grid-template-columns: 1fr; }
    .pdp-page, .pdp-rest { padding-left: 22px; padding-right: 22px; }
  }

  /* ---- Secondary pages: Midi alignment (about/faq/biology/evidence/contact) ----
     Canonical 1200px wrap + Midi rhythm; paper cards only (no dark alternation);
     kills the old narrow 880-1080px inline caps (those are stripped from the HTML
     too — CSS here is the authority once they're gone). ---- */
  .pp-section {
    max-width: 1200px; margin: 0 auto; padding: 26px 32px;
    background: var(--bg); border: none;
  }
  .pp-section .inner {
    background: var(--paper); border-radius: 22px; padding: 44px 52px;
    max-width: none; margin: 0;
  }
  .pp-section.dark, .pp-section.dark .inner { background: var(--paper); }
  .pp-section.dark { background: var(--bg); }
  .pp-section h2 {
    font-family: var(--serif); font-weight: 400; line-height: 1.14;
    font-size: clamp(28px, 3.2vw, 38px); margin: 0 0 16px; letter-spacing: -0.015em;
  }
  .pp-section h2 em { color: var(--amber); font-style: italic; }
  .pp-section h3 {
    font-family: var(--serif); font-weight: 400; font-size: 21px; margin: 22px 0 10px;
  }
  .pp-section p, .pp-section li { color: var(--muted); }
  .pp-section p strong, .pp-section li strong { color: var(--ink); }
  .pp-section ul { padding-left: 20px; line-height: 1.7; }
  .pp-section ul li { max-width: none; margin-bottom: 8px; }

  .citations { max-width: 1200px; margin: 0 auto; padding: 16px 32px; background: var(--bg); border: none; }
  .citations .inner { background: var(--paper); border-radius: 22px; padding: 40px 52px; max-width: none; margin: 0; }
  .pp-eyebrow {
    font-family: var(--sans); font-size: 12px; font-weight: 700; color: var(--amber);
    letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px;
  }

  /* Centered Midi page title for secondary pages (wraps the lead H1/H2) */
  .pp-page-head { text-align: center; max-width: 62ch; margin: 30px auto 8px; padding: 0 32px; }
  .pp-page-head h1, .pp-page-head h2 {
    font-family: var(--serif); font-weight: 400; line-height: 1.12;
    font-size: clamp(32px, 4.4vw, 52px); margin: 0; letter-spacing: -0.018em;
  }
  .pp-page-head em { color: var(--amber); font-style: italic; }
  .pp-page-head p { color: var(--muted); font-size: 17px; margin: 16px auto 0; max-width: 60ch; }

  /* Midi accordion (FAQ) — exact mockup recipe */
  .faq-list { max-width: 900px; margin: 0 auto; padding: 0 32px; }
  .acc { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 13px; }
  .acc-group-label {
    font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--amber); font-weight: 700; margin: 34px 0 14px;
  }
  .acc-group-label:first-child { margin-top: 0; }
  .acc-item { background: var(--paper); border-radius: 14px; overflow: hidden; }
  .acc-q {
    width: 100%; text-align: left; display: flex; justify-content: space-between;
    gap: 20px; padding: 22px 26px; font-family: var(--serif); font-size: 21px;
    align-items: center; background: none; border: none; cursor: pointer;
    color: var(--ink); line-height: 1.3;
  }
  .acc-q .pm { font-family: var(--sans); font-size: 22px; color: var(--amber); font-weight: 600; flex-shrink: 0; }
  .acc-a { display: none; }
  .acc-item.open .acc-a { display: block; }
  .acc-a-inner { padding: 0 26px 24px; color: var(--muted); font-size: 15px; line-height: 1.65; }
  .acc-a-inner p { color: var(--muted); margin: 0; }
  .acc-item.open .acc-q .pm { color: var(--muted); }

  /* Contact form submit → brand amber (mockup form button is amber, not ink) */
  .contact-form button[type="submit"], .contact-form button {
    background: var(--amber); color: #fdf8ee; border: none; border-radius: 10px;
    padding: 15px 30px; font-weight: 600; font-size: 15px; letter-spacing: 0;
    text-transform: none; cursor: pointer; transition: background 0.18s;
  }
  .contact-form button:hover { background: var(--ink); color: #fdf8ee; }

  /* ─────────────────────────────────────────────────────────────
     Motion & micro-interactions  (added 2026-05-17)
     Tasteful hover lift / in-frame image zoom / button press /
     animated nav underline + scroll-reveal states.
     Transforms & opacity only — GPU-composited, no layout reflow.
     Durations collapse under the prefers-reduced-motion block above
     (universal !important rule); motion.js never applies
     .reveal-init when the user requests reduced motion.
     ───────────────────────────────────────────────────────────── */

  /* Cards — gentle lift + soft warm shadow on hover */
  .mh-card,
  .voice-card,
  .bio-card,
  .proof-card,
  .cross-sell a,
  .pdp-rest-grid a {
    transition: transform var(--dur) var(--ease-out),
                box-shadow var(--dur) var(--ease-out),
                border-color var(--dur-fast) var(--ease-out);
  }
  .mh-card:hover,
  .voice-card:hover,
  .bio-card:hover,
  .proof-card:hover,
  .cross-sell a:hover,
  .pdp-rest-grid a:hover {
    transform: translateY(-4px);
    box-shadow: var(--lift-shadow);
  }

  /* Image zoom within its frame (containers already clip overflow) */
  .hero-img img,
  .mh-card-img img,
  .proof-card .img img,
  .cross-sell .cs-img img {
    transition: transform 0.6s var(--ease-out);
  }
  .hero-img:hover img,
  .mh-card:hover .mh-card-img img,
  .proof-card:hover .img img,
  .cross-sell a:hover .cs-img img {
    transform: scale(1.04);
  }

  /* Buttons — keep the colour shift, add a slight lift + tactile press */
  .btn,
  .btn-dark,
  .btn-outline,
  .contact-form button {
    transition: background var(--dur-fast) var(--ease-out),
                color var(--dur-fast) var(--ease-out),
                transform var(--dur-fast) var(--ease-out),
                box-shadow var(--dur-fast) var(--ease-out);
  }
  .btn:hover,
  .btn-dark:hover,
  .btn-outline:hover,
  .contact-form button:hover {
    transform: translateY(-1px);
    box-shadow: var(--lift-shadow);
  }
  .btn:active,
  .btn-dark:active,
  .btn-outline:active,
  .contact-form button:active {
    transform: translateY(0) scale(0.985);
    box-shadow: none;
  }

  /* Bag pill — match the button feel */
  .bag {
    transition: background var(--dur-fast) var(--ease-out),
                color var(--dur-fast) var(--ease-out),
                transform var(--dur-fast) var(--ease-out);
  }
  .bag:hover { transform: translateY(-1px); }
  .bag:active { transform: scale(0.97); }

  /* Nav links — left-anchored underline that grows in on hover/focus */
  .nav-links a { position: relative; }
  .nav-links a::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: -4px;
    height: 1px; background: currentColor;
    transform: scaleX(0); transform-origin: left;
    transition: transform var(--dur) var(--ease-out);
  }
  .nav-links a:hover::after,
  .nav-links a:focus-visible::after { transform: scaleX(1); }

  /* Footer links — gentle nudge alongside the existing colour shift */
  .foot-link {
    transition: color var(--dur-fast) var(--ease-out),
                transform var(--dur-fast) var(--ease-out);
  }
  .foot-link:hover { transform: translateX(2px); }

  /* FAQ accordion — hover cue + soft answer fade-in (mechanics unchanged) */
  .acc-q,
  .acc-q .pm { transition: color var(--dur-fast) var(--ease-out); }
  .acc-q:hover { color: var(--amber); }
  .acc-item.open .acc-a-inner { animation: acc-fade var(--dur) var(--ease-out); }
  @keyframes acc-fade {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* Scroll-reveal — the initial hidden state is added by motion.js
     only, so no-JS and reduced-motion visitors never see hidden
     content. */
  .reveal-init { opacity: 0; transform: translateY(16px); }
  .reveal-init.is-visible {
    opacity: 1; transform: none;
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
  }

  /* Defence-in-depth: under reduced motion, never hide content even
     if .reveal-init were somehow applied. */
  @media (prefers-reduced-motion: reduce) {
    .reveal-init { opacity: 1 !important; transform: none !important; }
  }

  /* ─────────────────────────────────────────────────────────────
     Conversion UI  (added 2026-05-17)
     Subscription-primary PDP option + price anchor, trust badges,
     cart free-shipping progress + add-to-unlock / routine bump.
     ───────────────────────────────────────────────────────────── */

  /* PDP: the (now default) subscription option reads as primary */
  .mode:has(input:checked) { border-color: var(--ink); background: #fffaf0; }
  .mode b s { color: var(--muted); font-weight: 400; margin-right: 5px; }

  /* PDP trust badges under add-to-bag */
  .pdp-trust {
    margin: 12px 0 0;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
  }

  /* Cart: free-shipping progress + suggested add-on */
  .cart-freeship { margin: 4px 0 18px; }
  .cart-freeship-msg {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 12px;
    letter-spacing: 0.04em;
    color: var(--muted);
    margin-bottom: 8px;
  }
  .cart-freeship-msg strong { color: var(--ink); font-weight: 600; }
  .cart-freeship-track {
    height: 4px;
    border-radius: 999px;
    background: var(--rule);
    overflow: hidden;
  }
  .cart-freeship-fill {
    height: 100%;
    width: 0%;
    background: var(--amber);
    border-radius: 999px;
    transition: width 0.4s var(--ease-out, ease-out);
  }
  .cart-suggest {
    display: block;
    width: 100%;
    margin-top: 12px;
    padding: 11px 14px;
    background: transparent;
    border: 1px solid var(--ink);
    border-radius: 10px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 12px;
    letter-spacing: 0.04em;
    color: var(--ink);
    cursor: pointer;
    transition: background 0.18s var(--ease-out, ease-out),
                color 0.18s var(--ease-out, ease-out);
  }
  .cart-suggest:hover { background: var(--ink); color: var(--paper); }

  /* ----------------------------------------------------------------------
     Reviews (#3) - verified-buyer, moderated. Section is JS-revealed only
     when there is something to show or a review token is present, so an
     empty widget never renders. Matches the warm editorial system.
     ---------------------------------------------------------------------- */
  .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;
  }
  .reviews { max-width: 1200px; margin: 0 auto; padding: 8px 40px 72px; }
  .reviews-inner {
    border-top: 1px solid var(--rule);
    padding-top: 44px;
    max-width: 760px;
    margin: 0 auto;
  }
  .reviews h3 {
    font-family: var(--serif); font-size: 30px; font-weight: 400;
    margin: 0 0 18px; color: var(--ink);
  }
  .reviews h3 .dot { color: var(--amber); }
  .reviews-head {
    display: flex; align-items: baseline; gap: 12px;
    margin: 0 0 28px; flex-wrap: wrap;
  }
  .reviews-stars {
    color: var(--amber); letter-spacing: 0.12em; font-size: 17px;
    line-height: 1;
  }
  .reviews-avg {
    font-family: 'IBM Plex Sans', sans-serif; font-size: 13px;
    letter-spacing: 0.04em; color: var(--muted);
  }
  .reviews-empty {
    font-family: var(--serif); font-style: italic; font-size: 19px;
    line-height: 1.5; color: var(--muted); margin: 0 0 28px;
  }
  .reviews-list { display: flex; flex-direction: column; gap: 28px; }
  .review { border-bottom: 1px solid var(--rule); padding-bottom: 26px; }
  .review:last-child { border-bottom: 0; padding-bottom: 0; }
  .review-top .reviews-stars { font-size: 15px; }
  .review-title {
    font-family: var(--serif); font-size: 20px; color: var(--ink);
    margin: 10px 0 6px;
  }
  .review-body {
    font-size: 15px; line-height: 1.65; color: var(--ink);
    margin: 8px 0 10px;
  }
  .review-meta {
    font-family: 'IBM Plex Sans', sans-serif; font-size: 12px;
    letter-spacing: 0.04em; color: var(--muted);
  }
  .reviews-form {
    margin-top: 40px; padding-top: 32px;
    border-top: 1px solid var(--rule);
    display: flex; flex-direction: column; gap: 14px; max-width: 520px;
  }
  .reviews-form .rf-rating {
    border: 0; padding: 0; margin: 0;
    display: flex; gap: 16px; flex-wrap: wrap;
  }
  .reviews-form .rf-rating legend {
    font-family: 'IBM Plex Sans', sans-serif; font-size: 12px;
    text-transform: uppercase; letter-spacing: 0.14em;
    color: var(--muted); margin-bottom: 8px;
  }
  .reviews-form .rf-rating label {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 14px; color: var(--ink); cursor: pointer;
  }
  .reviews-form input[type="text"],
  .reviews-form textarea {
    width: 100%; padding: 11px 13px;
    border: 1px solid var(--rule); border-radius: 8px;
    background: var(--paper); color: var(--ink);
    font-family: 'IBM Plex Sans', sans-serif; font-size: 14px;
  }
  .reviews-form textarea { resize: vertical; line-height: 1.55; }
  .reviews-form .btn { align-self: flex-start; }
  .reviews-form .rf-note,
  .reviews-form .rf-done {
    font-family: 'IBM Plex Sans', sans-serif; font-size: 12px;
    color: var(--muted); margin: 2px 0 0; line-height: 1.5;
  }
  .reviews-form .rf-note.is-error { color: #9a2c14; }
  .reviews-form .rf-done {
    font-size: 14px; color: var(--ink);
  }
  @media (max-width: 640px) {
    .reviews { padding: 8px 22px 56px; }
    .reviews-inner { padding-top: 36px; }
    .reviews h3 { font-size: 26px; }
  }

  /* ============================================================
     2026-05-18 enhancements
     - Concerns page: two-column concern (copy left, image right)
     - Per-concern buy CTA
     - Voices: institution-first attribution
     - Evidence: screenshot figures
     ============================================================ */

  /* ---- Side-effect concern (concise copy + person image, alternating sides) ---- */
  .se-concern { background: var(--paper); border-bottom: 1px solid var(--rule); }
  .se-concern--flip { background: var(--bg); }
  .se-concern-grid {
    max-width: 1200px; margin: 0 auto; padding: 84px 80px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  }
  .se-concern-img {
    margin: 0; border-radius: 24px; overflow: hidden;
    aspect-ratio: 4 / 5; background: var(--warm);
  }
  .se-concern-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .se-concern--flip .se-concern-img { order: 2; }
  .se-concern-text h2 {
    font-family: var(--serif); font-size: clamp(28px, 3.2vw, 42px);
    line-height: 1.1; font-weight: 400; letter-spacing: -0.01em; margin: 0 0 18px;
  }
  .se-concern-text p {
    font-family: var(--sans); font-size: 17px; line-height: 1.65;
    color: var(--muted); margin: 0 0 16px;
  }
  .se-concern-text .se-fit { color: var(--ink); }
  .se-concern-text .se-fit strong { font-weight: 600; }
  .se-more {
    display: inline-block; font-family: var(--sans); font-size: 15px; font-weight: 600;
    color: var(--amber); border-bottom: 1px solid transparent; padding-bottom: 1px;
    transition: border-color var(--dur-fast) var(--ease-soft);
  }
  .se-more:hover { border-bottom-color: var(--amber); }
  .se-concern-text .se-cta { margin-top: 6px; }
  @media (max-width: 860px) {
    .se-concern-grid { grid-template-columns: 1fr; gap: 30px; padding: 52px 22px; }
    .se-concern--flip .se-concern-img { order: 0; }
  }

  /* Voices: institution-first big attribution line */
  .voice-card .voice-attr {
    font-family: var(--serif); font-size: 23px; line-height: 1.25;
    font-weight: 500; color: var(--ink); letter-spacing: -0.01em;
  }
  .voice-card > .by-source {
    font-family: var(--sans); font-size: 12px; color: var(--muted);
    margin-top: 0; padding-top: 16px; font-style: italic;
    border-top: 1px solid var(--rule);
  }
  .voice-card > .by-source a { color: var(--amber); text-decoration: none; }
  .voice-card > .by-source a:hover { text-decoration: underline; }

  /* Evidence: per-citation source link */
  .cite-link {
    font-family: var(--sans); font-size: 12px; font-weight: 600;
    letter-spacing: 0.02em; color: var(--amber);
    text-decoration: none; white-space: nowrap; margin-left: 6px;
  }
  .cite-link:hover { text-decoration: underline; }

  @media (max-width: 860px) {
    .voice-card .voice-attr { font-size: 20px; }
  }

  /* ---- Mobile nav reveal + tap targets (matches the <=980px .nav-links hide).
     Placed last so it wins source-order ties over the older nav rules. ---- */
  @media (max-width: 980px) {
    .nav-hamburger { display: flex; }
    .nav-right { gap: 8px; align-items: center; font-size: 14px; }
    .nav-right a {
      min-height: 44px; display: inline-flex; align-items: center; padding: 0 4px;
    }
    .bag {
      padding: 10px 16px; font-size: 14px;
      min-height: 44px; display: inline-flex; align-items: center;
    }
  }
  @media (prefers-reduced-motion: reduce) {
    .mobile-overlay { transition: opacity 0.001ms !important; transform: none !important; }
  }
