/* ============================================================
   LevelDose brand system — funnel template brand-v1
   Source of truth: leveldose-brand/playbook/04-visual-identity.md
   (tokens mirror playbook/tokens.css; ld- namespace to coexist
   with the site's Tailwind without collisions)
   ============================================================ */

.ld-root{
  --ld-paper-0:#FDFBF7; --ld-paper-1:#F7F2E9; --ld-paper-2:#EFE7D8;
  --ld-stone-1:#DCD3C1; --ld-stone-3:#6C6250;
  --ld-ink:#221E19; --ld-ink-2:#4A443A;
  --ld-amber:#9A5B1F; --ld-amber-deep:#7C4715;
  --ld-weight:#33544A; --ld-ok:#2F6B4F; --ld-error:#A03B2E;
  --ld-serif:"Newsreader",Georgia,"Times New Roman",serif;
  --ld-sans:"Instrument Sans",-apple-system,"Helvetica Neue",Arial,sans-serif;
  --ld-mono:"Fragment Mono","SF Mono",Menlo,Consolas,monospace;

  background:var(--ld-paper-1); color:var(--ld-ink);
  font-family:var(--ld-sans); font-size:17px; line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
.ld-root *{box-sizing:border-box}
.ld-root p{max-width:66ch}
.ld-wrap{max-width:1120px;margin:0 auto;padding:0 24px}
.ld-section{padding:64px 0}
@media(max-width:760px){.ld-section{padding:44px 0}}

/* type */
.ld-eyebrow{font:400 .875rem/1.4 var(--ld-mono);letter-spacing:.06em;text-transform:uppercase;color:var(--ld-stone-3)}
.ld-eyebrow b{font-weight:400;color:var(--ld-weight)}
.ld-spec{font:400 1rem/1.55 var(--ld-mono);letter-spacing:.01em;color:var(--ld-ink-2)}
.ld-legal{font:400 .875rem/1.65 var(--ld-mono);color:var(--ld-stone-3)}
.ld-h1{font:500 clamp(2.6rem,6vw,4.2rem)/1.05 var(--ld-serif);letter-spacing:-.015em;color:var(--ld-ink);margin:0}
.ld-h2{font:500 clamp(1.7rem,3.4vw,2.2rem)/1.15 var(--ld-serif);letter-spacing:-.01em;color:var(--ld-ink);margin:0;text-wrap:balance}
.ld-h3{font:600 1.1rem/1.35 var(--ld-sans);color:var(--ld-ink);margin:0}
.ld-lede{font-size:1.1875rem;line-height:1.7;color:var(--ld-ink-2)}
.ld-serif-i{font-family:var(--ld-serif);font-style:italic}

/* the graduation rule — the brand device */
.ld-grad{height:17px;position:relative;border:0;margin:0}
.ld-grad::before{content:"";position:absolute;left:0;right:0;top:8px;height:1px;background:var(--ld-stone-1)}
.ld-grad::after{content:"";position:absolute;left:0;right:0;top:4px;height:9px;
  background-image:repeating-linear-gradient(90deg,var(--ld-stone-1) 0 1px,transparent 1px 96px)}

/* buttons */
.ld-btn{display:inline-flex;align-items:center;justify-content:center;gap:10px;
  min-height:52px;padding:0 30px;border-radius:999px;border:1px solid var(--ld-ink);
  background:var(--ld-ink);color:var(--ld-paper-0)!important;font:500 1rem/1 var(--ld-sans);
  cursor:pointer;text-decoration:none;transition:background .15s ease,color .15s ease}
.ld-btn:hover{background:var(--ld-ink-2);border-color:var(--ld-ink-2)}
.ld-btn:focus-visible{outline:2px solid var(--ld-amber);outline-offset:2px}
.ld-btn--ghost{background:transparent;color:var(--ld-ink)!important;border-color:var(--ld-stone-1)}
.ld-btn--ghost:hover{background:var(--ld-paper-2);color:var(--ld-ink)!important}

/* hero */
.ld-hero{padding:72px 0 56px}
.ld-hero-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:56px;align-items:center}
@media(max-width:900px){.ld-hero-grid{grid-template-columns:1fr;gap:36px}}
.ld-hero-img{border:1px solid var(--ld-stone-1);border-radius:8px;overflow:hidden;background:var(--ld-paper-0)}
.ld-hero-img img{display:block;width:100%;height:auto}
.ld-hero .ld-spec{margin:18px 0 14px}
.ld-hero-ctas{display:flex;flex-wrap:wrap;gap:14px;margin-top:30px}

/* proof band */
.ld-proof{background:var(--ld-paper-2);border-top:1px solid var(--ld-stone-1);border-bottom:1px solid var(--ld-stone-1)}
.ld-proof-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1px}
.ld-proof-cell{padding:20px 24px 22px}
.ld-proof-cell+.ld-proof-cell{border-left:1px solid var(--ld-stone-1)}
@media(max-width:760px){.ld-proof-grid{grid-template-columns:1fr}
  .ld-proof-cell+.ld-proof-cell{border-left:0;border-top:1px solid var(--ld-stone-1)}}

