/* ============================================================================
   /local  ·  page-unique act content only.
   Everything reusable (nav, footer, buttons, kicker, arrow links, stages) lives
   in site.css and base.css. Every instrument lives in instruments.css.
   Built 2026-08-30 for the founder-first restructure.
   ============================================================================ */

.lh-open,
.lh-close {
  padding-block: var(--section-pad-lg);
}

.lh-ladder,
.lh-instrument,
.lh-trades {
  padding-block: var(--section-pad-lg);
}

.lh-h1 {
  font-family: var(--font-display);
  font-size: var(--text-h1);
  font-weight: 800;
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  margin: var(--space-4) 0 var(--space-6);
  max-width: 20ch;
  text-wrap: balance;
}

.lh-h2 {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: 800;
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  margin: var(--space-4) 0 var(--space-6);
  max-width: 24ch;
  text-wrap: balance;
}

.lh-lede {
  font-size: var(--text-body-lg);
  line-height: var(--leading-body);
  max-width: 54ch;
  margin: 0 0 var(--space-8);
}

.lh-body {
  font-size: var(--text-body);
  line-height: var(--leading-body);
  max-width: 52ch;
  margin: 0 0 var(--space-6);
}

/* The CTA cluster. On a money surface the primary action is never subtle, per
   the 29 Aug correction to the art-direction foundation: type steps back on
   portfolio surfaces, never on a surface whose job is to make someone decide. */
.lh-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-4);
}

.lh-cta__note {
  font-size: var(--text-small);
  color: var(--slate);
}
.stage-dark .lh-cta__note { color: var(--slope); }

/* ---- Figures ---- */

.lh-fig {
  margin: var(--space-8) 0 0;
  padding: var(--space-6);
  border: 1px solid rgba(14, 19, 24, 0.10);
  border-radius: var(--radius-standard);
  background: var(--card);
}

.lh-branch__b {
  font-size: var(--text-small);
  line-height: 1.45;
  color: var(--label-ink);
  margin: 0;
}

.lh-branch__go {
  margin: var(--space-2) 0 0;
  font-size: var(--text-small);
}

/* The unresolved rung reads as unresolved on purpose. It is a dashed field, not
   a finished card, so it can never be mistaken for shippable and can never
   quietly survive to a customer. */
.lh-branch--parked {
  border-style: dashed;
  border-color: var(--slope);
  background: repeating-linear-gradient(
    135deg,
    transparent, transparent 8px,
    rgba(14, 19, 24, 0.025) 8px, rgba(14, 19, 24, 0.025) 16px
  );
}

/* ---- Instrument act: copy beside the figure ---- */

.lh-instrument__grid {
  display: grid;
  gap: var(--space-12);
  grid-template-columns: 1fr;
  align-items: start;
}

@media (min-width: 900px) {
  .lh-instrument__grid { grid-template-columns: 1fr 1fr; gap: var(--space-16); }
  .lh-instrument__grid .lh-fig { margin-top: 0; }
}

/* ---- By trade ---- */

.lh-trades__row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.lh-trade {
  display: inline-block;
  padding: var(--space-3) var(--space-5);
  border: 1px solid rgba(14, 19, 24, 0.14);
  border-radius: var(--radius-round);
  font-size: var(--text-small);
  color: var(--body-ink);
  text-decoration: none;
  transition: border-color var(--dur-fast) var(--ease-fade),
              color var(--dur-fast) var(--ease-fade);
}

.lh-trade:hover,
.lh-trade:focus-visible {
  border-color: var(--logo);
  color: var(--logo);
}

.lh-note {
  font-size: var(--text-small);
  color: var(--label-ink);
  max-width: 56ch;
  margin: 0;
}

/* ---- Close ---- */

.lh-close .lh-h2 { margin-top: 0; }

@media (prefers-reduced-motion: reduce) {
  .lh-trade { transition: none; }
}
