/*
Theme Name: DermForm
Theme URI: https://dermform.com
Author: DermForm
Author URI: https://dermform.com
Description: DermForm — evidence-transparent recovery skincare. A clean, clinical WordPress theme built to Brand Guide v3.0. Palette: Moss #465A2F, Forest #2E3D1F, Sage #8A9B76, Ivory #FBFAF8, Graphite #2B2B28. Type: Archivo 900 + Inter 400/500/700.
Version: 0.1.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dermform
*/

/* =====================================================================
   1. Design tokens
   ===================================================================== */
:root{
  /* Core palette (Brand Guide 9.2) */
  --moss:      #465A2F;   /* primary — wordmark, headlines, UI accents */
  --forest:    #2E3D1F;   /* high-contrast text, dark applications */
  --sage:      #8A9B76;   /* secondary accents, dividers, badge outlines */
  --ivory:     #FBFAF8;   /* primary background */
  --graphite:  #2B2B28;   /* body copy, functional text */
  --biosignal: #33570A;   /* BioSignal mark accent (candidate) */

  /* Derived tints */
  --moss-12:   rgba(70, 90, 47, .12);
  --moss-06:   rgba(70, 90, 47, .06);
  --sage-30:   rgba(138, 155, 118, .30);
  --sage-15:   rgba(138, 155, 118, .15);
  --sage-tint: #EEF1E9;   /* pale sage wash for alt sections */
  --ivory-2:   #F4F2EC;   /* slightly deeper ivory for panels */
  --line:      rgba(70, 90, 47, .18);

  /* Type */
  --font-display: "Archivo", "Arial Black", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Rhythm */
  --container: 1180px;
  --gutter: clamp(20px, 5vw, 56px);
  --section-y: clamp(64px, 9vw, 128px);
  --radius: 4px;
  --radius-lg: 10px;
}

/* =====================================================================
   2. Reset & base
   ===================================================================== */
*,*::before,*::after{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--ivory);
  color:var(--graphite);
  font-family:var(--font-body);
  font-size:17px;
  line-height:1.65;
  font-weight:400;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img,svg{ max-width:100%; display:block; }
a{ color:var(--moss); text-decoration:none; transition:color .2s ease; }
a:hover{ color:var(--forest); }
h1,h2,h3,h4{ margin:0; color:var(--forest); font-weight:400; letter-spacing:-0.01em; }
p{ margin:0 0 1.1em; }
p:last-child{ margin-bottom:0; }
ul{ margin:0; padding:0; list-style:none; }
strong{ font-weight:600; color:var(--forest); }

/* Display headings use Archivo Black */
.display,h1.display,h2.display,h3.display{
  font-family:var(--font-display);
  font-weight:900;
  line-height:1.02;
  letter-spacing:-0.02em;
  color:var(--forest);
}

/* =====================================================================
   3. Layout helpers
   ===================================================================== */