/* how care works */
/* how-care-works: the chapter rail (playbook 05 §3 as amended 2026-09-02 — numbered chapters on a ruled
   list, an amber rule that fills as the reader moves through them; no boxed cards, no accent rails).
   The same data-ld-rail / data-ld-step attributes drive the intake's progress rail. */
.ld-steps{--ld-fill:0%;position:relative;margin-top:30px;padding-left:28px;border-left:1px solid var(--ld-stone-1);display:grid;grid-template-columns:repeat(2,1fr);gap:0 40px}
.ld-steps::before{content:"";position:absolute;left:-1px;top:0;width:1px;height:var(--ld-fill);background:var(--ld-amber);transition:height .35s ease}
@media(max-width:760px){.ld-steps{grid-template-columns:1fr;padding-left:22px}}
.ld-step{padding:22px 0 24px;border-bottom:1px solid var(--ld-stone-1);display:grid;grid-template-columns:56px 1fr;gap:8px 14px;align-items:baseline}
.ld-step .n{grid-column:1;grid-row:1 / span 2;font:400 1.5rem/1 var(--ld-mono);color:var(--ld-stone-3);letter-spacing:-.02em;transition:color .35s ease;margin:0}
.ld-step.is-active .n,.ld-step.is-done .n{color:var(--ld-amber-deep)}
.ld-step h3{grid-column:2;grid-row:1;margin:0;font:500 1.25rem/1.25 var(--ld-serif);color:var(--ld-ink)}
.ld-step p:not(.n){grid-column:2;grid-row:2;font-size:1rem;color:var(--ld-ink-2);margin:0}
@media(prefers-reduced-motion:reduce){.ld-steps::before,.ld-step .n{transition:none}}

/* plans */
.ld-plans-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:22px;margin-top:34px}
@media(max-width:860px){.ld-plans-grid{grid-template-columns:1fr}}
.ld-plan{display:flex;flex-direction:column;background:var(--ld-paper-0);border:1px solid var(--ld-stone-1);border-radius:8px;padding:28px;position:relative}
.ld-plan-head{display:flex;align-items:center;justify-content:space-between;gap:12px}
.ld-chip{display:inline-block;font:400 .72rem/1 var(--ld-mono);letter-spacing:.08em;text-transform:uppercase;
  color:var(--ld-paper-0);background:var(--ld-amber);border-radius:3px;padding:6px 9px}
.ld-plan-name{font:500 1.35rem/1.25 var(--ld-serif);color:var(--ld-ink);margin:16px 0 4px}
.ld-price-row{display:flex;align-items:baseline;gap:10px;margin-top:14px}
.ld-price{font:500 3rem/1 var(--ld-serif);letter-spacing:-.02em;color:var(--ld-ink);font-variant-numeric:tabular-nums}
.ld-price-suffix{font:400 1rem/1.4 var(--ld-mono);color:var(--ld-stone-3)}
.ld-renewal{font:400 .9375rem/1.55 var(--ld-mono);color:var(--ld-ink-2);border-top:1px solid var(--ld-stone-1);margin-top:16px;padding-top:14px}
.ld-plan ul{list-style:none;margin:18px 0 0;padding:0}
.ld-plan li{position:relative;padding-left:22px;margin:10px 0;font-size:1rem;color:var(--ld-ink-2)}
.ld-plan li::before{content:"—";position:absolute;left:0;color:var(--ld-weight)}
.ld-plan .ld-btn{margin-top:24px;width:100%}

/* eligibility */
.ld-elig-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:22px;margin-top:34px}
@media(max-width:860px){.ld-elig-grid{grid-template-columns:1fr}}
.ld-elig{background:var(--ld-paper-0);border:1px solid var(--ld-stone-1);border-radius:8px;padding:26px}
.ld-elig.ok{border-left:4px solid var(--ld-ok)} .ld-elig.no{border-left:4px solid var(--ld-error)}
.ld-elig .lab{font:400 .75rem/1 var(--ld-mono);letter-spacing:.08em;text-transform:uppercase;margin-bottom:14px}
.ld-elig.ok .lab{color:var(--ld-ok)} .ld-elig.no .lab{color:var(--ld-error)}
.ld-elig ul{list-style:none;margin:0;padding:0}
.ld-elig li{position:relative;padding-left:22px;margin:10px 0;font-size:1rem;color:var(--ld-ink-2)}
.ld-elig li::before{content:"—";position:absolute;left:0;color:var(--ld-stone-3)}

/* trust band */
.ld-trust{background:var(--ld-paper-2);border-top:1px solid var(--ld-stone-1);border-bottom:1px solid var(--ld-stone-1)}
.ld-trust .ld-proof-cell a{color:var(--ld-amber-deep);text-decoration:none}
.ld-trust .ld-proof-cell a:hover{text-decoration:underline}

/* faq */
.ld-faq{margin-top:30px;border:1px solid var(--ld-stone-1);border-radius:8px;background:var(--ld-paper-0);overflow:hidden}
.ld-faq details{border-bottom:1px solid var(--ld-stone-1)}
.ld-faq details:last-child{border-bottom:0}
.ld-faq summary{cursor:pointer;list-style:none;display:flex;justify-content:space-between;align-items:center;gap:16px;
  padding:18px 22px;font:600 1rem/1.4 var(--ld-sans);color:var(--ld-ink)}
.ld-faq summary::-webkit-details-marker{display:none}
.ld-faq summary::after{content:"+";font:400 1.2rem/1 var(--ld-mono);color:var(--ld-stone-3);flex-shrink:0}
.ld-faq details[open] summary::after{content:"−"}
.ld-faq .a{padding:0 22px 20px;color:var(--ld-ink-2);font-size:1rem}
.ld-faq .a p{margin:0 0 8px}

/* closing + compliance */
.ld-close{background:var(--ld-ink);color:var(--ld-paper-1)}
.ld-close .ld-h2{color:var(--ld-paper-0)}
.ld-close .ld-lede{color:var(--ld-paper-2)}
.ld-close .ld-btn{background:var(--ld-paper-0);border-color:var(--ld-paper-0);color:var(--ld-ink)!important}
.ld-close .ld-btn:hover{background:var(--ld-paper-2);border-color:var(--ld-paper-2)}
.ld-compliance{border-top:1px solid var(--ld-stone-1);padding:26px 0 34px;background:var(--ld-paper-1)}
.ld-compliance p{margin:0 0 8px}

/* ============ v2 homepage — expansive masthead, photo shelf, editorial ============ */
.ld-masthead{position:relative;min-height:min(86svh,880px);display:flex;align-items:stretch;overflow:hidden;background:var(--ld-paper-2)}
.ld-masthead-img{position:absolute;inset:0}
.ld-masthead-img img{width:100%;height:100%;object-fit:cover;object-position:62% 40%}
/* text integrates with the photograph over a paper wash — no box, no border (Michael, Sep 1) */
.ld-masthead::before{content:"";position:absolute;inset:0;z-index:1;
  background:linear-gradient(93deg,rgba(247,242,233,.96) 0%,rgba(247,242,233,.86) 30%,rgba(247,242,233,.44) 54%,rgba(247,242,233,.06) 72%,rgba(247,242,233,0) 82%)}
.ld-masthead-inner{position:relative;z-index:2;width:100%;max-width:1120px;margin:0 auto;padding:0 24px;display:flex;align-items:center}
.ld-masthead-copy{max-width:620px;margin:72px 0;padding:0}
.ld-masthead-copy .ld-h1{font-size:clamp(3.2rem,6.8vw,5.4rem);line-height:1.02}
.ld-masthead-copy .ld-lede{max-width:52ch}
.ld-chips{position:absolute;z-index:2;right:28px;bottom:28px;display:flex;flex-direction:column;gap:12px;align-items:flex-end}
.ld-glasschip{display:inline-flex;align-items:center;gap:10px;padding:12px 18px;border-radius:999px;
  background:rgba(253,251,247,.62);backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);
  border:1px solid rgba(220,211,193,.7);font:400 .875rem/1 var(--ld-mono);color:var(--ld-ink);letter-spacing:.01em}
.ld-glasschip::before{content:"";width:7px;height:7px;border-radius:50%;background:var(--ld-amber)}
@media(max-width:900px){
  .ld-masthead{min-height:76svh;align-items:flex-end}
  .ld-masthead::before{background:linear-gradient(180deg,rgba(247,242,233,.05) 0%,rgba(247,242,233,.42) 34%,rgba(247,242,233,.94) 64%,rgba(247,242,233,.97) 100%)}
  .ld-masthead-inner{padding:0 20px;align-items:flex-end}
  .ld-masthead-copy{margin:44vh 0 40px}
  .ld-masthead-copy .ld-h1{font-size:clamp(2.6rem,10vw,3.4rem)}
  .ld-chips{display:none}
}

/* shelf v2 — photo tiles, whole-card clickable, slow zoom */
.ld-tilegrid{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:24px;margin-top:20px}
.ld-tile{position:relative;display:flex;flex-direction:column;background:var(--ld-paper-0);border:1px solid var(--ld-stone-1);
  border-radius:10px;overflow:hidden;transition:transform .35s ease,box-shadow .35s ease}
.ld-tile:hover{transform:translateY(-4px);box-shadow:0 22px 48px rgba(34,30,25,.12)}
.ld-tile-img{background:var(--ld-paper-2);height:210px;display:flex;align-items:center;justify-content:center;overflow:hidden}
.ld-tile-img img{max-height:180px;width:auto;max-width:80%;object-fit:contain;transform:scale(1.02);
  transition:transform 4s cubic-bezier(.2,.6,.2,1);filter:drop-shadow(0 14px 22px rgba(34,30,25,.16))}