.container{ width:100%; max-width:var(--container); margin-inline:auto; padding-inline:var(--gutter); }
.section{ padding-block:var(--section-y); }
.section--tint{ background:var(--sage-tint); }
.section--forest{ background:var(--forest); color:#E8ECE0; }
.section--forest h2,.section--forest h3{ color:#F3F1EA; }
.hr{ height:1px; background:var(--line); border:0; margin:0; }

.eyebrow{
  font-family:var(--font-body);
  font-weight:600;
  font-size:12.5px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--moss);
  margin:0 0 18px;
  display:flex; align-items:center; gap:12px;
}
.eyebrow::before{ content:""; width:26px; height:2px; background:var(--sage); display:inline-block; }
.section--forest .eyebrow{ color:var(--sage); }
.section--forest .eyebrow::before{ background:var(--sage); }
.eyebrow--center{ justify-content:center; }

.lede{ font-size:clamp(19px,2.2vw,22px); line-height:1.55; color:#3c4a30; }
.muted{ color:#5c6552; }
.section--forest .muted{ color:#C3CBB6; }

.tm{ font-size:.62em; vertical-align:.35em; font-weight:500; letter-spacing:0; }

/* =====================================================================
   4. Buttons
   ===================================================================== */
.btn{
  display:inline-flex; align-items:center; gap:.55em;
  font-family:var(--font-body); font-weight:600; font-size:15px;
  letter-spacing:.01em; line-height:1;
  padding:15px 26px; border-radius:var(--radius);
  border:1.5px solid var(--moss); cursor:pointer;
  transition:background .2s ease, color .2s ease, border-color .2s ease, transform .15s ease;
}
.btn svg{ width:16px; height:16px; }
.btn--primary{ background:var(--moss); color:var(--ivory); }
.btn--primary:hover{ background:var(--forest); border-color:var(--forest); color:var(--ivory); transform:translateY(-1px); }
.btn--ghost{ background:transparent; color:var(--moss); }
.btn--ghost:hover{ background:var(--moss); color:var(--ivory); transform:translateY(-1px); }
.btn--light{ background:var(--ivory); color:var(--forest); border-color:var(--ivory); }
.btn--light:hover{ background:transparent; color:var(--ivory); border-color:var(--sage); }
.btn--onforest{ border-color:var(--sage); color:#EFF1E9; background:transparent; }
.btn--onforest:hover{ background:var(--sage); color:var(--forest); }
.arrow-link{ font-weight:600; display:inline-flex; align-items:center; gap:.4em; }
.arrow-link svg{ width:15px; height:15px; transition:transform .2s ease; }
.arrow-link:hover svg{ transform:translateX(3px); }

/* =====================================================================
   5. Icon badge system (Brand Guide 9.4.1)
   Thin circular Sage stroke, Ivory fill, Moss single-weight line icon.
   ===================================================================== */
.badge{
  width:46px; height:46px; flex:0 0 46px;
  border:1.5px solid var(--sage); border-radius:50%;
  background:var(--ivory);
  display:inline-flex; align-items:center; justify-content:center;
}
.badge svg{ width:22px; height:22px; stroke:var(--moss); stroke-width:1.6; fill:none;
  stroke-linecap:round; stroke-linejoin:round; }
.badge--sm{ width:38px; height:38px; flex-basis:38px; }
.badge--sm svg{ width:18px; height:18px; }
.section--forest .badge{ background:transparent; border-color:var(--sage); }
.section--forest .badge svg{ stroke:var(--sage); }

/* =====================================================================
   6. Site header / nav
   ===================================================================== */
.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(251,250,248,.88);
  backdrop-filter:saturate(140%) blur(10px);
  border-bottom:1px solid var(--line);
}
.site-header__inner{ display:flex; align-items:center; justify-content:space-between; gap:24px; min-height:72px; }
.brand{ display:inline-flex; align-items:center; gap:10px; }
.brand__mark{ width:26px; height:26px; }
.wordmark{
  font-family:var(--font-display); font-weight:900; font-size:22px;
  letter-spacing:.02em; color:var(--forest); text-transform:uppercase; line-height:1;
}
.primary-nav{ display:flex; align-items:center; gap:28px; }
.primary-nav a{ font-size:14.5px; font-weight:500; color:var(--graphite); letter-spacing:.01em; }
.primary-nav a:hover{ color:var(--moss); }
.header-cta{ display:flex; align-items:center; gap:16px; }
.nav-toggle{ display:none; background:none; border:0; padding:8px; cursor:pointer; }
.nav-toggle span{ display:block; width:24px; height:2px; background:var(--forest); margin:5px 0; transition:.25s; }

/* =====================================================================
   7. Hero
   ===================================================================== */
.hero{ position:relative; overflow:hidden; padding-block:clamp(56px,8vw,104px); }
.hero__grid{ display:grid; grid-template-columns:1.15fr .85fr; gap:clamp(32px,5vw,72px); align-items:center; }
.hero__title{ font-size:clamp(38px,6vw,68px); margin:0 0 24px; }
.hero__title em{ font-style:normal; color:var(--moss); }
.hero__lede{ max-width:44ch; margin-bottom:32px; }
.hero__actions{ display:flex; flex-wrap:wrap; gap:14px; margin-bottom:34px; }
.hero__meta{ display:flex; flex-wrap:wrap; gap:10px 26px; font-size:13.5px; color:#5c6552; }
.hero__meta span{ display:inline-flex; align-items:center; gap:8px; }
.hero__meta span::before{ content:""; width:6px; height:6px; border-radius:50%; background:var(--sage); }
.hero__art{ position:relative; display:flex; align-items:center; justify-content:center; }
.hero__disc{
  aspect-ratio:1; width:min(100%,440px); border-radius:50%;
  background:radial-gradient(circle at 50% 40%, #fff 0%, var(--sage-tint) 60%, #e7ebdf 100%);
  border:1px solid var(--sage-30);
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 30px 70px -40px rgba(46,61,31,.5);
}
.hero__disc svg{ width:74%; height:74%; }
.hero__chip{
  position:absolute; background:var(--ivory); border:1px solid var(--line);
  border-radius:var(--radius); padding:12px 16px; box-shadow:0 12px 30px -18px rgba(46,61,31,.55);
  font-size:12.5px; line-height:1.35;
}
.hero__chip strong{ display:block; font-size:13px; }
.hero__chip--tl{ top:6%; left:-4%; }
.hero__chip--br{ bottom:8%; right:-2%; }
.hero__chip .k{ color:var(--moss); font-weight:600; letter-spacing:.08em; text-transform:uppercase; font-size:10.5px; }

/* =====================================================================
   8. Trust strip
   ===================================================================== */
.trust{ border-block:1px solid var(--line); background:var(--ivory); }
.trust__inner{ display:grid; grid-template-columns:repeat(4,1fr); gap:28px; padding-block:34px; }
.trust__item{ display:flex; gap:14px; align-items:flex-start; }
.trust__item h4{ font-size:15px; font-weight:600; font-family:var(--font-body); color:var(--forest); margin:0 0 3px; }
.trust__item p{ font-size:13.5px; color:#5c6552; margin:0; line-height:1.45; }

/* =====================================================================
   9. Generic section header
   ===================================================================== */
.sec-head{ max-width:640px; margin-bottom:52px; }
.sec-head--center{ margin-inline:auto; text-align:center; }
.sec-head h2{ font-size:clamp(28px,3.8vw,42px); line-height:1.08; margin:0 0 16px; }
.sec-head p{ font-size:18px; color:#4c5640; margin:0; }
.section--forest .sec-head p{ color:#C7CFBB; }

/* =====================================================================
   10. System (Comfort -> Repair -> Defend)
   ===================================================================== */
.system-flow{ display:flex; align-items:center; gap:14px; margin-bottom:44px; font-family:var(--font-display); font-weight:900; }
.system-flow span{ font-size:clamp(20px,3vw,30px); color:var(--moss); letter-spacing:-.01em; }
.system-flow .sep{ color:var(--sage); font-size:22px; }
.steps{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.step-card{
  background:var(--ivory); border:1px solid var(--line); border-radius:var(--radius-lg);
  padding:32px 28px 28px; position:relative; display:flex; flex-direction:column;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.step-card:hover{ transform:translateY(-4px); box-shadow:0 24px 50px -34px rgba(46,61,31,.5); border-color:var(--sage-30); }
.step-card__no{ font-family:var(--font-display); font-weight:900; font-size:15px; color:var(--sage); letter-spacing:.06em; margin-bottom:20px; display:flex; justify-content:space-between; align-items:center; }
.step-card__role{ font-size:11px; font-weight:600; letter-spacing:.14em; text-transform:uppercase; color:var(--moss); background:var(--moss-06); padding:5px 10px; border-radius:100px; }
.step-card h3{ font-family:var(--font-display); font-weight:900; font-size:22px; margin:0 0 4px; color:var(--forest); }
.step-card__peptide{ font-size:13px; font-weight:600; color:var(--moss); letter-spacing:.02em; margin-bottom:14px; }
.step-card__job{ font-size:15px; color:#4c5640; margin-bottom:22px; flex:1; }
.step-card__foot{ font-size:12px; color:#6a7360; border-top:1px solid var(--line); padding-top:16px; }
.step-card--soon{ background:var(--moss-06); }
.step-card--soon .step-card__no{ color:var(--sage); }
.tag-soon{ font-size:10.5px; font-weight:600; letter-spacing:.12em; text-transform:uppercase; color:#7a8468; border:1px solid var(--sage-30); padding:4px 9px; border-radius:100px; }

/* =====================================================================
   11. Technology teaser (forest)
   ===================================================================== */
.tech__grid{ display:grid; grid-template-columns:.9fr 1.1fr; gap:clamp(36px,6vw,80px); align-items:center; }
.tech__art{ display:flex; align-items:center; justify-content:center; }
.tech__ring{
  aspect-ratio:1; width:min(100%,360px); border-radius:50%;
  border:1px solid rgba(138,155,118,.4);
  display:flex; align-items:center; justify-content:center; position:relative;
}
.tech__ring::after{ content:""; position:absolute; inset:26px; border-radius:50%; border:1px solid rgba(138,155,118,.22); }
.tech__ring svg{ width:66%; height:66%; }
.tech__ring svg polygon{ stroke:var(--sage); }
.tech__ring svg line{ stroke:var(--sage); }
.tech__ring svg circle{ fill:var(--sage); }
.tiers{ margin-top:28px; display:grid; gap:14px; }
.tier{ display:grid; grid-template-columns:auto 1fr auto; gap:16px; align-items:center; padding:16px 18px; border:1px solid rgba(138,155,118,.28); border-radius:var(--radius); }
.tier__n{ font-family:var(--font-display); font-weight:900; font-size:14px; color:var(--sage); }
.tier__t{ font-size:14.5px; color:#E4E8DB; }
.tier__t b{ color:#fff; font-weight:600; }
.tier__status{ font-size:11px; font-weight:600; letter-spacing:.08em; text-transform:uppercase; padding:5px 10px; border-radius:100px; white-space:nowrap; }
.tier__status--on{ background:rgba(138,155,118,.28); color:#EAF0DE; }
.tier__status--off{ border:1px solid rgba(138,155,118,.35); color:#AEB8A0; }

/* =====================================================================
   12. Featured product (No.01)
   ===================================================================== */
.feature__grid{ display:grid; grid-template-columns:.95fr 1.05fr; gap:clamp(36px,5vw,72px); align-items:center; }
.feature__visual{
  border-radius:var(--radius-lg); background:linear-gradient(160deg,var(--ivory) 0%, var(--sage-tint) 100%);
  border:1px solid var(--line); aspect-ratio:4/3.4; position:relative; overflow:hidden;
  display:flex; align-items:center; justify-content:center;
}
.bottle{
  width:132px; height:74%; border-radius:14px 14px 16px 16px;
  background:linear-gradient(180deg,#fdfdfb,#eef1e8);
  border:1px solid var(--sage-30); box-shadow:0 26px 50px -30px rgba(46,61,31,.5);
  position:relative; display:flex; flex-direction:column; align-items:center; padding-top:22px;
}
.bottle__cap{ position:absolute; top:-16px; width:44px; height:20px; background:var(--forest); border-radius:5px; }
.bottle__label{ width:82%; background:var(--ivory); border:1px solid var(--line); border-radius:3px; padding:12px 10px; text-align:center; margin-top:18px; }
.bottle__wm{ font-family:var(--font-display); font-weight:900; font-size:13px; letter-spacing:.06em; color:var(--forest); }
.bottle__series{ font-size:7.5px; letter-spacing:.16em; color:var(--moss); text-transform:uppercase; margin:4px 0; }
.bottle__name{ font-size:8.5px; font-weight:600; color:var(--graphite); line-height:1.3; }
.bottle__band{ height:8px; background:var(--sage); border-radius:0 0 3px 3px; margin:10px -10px -12px; }
.feature__eyebrow-no{ font-family:var(--font-display); font-weight:900; color:var(--sage); font-size:14px; letter-spacing:.06em; }
.feature h2{ font-size:clamp(26px,3.4vw,38px); margin:6px 0 8px; }
.feature__sub{ font-weight:600; color:var(--moss); font-size:15px; margin-bottom:18px; }
.benefits{ display:grid; grid-template-columns:1fr 1fr; gap:16px 22px; margin:24px 0 28px; }
.benefit{ display:flex; align-items:center; gap:13px; font-size:14.5px; color:#3f4a33; }
.powered{ font-size:13px; color:#5c6552; border-top:1px solid var(--line); padding-top:16px; margin-bottom:22px; }
.powered b{ color:var(--moss); }

/* =====================================================================
   13. Standards / evidence
   ===================================================================== */
.standards__grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:8px; }
.std-card{ padding:30px 26px; border:1px solid var(--line); border-radius:var(--radius-lg); background:var(--ivory); }
.std-card .badge{ margin-bottom:18px; }
.std-card h3{ font-size:18px; font-weight:600; font-family:var(--font-body); color:var(--forest); margin:0 0 8px; }
.std-card p{ font-size:14.5px; color:#5c6552; margin:0; }
.quote-band{ text-align:center; max-width:820px; margin:0 auto; }
.quote-band p{ font-family:var(--font-display); font-weight:900; font-size:clamp(22px,3.2vw,34px); line-height:1.2; color:var(--forest); letter-spacing:-.01em; }
.quote-band .muted{ font-weight:400; font-family:var(--font-body); font-size:15px; letter-spacing:0; margin-top:16px; }

/* =====================================================================
   14. Recovery Library
   ===================================================================== */
.lib__grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.lib-card{ border:1px solid var(--line); border-radius:var(--radius-lg); overflow:hidden; background:var(--ivory); transition:transform .2s ease, box-shadow .2s ease; display:flex; flex-direction:column; }
.lib-card:hover{ transform:translateY(-4px); box-shadow:0 24px 50px -36px rgba(46,61,31,.5); }
.lib-card__top{ height:8px; background:var(--sage); }
.lib-card__body{ padding:26px 24px; }
.lib-card__cat{ font-size:11.5px; font-weight:600; letter-spacing:.12em; text-transform:uppercase; color:var(--moss); margin-bottom:12px; }
.lib-card h3{ font-size:19px; font-weight:600; font-family:var(--font-body); color:var(--forest); margin:0 0 10px; line-height:1.25; }
.lib-card p{ font-size:14px; color:#5c6552; margin:0 0 16px; }

/* =====================================================================
   15. Find us + support (split)
   ===================================================================== */
.split{ display:grid; grid-template-columns:1fr 1fr; gap:24px; }
.panel{ border-radius:var(--radius-lg); padding:clamp(30px,4vw,48px); }
.panel--find{ background:var(--forest); color:#E7EBDF; }
.panel--find h2{ color:#F3F1EA; font-size:clamp(24px,3vw,32px); }
.panel--support{ background:var(--sage-tint); border:1px solid var(--sage-30); }
.panel--support h2{ font-size:clamp(24px,3vw,32px); }
.panel .eyebrow{ margin-bottom:16px; }
.clinic{ margin-top:24px; padding-top:22px; border-top:1px solid rgba(138,155,118,.35); }
.clinic h4{ font-size:16px; color:#fff; font-weight:600; font-family:var(--font-body); margin:0 0 6px; }
.clinic p{ font-size:14px; color:#C7CFBB; margin:0; }
.availability{ display:inline-flex; align-items:center; gap:8px; font-size:12.5px; font-weight:600; letter-spacing:.06em; text-transform:uppercase; color:var(--sage); background:rgba(138,155,118,.16); padding:7px 13px; border-radius:100px; margin-bottom:22px; }
.availability::before{ content:""; width:7px; height:7px; border-radius:50%; background:var(--sage); }
.support-list{ display:grid; gap:14px; margin:24px 0 26px; }
.support-list li{ display:flex; gap:13px; align-items:flex-start; font-size:14.5px; color:#3f4a33; }
.support-list b{ display:block; color:var(--forest); font-weight:600; }
.alert-note{ font-size:12.5px; color:#6a7360; border-left:2px solid var(--sage); padding-left:14px; margin-top:8px; }

/* =====================================================================
   16. Footer
   ===================================================================== */
.site-footer{ background:var(--forest); color:#C7CFBB; padding-block:clamp(56px,7vw,88px) 40px; }
.footer__grid{ display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr; gap:40px; }
.footer__brand .wordmark{ color:#F3F1EA; font-size:24px; }
.footer__brand p{ font-size:14px; color:#AEB8A0; max-width:34ch; margin-top:16px; }
.footer__brand .brand__mark svg polygon{ stroke:var(--sage); }
.footer__brand .brand__mark svg line{ stroke:var(--sage); }
.footer__brand .brand__mark svg circle{ fill:var(--sage); }
.footer col, .footer__col h5{ font-size:12px; font-weight:600; letter-spacing:.14em; text-transform:uppercase; color:var(--sage); margin:0 0 18px; }
.footer__col ul{ display:grid; gap:11px; }
.footer__col a{ color:#C7CFBB; font-size:14px; }
.footer__col a:hover{ color:#fff; }
.footer__bottom{ margin-top:52px; padding-top:26px; border-top:1px solid rgba(138,155,118,.28); display:flex; flex-wrap:wrap; justify-content:space-between; gap:16px; align-items:center; }
.footer__bottom p{ font-size:12.5px; color:#9AA48C; margin:0; }
.footer__legal{ display:flex; gap:22px; flex-wrap:wrap; }
.footer__legal a{ color:#9AA48C; font-size:12.5px; }
.powered-line{ font-size:12px; letter-spacing:.04em; color:var(--sage); }

/* =====================================================================
   17. Responsive
   ===================================================================== */
@media (max-width:1000px){
  .hero__grid{ grid-template-columns:1fr; }
  .hero__art{ order:-1; }
  .hero__disc{ width:min(72%,340px); }
  .hero__chip--tl{ left:2%; }
  .hero__chip--br{ right:2%; }
  .tech__grid,.feature__grid{ grid-template-columns:1fr; }
  .tech__art{ order:-1; }
  .trust__inner{ grid-template-columns:1fr 1fr; gap:24px; }
  .footer__grid{ grid-template-columns:1fr 1fr; gap:32px; }
  .footer__brand{ grid-column:1 / -1; }
}
@media (max-width:760px){
  body{ font-size:16px; }
  .primary-nav, .header-cta .btn{ display:none; }
  .nav-toggle{ display:block; }
  .site-header.is-open .primary-nav{
    display:flex; position:absolute; top:100%; left:0; right:0; flex-direction:column;
    align-items:flex-start; gap:0; background:var(--ivory); border-bottom:1px solid var(--line); padding:8px var(--gutter) 20px;
  }
  .site-header.is-open .primary-nav a{ padding:12px 0; width:100%; border-bottom:1px solid var(--line); }
  .steps,.standards__grid,.lib__grid,.split,.benefits,.trust__inner{ grid-template-columns:1fr; }
  .system-flow{ flex-wrap:wrap; }
  .hero__chip{ display:none; }
}
@media (max-width:480px){
  .footer__grid{ grid-template-columns:1fr; }
}

/* =====================================================================
   18. Editorial content (pages / posts / Recovery Library)
   ===================================================================== */
.entry-content{ font-size:17px; line-height:1.75; color:var(--graphite); }
.entry-content > *{ margin-bottom:1.3em; }
.entry-content h2{ font-family:var(--font-display); font-weight:900; font-size:clamp(24px,3vw,32px); margin:1.6em 0 .5em; }
.entry-content h3{ font-size:22px; font-weight:600; color:var(--forest); margin:1.4em 0 .4em; }
.entry-content a{ text-decoration:underline; text-underline-offset:3px; }
.entry-content ul,.entry-content ol{ padding-left:1.3em; }
.entry-content ul{ list-style:disc; }
.entry-content ol{ list-style:decimal; }
.entry-content li{ margin-bottom:.5em; }
.entry-content blockquote{ border-left:3px solid var(--sage); padding:4px 0 4px 22px; margin:1.6em 0; color:var(--forest); font-size:19px; }
.entry-content img{ border-radius:var(--radius-lg); }
.entry-content code{ background:var(--sage-tint); padding:2px 6px; border-radius:4px; font-size:.9em; }

.post-nav a{ font-weight:600; }
.pagination{ display:flex; gap:8px; flex-wrap:wrap; }
.pagination .page-numbers{ display:inline-flex; min-width:42px; height:42px; align-items:center; justify-content:center; padding:0 12px; border:1px solid var(--line); border-radius:var(--radius); font-size:14px; font-weight:600; }
.pagination .page-numbers.current{ background:var(--moss); color:var(--ivory); border-color:var(--moss); }
.pagination a.page-numbers:hover{ border-color:var(--moss); }

/* =====================================================================
   19. Image slots — art-directed placeholders (real photos drop in)
   ===================================================================== */
.imgslot{
  position:relative; border-radius:var(--radius-lg); overflow:hidden;
  background:
    radial-gradient(120% 120% at 30% 20%, #fff 0%, var(--sage-tint) 55%, #e6ebdd 100%);
  border:1px solid var(--sage-30);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center; color:#6a7360; padding:24px;
}
.imgslot > img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.imgslot__tag{ display:inline-flex; align-items:center; gap:8px; font-size:11px; font-weight:600; letter-spacing:.1em; text-transform:uppercase; color:var(--moss); }
.imgslot__tag svg{ width:15px; height:15px; stroke:var(--moss); stroke-width:1.6; fill:none; }
.imgslot__cap{ font-size:12.5px; margin-top:10px; max-width:26ch; line-height:1.4; }
.imgslot--1x1{ aspect-ratio:1; }
.imgslot--4x3{ aspect-ratio:4/3; }
.imgslot--4x5{ aspect-ratio:4/5; }
.imgslot--3x4{ aspect-ratio:3/4; }
.imgslot--16x10{ aspect-ratio:16/10; }
.section--forest .imgslot{ background:rgba(255,255,255,.04); border-color:rgba(138,155,118,.4); color:#AEB8A0; }
.section--forest .imgslot__tag,.section--forest .imgslot__tag svg{ color:var(--sage); stroke:var(--sage); }

/* =====================================================================
   20. Empathy band
   ===================================================================== */
.empathy{ background:var(--forest); color:#E8ECE0; text-align:center; }
.empathy .container{ max-width:820px; }
.empathy h2{ font-family:var(--font-display); font-weight:900; font-size:clamp(26px,3.6vw,40px); line-height:1.15; color:#F3F1EA; margin:0 0 20px; }
.empathy p{ font-size:clamp(17px,2vw,20px); color:#C7CFBB; line-height:1.6; }
.empathy .signature{ margin-top:22px; font-size:14px; color:var(--sage); letter-spacing:.02em; }

/* =====================================================================
   21. Product spotlight / shop
   ===================================================================== */
.shop__grid{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(32px,5vw,64px); align-items:start; }
.gallery{ display:grid; grid-template-columns:1fr; gap:14px; position:sticky; top:96px; }
.gallery__main{ }
.gallery__thumbs{ display:grid; grid-template-columns:repeat(4,1fr); gap:12px; }
.gallery__thumbs .imgslot{ aspect-ratio:1; padding:10px; border-radius:var(--radius); }
.gallery__thumbs .imgslot__cap{ display:none; }
.rating{ display:flex; align-items:center; gap:10px; margin-bottom:16px; font-size:13.5px; color:#5c6552; }
.stars{ display:inline-flex; gap:2px; }
.stars svg{ width:16px; height:16px; fill:var(--moss); }
.price-row{ display:flex; align-items:baseline; gap:12px; margin:18px 0 4px; }
.price{ font-family:var(--font-display); font-weight:900; font-size:30px; color:var(--forest); letter-spacing:-.01em; }
.price-note{ font-size:12px; font-weight:600; letter-spacing:.08em; text-transform:uppercase; color:#8a927c; }
.price-sub{ font-size:13px; color:#6a7360; margin-bottom:22px; }
.buy-actions{ display:flex; flex-wrap:wrap; gap:12px; margin-bottom:20px; }
.buy-actions .btn{ flex:1; justify-content:center; min-width:160px; }
.reassure{ display:flex; flex-wrap:wrap; gap:8px 22px; padding-top:18px; border-top:1px solid var(--line); }
.reassure span{ display:inline-flex; align-items:center; gap:8px; font-size:13px; color:#5c6552; }
.reassure svg{ width:16px; height:16px; stroke:var(--moss); stroke-width:1.6; fill:none; }
.stock{ display:inline-flex; align-items:center; gap:8px; font-size:12.5px; font-weight:600; letter-spacing:.04em; color:var(--moss); margin-bottom:14px; }
.stock::before{ content:""; width:8px; height:8px; border-radius:50%; background:var(--sage); box-shadow:0 0 0 3px var(--sage-15); }

/* =====================================================================
   22. Patient journey
   ===================================================================== */
.journey__frames{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-bottom:28px; }
.journey__frame span.k{ display:block; font-size:11.5px; font-weight:600; letter-spacing:.12em; text-transform:uppercase; color:var(--moss); margin-bottom:10px; }
.journey__quote{ max-width:760px; }
.journey__quote p{ font-family:var(--font-display); font-weight:900; font-size:clamp(20px,2.6vw,28px); line-height:1.25; color:var(--forest); }
.journey__cite{ font-family:var(--font-body); font-size:14px; font-weight:500; color:#5c6552; margin-top:14px; letter-spacing:0; }
.consent-note{ font-size:12px; color:#8a927c; margin-top:18px; font-style:italic; }

/* =====================================================================
   23. Testimonials
   ===================================================================== */
.tst__grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.tst-card{ background:var(--ivory); border:1px solid var(--line); border-radius:var(--radius-lg); padding:28px 26px; display:flex; flex-direction:column; }
.tst-card .stars{ margin-bottom:14px; }
.tst-card p{ font-size:15.5px; color:#3f4a33; line-height:1.6; flex:1; }
.tst-card__who{ display:flex; align-items:center; gap:12px; margin-top:20px; }
.tst-card__av{ width:40px; height:40px; border-radius:50%; flex:0 0 40px; background:var(--sage-tint); border:1px solid var(--sage-30); display:flex; align-items:center; justify-content:center; font-family:var(--font-display); font-weight:900; color:var(--moss); font-size:15px; overflow:hidden; }
.tst-card__av img{ width:100%; height:100%; object-fit:cover; }
.tst-card__meta b{ display:block; font-size:14px; color:var(--forest); font-weight:600; }
.tst-card__meta span{ font-size:12.5px; color:#6a7360; }

/* =====================================================================
   24. Clinician voice
   ===================================================================== */
.clin__grid{ display:grid; grid-template-columns:.8fr 1.2fr; gap:clamp(32px,5vw,64px); align-items:center; }
.clin__body blockquote{ font-family:var(--font-display); font-weight:900; font-size:clamp(22px,3vw,32px); line-height:1.22; color:var(--forest); margin:0 0 24px; letter-spacing:-.01em; }
.clin__sig{ display:flex; align-items:center; gap:14px; }
.clin__sig .imgslot{ width:54px; height:54px; flex:0 0 54px; border-radius:50%; padding:0; }
.clin__sig .imgslot__tag,.clin__sig .imgslot__cap{ display:none; }
.clin__sig b{ display:block; font-size:15px; color:var(--forest); }
.clin__sig span{ font-size:13px; color:#6a7360; }

/* =====================================================================
   25. Ingredient transparency
   ===================================================================== */
.inci{ display:flex; flex-wrap:wrap; gap:8px; margin:22px 0 8px; }
.inci span{ font-size:13px; padding:7px 13px; border:1px solid var(--line); border-radius:100px; color:#3f4a33; background:var(--ivory); }
.inci span.hero-ingredient{ border-color:var(--moss); color:var(--moss); font-weight:600; background:var(--moss-06); }
.inci-note{ font-size:12.5px; color:#8a927c; }

/* =====================================================================
   26. FAQ
   ===================================================================== */
.faq{ max-width:820px; margin-inline:auto; }
.faq details{ border-bottom:1px solid var(--line); }
.faq summary{ list-style:none; cursor:pointer; padding:22px 4px; display:flex; justify-content:space-between; align-items:center; gap:20px; font-size:17px; font-weight:600; color:var(--forest); }
.faq summary::-webkit-details-marker{ display:none; }
.faq summary .ico{ flex:0 0 22px; width:22px; height:22px; position:relative; transition:transform .25s ease; }
.faq summary .ico::before,.faq summary .ico::after{ content:""; position:absolute; background:var(--moss); border-radius:2px; }
.faq summary .ico::before{ top:10px; left:2px; right:2px; height:2px; }
.faq summary .ico::after{ left:10px; top:2px; bottom:2px; width:2px; transition:transform .25s ease; }
.faq details[open] summary .ico::after{ transform:scaleY(0); }
.faq details > div{ padding:0 4px 24px; font-size:15.5px; color:#4c5640; line-height:1.65; max-width:70ch; }

/* =====================================================================
   27. Final CTA band
   ===================================================================== */
.cta-band{ background:linear-gradient(160deg,var(--moss),var(--forest)); color:#EAF0DE; border-radius:var(--radius-lg); padding:clamp(40px,6vw,72px); text-align:center; }
.cta-band h2{ font-family:var(--font-display); font-weight:900; font-size:clamp(28px,4vw,44px); color:#fff; margin:0 0 16px; }
.cta-band p{ font-size:18px; color:#CFD8C2; max-width:52ch; margin:0 auto 30px; }
.cta-band .buy-actions{ justify-content:center; }
.cta-band .btn--light{ background:#fff; color:var(--forest); border-color:#fff; }
.cta-band .btn--onforest{ color:#fff; }
.cta-band .reassure{ justify-content:center; border-top-color:rgba(255,255,255,.18); margin-top:26px; }
.cta-band .reassure span{ color:#CFD8C2; }
.cta-band .reassure svg{ stroke:var(--sage); }

/* =====================================================================
   28. Product page (PDP)
   ===================================================================== */
.breadcrumb{ padding-block:20px 0; font-size:13px; color:#6a7360; }
.breadcrumb a{ color:#6a7360; } .breadcrumb a:hover{ color:var(--moss); }
.breadcrumb span{ color:var(--moss); }

.pdp{ display:grid; grid-template-columns:1.05fr .95fr; gap:clamp(32px,5vw,64px); align-items:start; padding-top:28px; }
.pdp__buy{ position:sticky; top:96px; }
.pdp__job{ font-size:clamp(18px,2.1vw,21px); line-height:1.5; color:#3c4a30; margin:14px 0 20px; }
.pdp__for{ font-size:14px; color:#5c6552; margin-top:2px; }

.qty-row{ display:flex; gap:14px; align-items:center; margin:20px 0 16px; flex-wrap:wrap; }
.qty{ display:inline-flex; align-items:center; border:1.5px solid var(--line); border-radius:var(--radius); overflow:hidden; }
.qty button{ width:42px; height:46px; background:var(--ivory); border:0; cursor:pointer; font-size:20px; color:var(--forest); line-height:1; }
.qty button:hover{ background:var(--sage-tint); }
.qty input{ width:48px; height:46px; border:0; text-align:center; font-family:var(--font-body); font-weight:600; font-size:16px; color:var(--forest); -moz-appearance:textfield; }
.qty input::-webkit-outer-spin-button,.qty input::-webkit-inner-spin-button{ -webkit-appearance:none; margin:0; }
.pdp__paynote{ font-size:12.5px; color:#8a927c; margin-top:6px; display:flex; align-items:center; gap:8px; }
.pdp__paynote svg{ width:15px; height:15px; stroke:var(--sage); stroke-width:1.7; fill:none; }

/* Evidence-aligned benefit cards */
.evi-benefits{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.evi-card{ border:1px solid var(--line); border-radius:var(--radius-lg); padding:28px 24px; background:var(--ivory); }
.evi-card .badge{ margin-bottom:16px; }
.evi-card h3{ font-size:17px; font-weight:600; font-family:var(--font-body); color:var(--forest); margin:0 0 8px; }
.evi-card p{ font-size:14px; color:#5c6552; margin:0 0 16px; }
.etag{ display:inline-flex; align-items:center; gap:7px; font-size:11px; font-weight:600; letter-spacing:.06em; text-transform:uppercase; padding:5px 11px; border-radius:100px; }
.etag--t1{ background:var(--moss-06); color:var(--moss); }
.etag--t2{ background:var(--sage-15); color:#5e6b48; }
.etag--held{ border:1px dashed var(--sage-30); color:#8a927c; }

/* How to use */
.howto__grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
.howto__step{ text-align:left; }
.howto__step .n{ font-family:var(--font-display); font-weight:900; font-size:14px; color:var(--sage); letter-spacing:.06em; margin-bottom:14px; }
.howto__step .badge{ margin-bottom:14px; }
.howto__step h4{ font-size:16px; font-weight:600; font-family:var(--font-body); color:var(--forest); margin:0 0 6px; }
.howto__step p{ font-size:14px; color:#5c6552; margin:0; }

/* Ingredient-role glossary */
.glossary{ width:100%; border-collapse:collapse; }
.glossary tr{ border-bottom:1px solid var(--line); }
.glossary tr:first-child{ border-top:1px solid var(--line); }
.glossary th{ text-align:left; font-family:var(--font-body); font-weight:600; font-size:12px; letter-spacing:.1em; text-transform:uppercase; color:var(--moss); padding:16px 16px 12px; }
.glossary td{ padding:16px; vertical-align:top; font-size:14.5px; color:#3f4a33; }
.glossary td:first-child{ font-weight:600; color:var(--forest); width:34%; }
.glossary tr.is-hero td:first-child{ color:var(--moss); }
.glossary tr.is-hero{ background:var(--moss-06); }
.glossary td .role{ color:#5c6552; }

/* Evidence card (light) */
.evi-ladder{ display:grid; gap:14px; }
.evi-row{ display:grid; grid-template-columns:auto 1fr auto; gap:16px; align-items:center; padding:18px 20px; border:1px solid var(--line); border-radius:var(--radius); background:var(--ivory); }
.evi-row .n{ font-family:var(--font-display); font-weight:900; font-size:14px; color:var(--sage); }
.evi-row .t{ font-size:14.5px; color:#3f4a33; } .evi-row .t b{ color:var(--forest); }

/* Suitability */
.suit{ display:grid; grid-template-columns:1fr 1fr; gap:24px; }
.suit__col{ border-radius:var(--radius-lg); padding:30px 28px; }
.suit__col--yes{ background:var(--sage-tint); border:1px solid var(--sage-30); }
.suit__col--care{ background:var(--ivory); border:1px solid var(--line); }
.suit__col h3{ font-size:17px; font-weight:600; font-family:var(--font-body); color:var(--forest); margin:0 0 16px; display:flex; align-items:center; gap:10px; }
.suit__col h3 svg{ width:20px; height:20px; stroke:var(--moss); stroke-width:1.7; fill:none; }
.suit__col li{ font-size:14.5px; color:#3f4a33; padding:8px 0 8px 26px; position:relative; }
.suit__col li::before{ content:""; position:absolute; left:0; top:15px; width:10px; height:10px; border-radius:50%; border:2px solid var(--sage); }
.suit__col--care li::before{ border-radius:2px; }

/* Concierge strip */
.concierge{ display:flex; gap:24px; align-items:center; justify-content:space-between; flex-wrap:wrap; background:var(--forest); color:#E7EBDF; border-radius:var(--radius-lg); padding:clamp(28px,4vw,40px); }
.concierge h3{ color:#F3F1EA; font-family:var(--font-display); font-weight:900; font-size:clamp(20px,2.6vw,28px); margin:0 0 6px; }
.concierge p{ color:#C7CFBB; font-size:15px; margin:0; max-width:46ch; }

@media (max-width:1000px){
  .pdp{ grid-template-columns:1fr; }
  .pdp__buy{ position:static; }
  .evi-benefits,.howto__grid{ grid-template-columns:1fr 1fr; }
  .suit{ grid-template-columns:1fr; }
}
@media (max-width:640px){
  .evi-benefits,.howto__grid{ grid-template-columns:1fr; }
  .glossary td:first-child{ width:44%; }
}

/* =====================================================================
   29. Technology page — platform diagram, peptide explainer
   ===================================================================== */
.platform{ display:grid; gap:22px; }
.platform__master{
  text-align:center; border:1px solid var(--line); border-radius:var(--radius-lg);
  background:var(--sage-tint); padding:28px 24px; position:relative;
}
.platform__master .k{ font-size:11.5px; font-weight:600; letter-spacing:.14em; text-transform:uppercase; color:var(--moss); }
.platform__master h3{ font-family:var(--font-display); font-weight:900; font-size:clamp(22px,3vw,30px); color:var(--forest); margin:6px 0 4px; }
.platform__master p{ font-size:14.5px; color:#5c6552; margin:0; max-width:60ch; margin-inline:auto; }
.platform__branch{ text-align:center; color:var(--sage); font-family:var(--font-display); font-weight:900; }
.platform__peptides{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.pep-card{ border:1px solid var(--line); border-radius:var(--radius-lg); padding:26px 24px; background:var(--ivory); }
.pep-card .p{ font-family:var(--font-display); font-weight:900; font-size:19px; color:var(--moss); margin-bottom:4px; }
.pep-card .prod{ font-size:13px; font-weight:600; color:var(--forest); margin-bottom:12px; }
.pep-card p{ font-size:14px; color:#5c6552; margin:0 0 14px; }
.pep-card .st{ font-size:11px; font-weight:600; letter-spacing:.06em; text-transform:uppercase; color:#8a927c; }
.pep-card--soon{ background:var(--moss-06); }

/* =====================================================================
   30. Recovery Series — comparison table, routine timeline
   ===================================================================== */
.compare-wrap{ overflow-x:auto; -webkit-overflow-scrolling:touch; border:1px solid var(--line); border-radius:var(--radius-lg); }
.compare{ width:100%; border-collapse:collapse; min-width:680px; }
.compare th, .compare td{ padding:16px 18px; text-align:left; vertical-align:top; font-size:14.5px; border-bottom:1px solid var(--line); }
.compare thead th{ font-family:var(--font-display); font-weight:900; font-size:16px; color:var(--forest); background:var(--ivory); position:sticky; top:0; }
.compare thead th small{ display:block; font-family:var(--font-body); font-weight:500; font-size:12px; color:#6a7360; letter-spacing:0; margin-top:3px; }
.compare tbody th{ font-weight:600; color:var(--moss); font-size:12px; letter-spacing:.08em; text-transform:uppercase; width:20%; background:var(--sage-tint); }
.compare td{ color:#3f4a33; }
.compare td:nth-child(2), .compare thead th:nth-child(2){ background:var(--moss-06); }
.compare tr:last-child td, .compare tr:last-child th{ border-bottom:0; }
.compare .badge-avail{ display:inline-block; font-size:10.5px; font-weight:600; letter-spacing:.08em; text-transform:uppercase; color:var(--moss); background:var(--sage-15); padding:4px 9px; border-radius:100px; }
.compare .badge-soon{ display:inline-block; font-size:10.5px; font-weight:600; letter-spacing:.08em; text-transform:uppercase; color:#8a927c; border:1px solid var(--sage-30); padding:3px 9px; border-radius:100px; }
.compare .price{ font-size:18px; }

/* Routine timeline */
.routine{ display:grid; grid-template-columns:repeat(3,1fr); gap:0; margin-top:8px; }
.routine__step{ position:relative; padding:0 24px; }
.routine__step:not(:last-child){ border-right:1px solid var(--line); }
.routine__num{ display:inline-flex; align-items:center; justify-content:center; width:44px; height:44px; border-radius:50%; border:1.5px solid var(--sage); color:var(--moss); font-family:var(--font-display); font-weight:900; font-size:17px; margin-bottom:18px; }
.routine__step h3{ font-family:var(--font-display); font-weight:900; font-size:20px; color:var(--forest); margin:0 0 4px; }
.routine__when{ font-size:12px; font-weight:600; letter-spacing:.08em; text-transform:uppercase; color:var(--moss); margin-bottom:10px; }
.routine__step p{ font-size:14.5px; color:#5c6552; margin:0; }

@media (max-width:900px){
  .platform__peptides{ grid-template-columns:1fr; }
  .routine{ grid-template-columns:1fr; gap:28px; }
  .routine__step{ padding:0 0 28px; }
  .routine__step:not(:last-child){ border-right:0; border-bottom:1px solid var(--line); }
}

/* =====================================================================
   31. Library / Standards / Find Us / Support
   ===================================================================== */
/* Category chips */
.chips{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom:44px; }
.chips a{ font-size:13px; font-weight:600; padding:9px 16px; border:1px solid var(--line); border-radius:100px; color:var(--graphite); }
.chips a:hover, .chips a.is-active{ background:var(--moss); color:var(--ivory); border-color:var(--moss); }

/* Featured article */
.feat-article{ display:grid; grid-template-columns:1fr 1fr; gap:0; border:1px solid var(--line); border-radius:var(--radius-lg); overflow:hidden; background:var(--ivory); margin-bottom:12px; }
.feat-article .imgslot{ border-radius:0; min-height:320px; height:100%; }
.feat-article__body{ padding:clamp(28px,4vw,48px); display:flex; flex-direction:column; justify-content:center; }
.feat-article__body h3{ font-family:var(--font-display); font-weight:900; font-size:clamp(22px,2.8vw,30px); color:var(--forest); line-height:1.15; margin:12px 0 12px; }
.feat-article__body p{ font-size:15.5px; color:#5c6552; margin:0 0 20px; }

/* Library group heading */
.lib-group{ margin-top:56px; }
.lib-group__h{ display:flex; align-items:baseline; justify-content:space-between; gap:16px; margin-bottom:26px; padding-bottom:14px; border-bottom:1px solid var(--line); }
.lib-group__h h3{ font-family:var(--font-display); font-weight:900; font-size:22px; color:var(--forest); margin:0; }
.lib-group__h span{ font-size:12.5px; color:#8a927c; }

/* Support channels */
.channels{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.channel{ border:1px solid var(--line); border-radius:var(--radius-lg); padding:28px 26px; background:var(--ivory); display:flex; flex-direction:column; }
.channel .badge{ margin-bottom:16px; }
.channel h3{ font-size:18px; font-weight:600; font-family:var(--font-body); color:var(--forest); margin:0 0 6px; }
.channel p{ font-size:14px; color:#5c6552; margin:0 0 18px; flex:1; }

/* Adverse-reaction / alert block */
.alert-block{ border:1.5px solid var(--sage); border-left-width:4px; border-radius:var(--radius); background:var(--sage-tint); padding:26px 28px; display:flex; gap:18px; align-items:flex-start; }
.alert-block .badge{ flex:0 0 46px; }
.alert-block h3{ font-size:18px; color:var(--forest); font-family:var(--font-body); font-weight:600; margin:0 0 8px; }
.alert-block p{ font-size:14.5px; color:#3f4a33; margin:0; }

/* Form */
.form{ display:grid; gap:18px; }
.form .row{ display:grid; gap:18px; grid-template-columns:1fr 1fr; }
.field{ display:grid; gap:7px; }
.field label{ font-size:13px; font-weight:600; color:var(--forest); }
.field input, .field textarea, .field select{ font-family:inherit; font-size:15px; padding:13px 15px; border:1.5px solid var(--line); border-radius:var(--radius); background:var(--ivory); color:var(--graphite); width:100%; }
.field textarea{ min-height:130px; resize:vertical; }
.field input:focus, .field textarea:focus, .field select:focus{ outline:none; border-color:var(--moss); box-shadow:0 0 0 3px var(--moss-06); }
.form-note{ font-size:12.5px; color:#8a927c; }

/* Clinic / find-us detail rows */
.detail-list{ display:grid; gap:16px; margin:22px 0; }
.detail-list li{ display:flex; gap:14px; align-items:flex-start; font-size:15px; color:#3f4a33; }
.detail-list svg{ width:20px; height:20px; stroke:var(--moss); stroke-width:1.7; fill:none; flex:0 0 20px; margin-top:2px; }
.detail-list b{ display:block; color:var(--forest); font-weight:600; }

@media (max-width:860px){
  .feat-article{ grid-template-columns:1fr; }
  .feat-article .imgslot{ min-height:220px; }
  .channels{ grid-template-columns:1fr; }
  .form .row{ grid-template-columns:1fr; }
}

/* =====================================================================
   32. QR page — how it works (animated), video slots, feel cards
   ===================================================================== */
/* Video slot — drop a real/AI <video> in, else it's a styled placeholder */
.video-slot{ position:relative; border-radius:var(--radius-lg); overflow:hidden; border:1px solid var(--sage-30);
  background:radial-gradient(120% 120% at 30% 20%, #fff 0%, var(--sage-tint) 60%, #e6ebdd 100%);
  aspect-ratio:16/9; display:flex; align-items:center; justify-content:center; }
.video-slot video, .video-slot iframe{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; border:0; }
.video-slot__inner{ text-align:center; padding:20px; z-index:1; }
.video-slot__play{ width:64px; height:64px; border-radius:50%; background:var(--moss); display:inline-flex; align-items:center; justify-content:center; box-shadow:0 14px 30px -14px rgba(46,61,31,.6); }
.video-slot__play svg{ width:22px; height:22px; fill:var(--ivory); margin-left:3px; }
.video-slot__cap{ display:block; margin-top:14px; font-size:12px; font-weight:600; letter-spacing:.08em; text-transform:uppercase; color:var(--moss); }
.video-slot__sub{ display:block; font-size:12.5px; color:#6a7360; margin-top:5px; max-width:34ch; margin-inline:auto; line-height:1.4; }
.video-slot--vertical{ aspect-ratio:9/16; max-width:300px; margin-inline:auto; }

/* How it should feel */
.feel-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:18px; }
.feel-card{ text-align:center; padding:28px 20px; border:1px solid var(--line); border-radius:var(--radius-lg); background:var(--ivory); }
.feel-card .badge{ margin:0 auto 14px; }
.feel-card h4{ font-size:16px; font-weight:600; font-family:var(--font-body); color:var(--forest); margin:0 0 6px; }
.feel-card p{ font-size:14px; color:#5c6552; margin:0; }
@media (max-width:430px){ .feel-grid{ grid-template-columns:1fr; } }

/* How it works — 3-beat animated diagram */
.hiw{ display:grid; grid-template-columns:1fr 1fr 1fr; gap:16px; }
.hiw__step{ text-align:center; }
.hiw__viz{ aspect-ratio:1; border:1px solid var(--line); border-radius:var(--radius-lg); background:var(--sage-tint); display:flex; align-items:center; justify-content:center; margin-bottom:16px; overflow:hidden; }
.hiw__viz svg{ width:66%; height:66%; }
.hiw__n{ font-family:var(--font-display); font-weight:900; font-size:13px; color:var(--sage); letter-spacing:.06em; margin-bottom:6px; }
.hiw__step h4{ font-size:15px; font-weight:600; font-family:var(--font-body); color:var(--forest); margin:0 0 4px; }
.hiw__step p{ font-size:13.5px; color:#5c6552; margin:0; }
@media (max-width:640px){ .hiw{ grid-template-columns:1fr; gap:22px; max-width:340px; margin-inline:auto; } .hiw__viz{ max-height:220px; } }

.hiw-drop{ animation:hiwDrop 2.6s ease-in-out infinite; }
.hiw-pulse{ transform-box:fill-box; transform-origin:center; animation:hiwPulse 2.4s ease-out infinite; }
.hiw-pulse.d2{ animation-delay:1.2s; }
.hiw-float{ animation:hiwFloat 3s ease-in-out infinite; }
@keyframes hiwDrop{ 0%{ transform:translateY(-10px); opacity:0; } 25%{ opacity:1; } 65%{ transform:translateY(12px); opacity:1; } 80%,100%{ transform:translateY(12px); opacity:0; } }
@keyframes hiwPulse{ 0%{ transform:scale(.5); opacity:.55; } 100%{ transform:scale(1.9); opacity:0; } }
@keyframes hiwFloat{ 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-6px); } }
@media (prefers-reduced-motion:reduce){ .hiw-drop,.hiw-pulse,.hiw-float{ animation:none !important; opacity:1 !important; } }

/* =====================================================================
   33. Mobile-priority refinements (QR page reads on a phone first)
   ===================================================================== */
/* Benefits: 2-up on larger screens, single column on phones (was inline-locked) */
.qr-benefits{ display:grid; grid-template-columns:repeat(2,1fr); gap:18px; }
@media (max-width:560px){ .qr-benefits{ grid-template-columns:1fr; } }
/* Ingredient glossary: tighter, still readable on small phones */
@media (max-width:420px){
  .glossary th, .glossary td{ padding:11px 10px; font-size:13.5px; }
  .glossary td:first-child{ width:46%; }
}
/* Comfortable tap targets on touch */
@media (max-width:760px){
  .btn{ padding:15px 24px; }
  .video-slot__play{ width:60px; height:60px; }
}

/* Header shop / cart additions */
.header-cta .cart{ display:inline-flex; align-items:center; gap:8px; }
.cart-ico{ width:20px; height:20px; stroke:var(--forest); stroke-width:1.7; fill:none; }

@media (max-width:1000px){
  .shop__grid,.clin__grid{ grid-template-columns:1fr; }
  .gallery{ position:static; }
  .journey__frames,.tst__grid{ grid-template-columns:1fr; }
  .clin__grid .clin__art{ order:-1; max-width:360px; }
}
@media (max-width:760px){
  .journey__frames{ grid-template-columns:1fr; }
  .gallery__thumbs{ grid-template-columns:repeat(4,1fr); }
  .buy-actions .btn{ flex:1 1 100%; }
}

/* Accessibility */
:focus-visible{ outline:2px solid var(--moss); outline-offset:2px; }
.skip-link{ position:absolute; left:-9999px; }
.skip-link:focus{ left:16px; top:16px; z-index:100; background:var(--moss); color:#fff; padding:10px 16px; border-radius:var(--radius); }
@media (prefers-reduced-motion:reduce){ *{ scroll-behavior:auto !important; transition:none !important; } }