.ld-tile:hover .ld-tile-img img{transform:scale(1.1)}
.ld-tile-body{padding:22px 24px 24px;display:flex;flex-direction:column;flex:1}
.ld-tile-name{font:500 1.45rem/1.2 var(--ld-serif);color:var(--ld-ink);margin:0}
.ld-tile-body .ld-spec{margin-top:8px;font-size:.9375rem;color:var(--ld-stone-3)}
.ld-tile-body p.desc{margin:12px 0 0;color:var(--ld-ink-2);font-size:1rem}
.ld-tile-cta{margin-top:auto;padding-top:18px;font:500 1rem/1 var(--ld-sans);color:var(--ld-amber-deep)}
.ld-tile-cta::after{content:" →";transition:margin .25s ease}
.ld-tile:hover .ld-tile-cta::after{margin-left:4px}
.ld-tile a.cover{position:absolute;inset:0;z-index:1}
@media(prefers-reduced-motion:reduce){.ld-tile,.ld-tile-img img,.ld-tile-cta::after{transition:none}}

/* editorial breather band */
.ld-editorial{position:relative;overflow:hidden;background:var(--ld-paper-2)}
.ld-editorial img.bg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;opacity:.9}
.ld-editorial .inner{position:relative;z-index:2;max-width:880px;margin:0 auto;padding:110px 24px;text-align:center}
.ld-editorial .line{font:500 clamp(1.6rem,3.6vw,2.6rem)/1.3 var(--ld-serif);font-style:italic;color:var(--ld-ink)}
.ld-editorial .ld-eyebrow{margin-top:18px}

/* how-care v2 — oversized numerals + photo column */
.ld-how-grid{display:grid;grid-template-columns:1.15fr .85fr;gap:36px;align-items:stretch;margin-top:34px}
@media(max-width:960px){.ld-how-grid{grid-template-columns:1fr}}
.ld-how-grid .ld-steps{grid-template-columns:repeat(2,1fr);margin-top:0}
@media(max-width:560px){.ld-how-grid .ld-steps{grid-template-columns:1fr}}
.ld-step .n{font:400 2.2rem/1 var(--ld-mono);color:var(--ld-amber-deep);letter-spacing:0}
.ld-how-photo{border-radius:10px;overflow:hidden;border:1px solid var(--ld-stone-1);min-height:320px}
.ld-how-photo img{width:100%;height:100%;object-fit:cover}


/* ============================================================
   Motion system — playbook 04 §7 as amended 2026-09-02.
   The page is complete without JS: .ld-reveal only hides once the
   root carries .ld-motion (set by leveldose-motion.js, and never
   under prefers-reduced-motion).
   ============================================================ */
.ld-motion .ld-reveal{opacity:0;transform:translateY(8px);transition:opacity .4s ease,transform .4s ease}
.ld-motion .ld-reveal.is-in{opacity:1;transform:none}
.ld-motion .ld-reveal[data-delay="1"]{transition-delay:.08s}
.ld-motion .ld-reveal[data-delay="2"]{transition-delay:.16s}
.ld-motion .ld-reveal[data-delay="3"]{transition-delay:.24s}
/* one slow zoom per load on the photograph (the house move, promoted from hover to arrival) */
@keyframes ld-zoom{from{transform:scale(1.06)}to{transform:scale(1)}}
.ld-motion .ld-masthead-img img,.ld-motion .ld-hero-img img{animation:ld-zoom 22s ease-out 1 both;transform-origin:62% 40%}
.ld-motion .ld-hero-img img{transform-origin:50% 50%}
@media(prefers-reduced-motion:reduce){
  .ld-motion .ld-reveal{opacity:1;transform:none;transition:none}
  .ld-motion .ld-masthead-img img,.ld-motion .ld-hero-img img{animation:none;transform:none}
}

/* ============================================================
   Homepage v3 — Michael's desktop review, 2026-09-02:
   the shelf sat left with a third of the width empty; how-care-works
   wanted the masthead's own photographic treatment; the FAQ read
   sterile against the warm page.
   ============================================================ */

/* shelf v3 — each collection is a full-width row: label column + two wide tiles */
.ld-shelf-row{display:grid;grid-template-columns:minmax(220px,.34fr) 1fr;gap:48px;margin-top:44px;padding-top:30px;border-top:1px solid var(--ld-stone-1)}
@media(max-width:900px){.ld-shelf-row{grid-template-columns:1fr;gap:20px;margin-top:34px;padding-top:24px}}
.ld-shelf-label h3{font:500 clamp(1.5rem,2.4vw,1.9rem)/1.15 var(--ld-serif);color:var(--ld-ink);margin:10px 0 0;letter-spacing:-.01em}
.ld-shelf-label p.desc{font-size:1rem;color:var(--ld-ink-2);margin:12px 0 0;max-width:30ch}
.ld-shelf-label .count{display:block;margin-top:18px}
.ld-shelf-row .ld-tilegrid{grid-template-columns:repeat(2,1fr);margin-top:0;gap:28px}
@media(max-width:620px){.ld-shelf-row .ld-tilegrid{grid-template-columns:1fr}}
.ld-shelf-row .ld-tile-img{height:250px}
.ld-shelf-row .ld-tile-img img{max-height:214px;max-width:76%}
.ld-shelf-note{margin-top:30px;padding-top:22px;border-top:1px solid var(--ld-stone-1)}

/* how-care v3 — the photographic band: the masthead's treatment, mirrored (photo left, chapters right) */
.ld-howband{position:relative;overflow:hidden;background:var(--ld-paper-2);min-height:min(88svh,840px);display:flex;align-items:center}
.ld-howband-img{position:absolute;inset:0}
.ld-howband-img img{width:100%;height:100%;object-fit:cover;object-position:22% 50%}
.ld-howband::before{content:"";position:absolute;inset:0;z-index:1;
  background:linear-gradient(273deg,rgba(247,242,233,.97) 0%,rgba(247,242,233,.9) 36%,rgba(247,242,233,.54) 56%,rgba(247,242,233,.08) 74%,rgba(247,242,233,0) 84%)}
.ld-howband-inner{position:relative;z-index:2;width:100%;max-width:1120px;margin:0 auto;padding:84px 24px;display:grid;grid-template-columns:minmax(0,.8fr) minmax(0,1.2fr)}
.ld-howband-copy{grid-column:2;width:100%;max-width:640px;justify-self:end}
.ld-howband-copy .ld-h2{font-size:clamp(1.9rem,3.6vw,2.6rem)}
.ld-howband-copy .ld-lede{margin-top:12px;max-width:48ch}
.ld-howband-copy .ld-steps{grid-template-columns:1fr;margin-top:26px}
.ld-howband-copy .ld-step{padding:18px 0 20px}
.ld-howband-copy .ld-step .n{font-size:1.6rem}
.ld-howband-copy .ld-step:last-child{border-bottom:0}
.ld-motion .ld-howband-img img{animation:ld-zoom 22s ease-out 1 both;transform-origin:22% 50%}
@media(max-width:900px){
  .ld-howband{min-height:0;align-items:flex-end}
  .ld-howband::before{background:linear-gradient(180deg,rgba(247,242,233,.06) 0%,rgba(247,242,233,.58) 28%,rgba(247,242,233,.96) 48%,rgba(247,242,233,.98) 100%)}
  .ld-howband-inner{grid-template-columns:1fr;padding:44vh 20px 40px}
  .ld-howband-copy{grid-column:1;max-width:none}
}
@media(prefers-reduced-motion:reduce){.ld-motion .ld-howband-img img{animation:none;transform:none}}

/* about-this-treatment (treatment pages) — three ruled cells: what it does / how it's taken / what to expect */
.ld-about-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:0;margin-top:8px}
.ld-about-cell{padding:26px 28px 30px 0;border-right:1px solid var(--ld-stone-1)}
.ld-about-cell+.ld-about-cell{padding-left:28px}
.ld-about-cell:last-child{border-right:0;padding-right:0}
.ld-about-cell p:not(.ld-eyebrow){margin:12px 0 0;font-size:1.0625rem;line-height:1.65;color:var(--ld-ink-2)}
@media(max-width:860px){.ld-about-grid{grid-template-columns:1fr}.ld-about-cell{border-right:0;border-bottom:1px solid var(--ld-stone-1);padding:22px 0}.ld-about-cell+.ld-about-cell{padding-left:0}.ld-about-cell:last-child{border-bottom:0}}

/* faq v3 — warm band, intro column + numbered ruled list (no white box) */
.ld-faqband{background:var(--ld-paper-2);border-top:1px solid var(--ld-stone-1)}
.ld-faq-grid{display:grid;grid-template-columns:minmax(240px,.38fr) 1fr;gap:56px;align-items:start}
@media(max-width:900px){.ld-faq-grid{grid-template-columns:1fr;gap:26px}}
.ld-faq-intro{position:sticky;top:96px}
.ld-faq-intro .ld-h2{margin-top:10px}
.ld-faq-intro .ld-lede{margin-top:14px;max-width:34ch}
.ld-faq-intro .ld-spec{margin-top:22px}
.ld-faq-intro .ld-spec a{color:var(--ld-amber-deep);text-decoration:none;border-bottom:1px solid var(--ld-stone-1)}
.ld-faq-intro .ld-spec a:hover{border-bottom-color:var(--ld-amber-deep)}
.ld-faq--ruled{margin-top:0;border:0;border-radius:0;background:transparent;border-top:1px solid var(--ld-stone-1);overflow:visible}
.ld-faq--ruled details{border-bottom:1px solid var(--ld-stone-1)}
.ld-faq--ruled summary{padding:22px 0;justify-content:flex-start;gap:18px;font:500 1.2rem/1.3 var(--ld-serif);color:var(--ld-ink);transition:color .2s ease}
.ld-faq--ruled summary .q-n{font:400 .875rem/1 var(--ld-mono);color:var(--ld-amber-deep);letter-spacing:.06em;min-width:34px;padding-top:7px}
.ld-faq--ruled summary .q{flex:1}
.ld-faq--ruled summary::after{margin-left:auto;color:var(--ld-amber-deep)}
.ld-faq--ruled details[open] summary{color:var(--ld-amber-deep)}
.ld-faq--ruled .a{padding:0 0 26px 52px}
.ld-faq--ruled .a p{max-width:62ch}

/* shelf v4 — the photograph fills the tile (Michael, 2026-09-02: an inset square inside a rounded tile read
   as two boxes; the vials looked airborne and their labels carried illegible pseudo-text — new grounded,
   blank-label renders shot at 4:3 bleed to the tile's rounded top edge) */
.ld-shelf-row .ld-tile-img,.ld-tilegrid .ld-tile-img{height:auto!important;aspect-ratio:4/3;padding:0;background:var(--ld-paper-2)}
.ld-tile-img img{width:100%!important;height:100%!important;max-width:none!important;max-height:none!important;object-fit:cover;object-position:50% 60%;
  filter:none!important;transform:scale(1.01);transition:transform 4s cubic-bezier(.2,.6,.2,1)}
.ld-tile:hover .ld-tile-img img{transform:scale(1.06)}
/* plan cards: the product image is now a photograph, not a cut-out — show it as a small rounded thumbnail */

/* ============================================================
   Treatment masthead — Michael, 2026-09-03: "the product landing pages
   don't give that expansiveness … the exact same graphic on every one."
   The landing hero now uses the homepage masthead anatomy with one
   outcome-led Class-A-wide scene per molecule.
   ============================================================ */
.ld-masthead--treatment{min-height:min(80svh,820px)}
.ld-masthead--treatment .ld-masthead-copy{max-width:640px;margin:64px 0}
.ld-masthead--treatment .ld-masthead-copy .ld-h1{font-size:clamp(3rem,6.2vw,5rem)}
.ld-masthead--treatment .ld-masthead-copy .ld-spec{margin:16px 0 12px;max-width:52ch}
.ld-masthead--treatment .ld-masthead-copy .ld-lede{margin-top:0;max-width:50ch}
.ld-masthead--treatment .ld-hero-ctas{margin-top:26px}
@media(max-width:900px){
  .ld-masthead--treatment .ld-masthead-copy{margin:42vh 0 36px}
  .ld-masthead--treatment .ld-masthead-copy .ld-h1{font-size:clamp(2.5rem,10vw,3.2rem)}
}

/* == pdp-shared == PDP Overhaul 9.0-LD shared components (first run: tirzepatide, 2026-09-03).
   Generic pieces every rebuilt treatment page can use: the published dose ladder inside the plans
   module, a four-cell trust band, shopper-facing footnotes, the alternatives table, the safety
   grid, the sources list. Tokens only; nothing here is molecule-specific. */
.ld-trust--4 .ld-proof-grid{grid-template-columns:repeat(4,1fr)}
@media(max-width:960px){.ld-trust--4 .ld-proof-grid{grid-template-columns:repeat(2,1fr)}
  .ld-trust--4 .ld-proof-cell+.ld-proof-cell{border-left:0;border-top:1px solid var(--ld-stone-1)}
  .ld-trust--4 .ld-proof-cell:nth-child(2){border-top:0;border-left:1px solid var(--ld-stone-1)}
  .ld-trust--4 .ld-proof-cell:nth-child(4){border-left:1px solid var(--ld-stone-1)}}
@media(max-width:560px){.ld-trust--4 .ld-proof-grid{grid-template-columns:1fr}
  .ld-trust--4 .ld-proof-cell:nth-child(2),.ld-trust--4 .ld-proof-cell:nth-child(4){border-left:0;border-top:1px solid var(--ld-stone-1)}}

/* footnote markers + the mono footnote block under a section */
.ld-cite{font:400 .72em/1 var(--ld-mono);color:var(--ld-amber-deep);vertical-align:super;margin-left:2px;text-decoration:none}
a.ld-cite:hover{text-decoration:underline}
.ld-footnote{max-width:72ch;color:var(--ld-stone-3)}
.ld-footnote a{color:var(--ld-amber-deep);text-decoration:none;border-bottom:1px solid var(--ld-stone-1)}
.ld-footnote a:hover{border-bottom-color:var(--ld-amber-deep)}

/* the dose ladder — a lab record, not a sales grid (05 §4) */
.ld-ladder{margin-top:34px;background:var(--ld-paper-0);border:1px solid var(--ld-stone-1);border-radius:8px;overflow:hidden}
.ld-ladder-head{padding:22px 26px 18px;background:var(--ld-paper-2);border-bottom:1px solid var(--ld-stone-1)}
.ld-ladder-head .ld-spec{max-width:66ch}
.ld-ladder-scroll{overflow-x:auto;-webkit-overflow-scrolling:touch}
.ld-ladder-table{width:100%;border-collapse:collapse;min-width:560px}
.ld-ladder-table th,.ld-ladder-table td{padding:16px 26px;text-align:left;border-bottom:1px solid var(--ld-stone-1);vertical-align:baseline}
.ld-ladder-table thead th{font:400 .8125rem/1.4 var(--ld-mono);letter-spacing:.06em;text-transform:uppercase;color:var(--ld-stone-3);padding-top:14px;padding-bottom:12px}
.ld-ladder-table tbody th{font:500 1.1rem/1.3 var(--ld-serif);color:var(--ld-ink)}
.ld-ladder-table tbody tr:last-child th,.ld-ladder-table tbody tr:last-child td{border-bottom:0}
.ld-ladder-table td.mono{font:400 1rem/1.5 var(--ld-mono);color:var(--ld-ink);font-variant-numeric:tabular-nums;white-space:nowrap}
.ld-ladder-table td.mono .unit{color:var(--ld-stone-3)}
.ld-chip--inline{margin-left:10px;vertical-align:middle;font-size:.68rem}
.ld-ladder-note{padding:16px 26px 20px;margin:0;max-width:none;border-top:1px solid var(--ld-stone-1)}

/* alternatives — the shopper's other routes to the outcome (R5): tried · why it stalls · calibrated care */
.ld-alt{margin-top:30px;border-top:1px solid var(--ld-stone-1)}
.ld-alt-row{display:grid;grid-template-columns:.9fr 1fr 1.2fr;gap:28px;padding:24px 0;border-bottom:1px solid var(--ld-stone-1)}
.ld-alt-row h3{font:500 1.2rem/1.3 var(--ld-serif);color:var(--ld-ink);margin:0}
.ld-alt-row p{margin:0;font-size:1rem;color:var(--ld-ink-2)}
.ld-alt-row .ld-eyebrow{margin-bottom:8px}
.ld-alt-head{display:grid;grid-template-columns:.9fr 1fr 1.2fr;gap:28px;padding:14px 0 10px}
@media(max-width:860px){.ld-alt-row,.ld-alt-head{grid-template-columns:1fr;gap:12px}.ld-alt-head{display:none}.ld-alt-row{padding:22px 0}}

/* safety & honesty — two ruled lists, the compounded line and the results-vary line as designed elements */
.ld-safety-grid{display:grid;grid-template-columns:1fr 1fr;gap:28px;margin-top:30px}
@media(max-width:860px){.ld-safety-grid{grid-template-columns:1fr}}
.ld-safety-list{list-style:none;margin:12px 0 0;padding:0;border-top:1px solid var(--ld-stone-1)}
.ld-safety-list li{padding:12px 0 12px 22px;border-bottom:1px solid var(--ld-stone-1);position:relative;font-size:1rem;color:var(--ld-ink-2)}
.ld-safety-list li::before{content:"—";position:absolute;left:0;color:var(--ld-stone-3)}
.ld-safety-list li b{font-weight:600;color:var(--ld-ink)}
.ld-honest{margin-top:30px;padding:22px 26px;background:var(--ld-paper-2);border:1px solid var(--ld-stone-1);border-radius:8px}
.ld-honest p{margin:0;font:400 1rem/1.6 var(--ld-mono);color:var(--ld-ink);max-width:none}
.ld-honest p+p{margin-top:10px;padding-top:10px;border-top:1px solid var(--ld-stone-1)}

/* sources — the citations block (R7: shopper-facing on treatment pages) */
.ld-sources{background:var(--ld-paper-2);border-top:1px solid var(--ld-stone-1)}
.ld-sources ol{margin:18px 0 0;padding:0 0 0 30px;max-width:80ch;font:400 .9375rem/1.6 var(--ld-mono);color:var(--ld-ink-2)}
.ld-sources li{margin:8px 0;padding-left:6px}
.ld-sources li::marker{color:var(--ld-amber-deep)}
.ld-sources a{color:var(--ld-ink);text-decoration:none;border-bottom:1px solid var(--ld-stone-1);word-break:break-word}
.ld-sources a:hover{border-bottom-color:var(--ld-amber-deep)}
/* == pdp-shared (2) == the copy-file sections: reassure line, variant line, panels, next figures */
.ld-reassure{margin-top:16px;color:var(--ld-stone-3);max-width:52ch}
.ld-variant-line{margin:6px 0 0;font-size:.9375rem;line-height:1.5;color:var(--ld-ink-2)}
.ld-panels{display:grid;gap:22px;margin-top:30px}
.ld-panels--1{grid-template-columns:minmax(0,640px)}.ld-panels--2{grid-template-columns:repeat(2,1fr)}.ld-panels--3{grid-template-columns:repeat(3,1fr)}
@media(max-width:860px){.ld-panels--2,.ld-panels--3{grid-template-columns:1fr}}
.ld-panel{margin:0;border:1px solid var(--ld-stone-1);border-radius:8px;overflow:hidden;background:var(--ld-paper-0)}
.ld-panel img{display:block;width:100%;height:auto}
.ld-panel figcaption{padding:10px 14px;border-top:1px solid var(--ld-stone-1);color:var(--ld-stone-3)}
.ld-steps--single{grid-template-columns:1fr}
.ld-arrives{margin-top:26px;padding:22px 24px;background:var(--ld-paper-0);border:1px solid var(--ld-stone-1);border-radius:8px}
.ld-arrives-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:12px}
@media(max-width:760px){.ld-arrives-grid{grid-template-columns:1fr}}
.ld-next-figures{display:flex;flex-direction:column}
.ld-alt-mobile{display:none}
@media(max-width:860px){.ld-alt-mobile{display:block}}

/* == pdp-tadalafil == PDP Overhaul 1.0-LD — tadalafil-only sections (2026-09-03). Tokens only.
   The regimen grid (two ruled cells beside the two-ways panel) and the intake grid (a ruled list
   beside the intake panel). Appended after the shared 9.0-LD blocks; touches no other molecule. */
.ld-regimen-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:44px;align-items:start;margin-top:8px}
.ld-regimen-grid--noimg{grid-template-columns:1fr}
.ld-regimen-cells{display:grid;grid-template-columns:1fr 1fr;gap:0 32px}
.ld-regimen-cell{padding:22px 0 24px;border-bottom:1px solid var(--ld-stone-1)}
.ld-regimen-cell p:not(.ld-eyebrow){margin:12px 0 0;font-size:1.0625rem;line-height:1.65;color:var(--ld-ink-2)}
.ld-regimen-chooser{grid-column:1 / -1;margin-top:22px;max-width:70ch}
.ld-regimen-switch{grid-column:1 / -1;margin:14px 0 0;font-size:1rem;color:var(--ld-ink-2);max-width:70ch}
.ld-regimen-cta{grid-column:1 / -1;margin:22px 0 0}
.ld-regimen-figure,.ld-intake-figure{margin:0;border:1px solid var(--ld-stone-1);border-radius:8px;overflow:hidden;background:var(--ld-paper-0)}
.ld-regimen-figure img,.ld-intake-figure img{display:block;width:100%;height:auto}
@media(max-width:900px){.ld-regimen-grid{grid-template-columns:1fr;gap:28px}.ld-regimen-figure{order:-1;max-width:560px}}
@media(max-width:620px){.ld-regimen-cells{grid-template-columns:1fr}}
.ld-intake-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:44px;align-items:start}
.ld-intake-grid--noimg{grid-template-columns:1fr}
@media(max-width:900px){.ld-intake-grid{grid-template-columns:1fr;gap:28px}.ld-intake-figure{max-width:560px}}
.ld-textlink{color:var(--ld-amber-deep);text-decoration:none;border-bottom:1px solid var(--ld-stone-1);margin-left:6px}
.ld-textlink:hover{border-bottom-color:var(--ld-amber-deep)}

/* ============================================================
   Sources fold — Michael, 2026-09-03: "I don't need the sources portion
   to be so freaking long on every product page." The block is a slim
   band with one disclosure; the list opens on demand, and a citation
   link in the copy opens it before scrolling (script in the section).
   ============================================================ */
.ld-sources.ld-section{padding:30px 0}
.ld-sources-fold{margin:0}
.ld-sources-fold>summary{list-style:none;cursor:pointer;display:flex;align-items:baseline;gap:14px;flex-wrap:wrap;padding:6px 0}
.ld-sources-fold>summary::-webkit-details-marker{display:none}
.ld-sources-fold>summary:focus-visible{outline:2px solid var(--ld-amber);outline-offset:6px;border-radius:4px}
.ld-sources-title{font:500 1.25rem/1.3 var(--ld-serif);color:var(--ld-ink);letter-spacing:-.01em;margin:0}
.ld-sources-count{font:400 .875rem/1 var(--ld-mono);color:var(--ld-stone-3);letter-spacing:.01em}
.ld-sources-toggle{margin-left:auto;font:400 .875rem/1 var(--ld-mono);color:var(--ld-amber-deep);white-space:nowrap}
.ld-sources-fold[open] .ld-sources-toggle .when-closed,.ld-sources-fold:not([open]) .ld-sources-toggle .when-open{display:none}
.ld-sources-fold .ld-lede{margin-top:14px;font-size:1rem}
.ld-sources-fold ol{margin-top:14px;list-style:decimal outside}
.ld-sources-fold li::marker{font:400 .875rem/1 var(--ld-mono);color:var(--ld-amber-deep)}
@media(max-width:620px){.ld-sources-toggle{margin-left:0}}

