/* ==========================================================================
   Tanto — home page
   Palette is OKLCH. --accent is the brand terracotta; --accent-ink is the
   same hue darkened to L=0.54 so text and button fills clear WCAG AA (4.67:1).
   The undarkened --accent only ever carries decoration, never meaning.
   ========================================================================== */

:root {
  --bg:          oklch(0.95 0.012 75);
  --surface:     oklch(0.97 0.008 75);
  --ink:         oklch(0.25 0.02 50);
  --muted:       oklch(0.42 0.02 55);
  --faint:       oklch(0.48 0.02 55);
  --rule:        oklch(0.80 0.015 75);
  --rule-soft:   oklch(0.87 0.012 75);
  --rule-strong: oklch(0.70 0.02 70);
  --accent:      oklch(0.62 0.16 45);
  --accent-ink:  oklch(0.54 0.16 45);

  --serif: "Instrument Serif", Georgia, serif;
  --sans:  "IBM Plex Sans", system-ui, -apple-system, sans-serif;
  --mono:  "IBM Plex Mono", ui-monospace, SFMono-Regular, monospace;
  --brand: "Space Grotesk", var(--sans);

  --gutter: 5vw;
  --rail: 90px;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--accent-ink); }

:focus-visible {
  outline: 2px solid var(--accent-ink);
  outline-offset: 3px;
}

::selection { background: var(--accent-ink); color: var(--bg); }

h1, h2, p { margin: 0; text-wrap: pretty; }
h1, h2 { font-family: var(--serif); font-weight: 400; letter-spacing: -0.02em; }

/* Utility ----------------------------------------------------------------- */

/* Mono labels are set in caps throughout; the markup keeps sentence case so
   the text stays readable to screen readers and in search results. */
.mono {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
}

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 16px;
}

.lede { font-size: 16px; color: var(--muted); line-height: 1.7; }

.arrow-link {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--accent-ink);
  display: inline-block;
  text-transform: uppercase;
}
.arrow-link:hover { text-decoration: underline; text-underline-offset: 4px; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 12px 20px;
  background: var(--ink);
  color: var(--bg);
}
.skip-link:focus { left: 0; }

/* Buttons ----------------------------------------------------------------- */

.btn {
  display: inline-block;
  font-weight: 500;
  font-size: 16px;
  padding: 17px 34px;
  text-align: center;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.btn--primary { background: var(--accent-ink); color: var(--bg); }
.btn--primary:hover { background: var(--ink); color: var(--bg); }
.btn--dark { background: var(--ink); color: var(--bg); padding: 10px 20px; font-size: 14px; }
.btn--dark:hover { background: var(--accent-ink); color: var(--bg); }
.btn--ghost { border: 1px solid var(--rule-strong); color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink); background: var(--surface); color: var(--ink); }

/* Announcement + header --------------------------------------------------- */

.announce {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 10px var(--gutter);
  border-bottom: 1px solid var(--rule);
  color: var(--faint);
  text-transform: uppercase;
}

.masthead {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 20px var(--gutter);
  border-bottom: 1px solid var(--rule);
  background: oklch(0.95 0.012 75 / 0.94);
  backdrop-filter: blur(6px);
}

.wordmark {
  font-family: var(--brand);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.03em;
  color: var(--ink);
  justify-self: center;
}
.wordmark span { color: var(--accent); }

.masthead__nav { display: flex; gap: 32px; font-size: 14px; align-items: center; }
.masthead__nav--end { justify-content: flex-end; }

.nav-toggle {
  display: none;
  font: inherit;
  font-size: 14px;
  padding: 8px 14px;
  background: none;
  border: 1px solid var(--rule-strong);
  color: var(--ink);
  cursor: pointer;
}

/* Section shell (numbered rail + body) ------------------------------------ */

.section {
  display: grid;
  grid-template-columns: var(--rail) 1fr;
  border-bottom: 1px solid var(--rule);
}
.section--tinted { background: var(--surface); }

.section__rail {
  border-right: 1px solid var(--rule);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 44px 0;
}
.section__rail--bottom { align-items: flex-end; padding: 28px 0; }
.section__rail .mono { font-size: 11px; }
.rail-vertical { writing-mode: vertical-rl; letter-spacing: 0.12em; }

.section__body { padding: 90px var(--gutter) 90px 4vw; }

/* Hero -------------------------------------------------------------------- */

.hero__body { padding: 90px var(--gutter) 80px 4vw; }

.hero h1 {
  font-size: clamp(44px, 7.5vw, 120px);
  line-height: 0.98;
  max-width: 1100px;
}
.hero h1 em { font-style: italic; }

.hero__foot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 56px;
  align-items: end;
}
.hero__foot p { font-size: 19px; color: var(--muted); line-height: 1.65; max-width: 520px; }

.hero__actions { display: flex; gap: 16px; justify-content: flex-end; flex-wrap: wrap; }

/* Split: photo + before/after --------------------------------------------- */

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  border-bottom: 1px solid var(--rule);
}

.split__media {
  border-right: 1px solid var(--rule);
  min-height: 520px;
  position: relative;
}
.split__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
}

.split__panel {
  padding: 70px 4vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--surface);
}

.panel-head {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--faint);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.swap { list-style: none; margin: 0; padding: 0; }
.swap li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 17px 0;
  border-bottom: 1px solid var(--rule-soft);
  font-size: 16px;
}
.swap li:last-child { border-bottom: 0; font-size: 17px; font-weight: 500; }

/* L=0.54 rather than the source's 0.55: 0.55 measured 4.47:1 on --surface,
   a hair under AA. */
.swap .was {
  text-decoration: line-through;
  text-decoration-color: var(--accent);
  color: oklch(0.54 0.02 55);
}
.swap .now {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent-ink);
  margin-left: auto;
}
.swap li:last-child .now { color: var(--ink); }

/* Two-column body layouts ------------------------------------------------- */

.duo { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr); gap: 70px; }
.duo--tight { grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr); align-items: center; }
.duo--centred { align-items: center; }

.section-title { font-size: clamp(32px, 4vw, 54px); line-height: 1.05; }
.section-title em { font-style: italic; }

/* Numbered steps ---------------------------------------------------------- */

.steps { display: flex; flex-direction: column; }

.step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  padding: 30px 0;
  border-top: 1px solid var(--rule);
}
.step:last-child { border-bottom: 1px solid var(--rule); }

.step__num {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--accent-ink);
  line-height: 2.1;
}
.step__title { font-family: var(--serif); font-size: 30px; line-height: 1.1; margin-bottom: 10px; }
.step__body { font-size: 15px; color: var(--muted); line-height: 1.7; max-width: 560px; }

/* Card grids (hairline gaps) ---------------------------------------------- */

.grid-hairline {
  display: grid;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.grid-hairline--2 { grid-template-columns: 1fr 1fr; }
.grid-hairline--auto { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

.card {
  background: var(--surface);
  padding: 56px 48px;
  display: block;
  color: var(--ink);
  transition: background-color 0.15s ease;
}
a.card:hover { background: var(--bg); color: var(--ink); }

.card__kicker { font-family: var(--mono); font-size: 12px; color: var(--accent-ink); margin-bottom: 20px;   text-transform: uppercase;
}
.card__title { font-family: var(--serif); font-size: 36px; margin-bottom: 16px; line-height: 1.1; }
.card__body { font-size: 16px; color: var(--muted); line-height: 1.7; margin-bottom: 28px; }
.card__cta { font-family: var(--mono); font-size: 13px; letter-spacing: 0.06em; color: var(--accent-ink);   text-transform: uppercase;
}

.card--pb { padding: 28px 26px; }
.card--pb .card__kicker { font-size: 11px; margin-bottom: 10px; }
.card--pb .card__title { font-size: 22px; line-height: 1.15; margin-bottom: 0; }

/* Founder / portrait slot -------------------------------------------------- */

.portrait { height: 440px; margin: 0; }
.portrait img { width: 100%; height: 100%; object-fit: cover; }

/* Placeholder shown until real art is dropped in. Intentional, not broken. */
.portrait--empty {
  border: 1px dashed var(--rule-strong);
  background:
    repeating-linear-gradient(
      135deg,
      transparent 0 14px,
      oklch(0.92 0.012 75) 14px 15px
    ),
    var(--surface);
  display: flex;
  align-items: flex-end;
  padding: 22px;
}
.portrait--empty figcaption {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
}

.why__quote { font-family: var(--serif); font-size: clamp(28px, 3vw, 42px); line-height: 1.2; margin-bottom: 24px; }
.why__quote em { font-style: italic; }
.why__body { font-size: 17px; color: var(--muted); line-height: 1.7; margin-bottom: 32px; max-width: 560px; }

/* Testimonials ------------------------------------------------------------ */

.quote {
  background: var(--surface);
  padding: 38px 34px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0;
}
.quote blockquote { margin: 0; font-size: 18px; line-height: 1.6; }
.quote blockquote em { font-style: italic; font-family: var(--serif); font-size: 21px; }
.quote figcaption {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--faint);
  text-transform: uppercase;
  margin-top: auto;
}

/* Closing CTA ------------------------------------------------------------- */

.closer {
  padding: 130px var(--gutter);
  text-align: center;
  border-bottom: 1px solid var(--rule);
}
.closer h2 { font-size: clamp(36px, 5.5vw, 80px); line-height: 1.02; max-width: 900px; margin: 0 auto 24px; }
.closer h2 em { font-style: italic; }
.closer p { font-size: 17px; color: var(--muted); margin: 0 auto 44px; max-width: 480px; line-height: 1.6; }
.closer .btn { padding: 18px 42px; font-size: 17px; }
.closer .mono { display: block; margin-top: 18px; letter-spacing: 0.08em; }

/* Footer ------------------------------------------------------------------ */

.footer {
  padding: 44px var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.footer__mark { font-family: var(--brand); font-weight: 700; font-size: 20px; letter-spacing: -0.03em; }
.footer__mark span { color: var(--accent); }
.footer__nav { display: flex; gap: 28px; font-size: 13px; flex-wrap: wrap; justify-content: center; }
.footer__nav a { color: var(--faint); }
.footer__nav a:hover { color: var(--accent-ink); }
.footer__meta { font-family: var(--mono); font-size: 12px; color: var(--faint); text-align: right; }

/* ==========================================================================
   Responsive — the source design is desktop-only; these are the added rules.
   ========================================================================== */

@media (max-width: 1080px) {
  .duo, .duo--tight { gap: 44px; }
  .card { padding: 44px 34px; }
  .card__title { font-size: 30px; }
}

@media (max-width: 900px) {
  :root { --gutter: 6vw; }

  /* Collapse the numbered rail: it becomes a horizontal strip above the body. */
  .section, .hero { grid-template-columns: 1fr; }
  .section__rail, .hero__rail {
    border-right: 0;
    border-bottom: 1px solid var(--rule);
    padding: 12px var(--gutter);
    justify-content: flex-start;
    align-items: center;
  }
  .rail-vertical { writing-mode: horizontal-tb; }

  .section__body, .hero__body { padding: 60px var(--gutter); }

  .hero__foot { grid-template-columns: 1fr; gap: 32px; align-items: start; }
  .hero__actions { justify-content: flex-start; }

  .split { grid-template-columns: 1fr; }
  .split__media { border-right: 0; border-bottom: 1px solid var(--rule); min-height: 420px; }
  .split__panel { padding: 48px var(--gutter); }

  .duo, .duo--tight { grid-template-columns: 1fr; }

  .portrait { height: 340px; }

  .closer { padding: 90px var(--gutter); }

  .footer { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .footer__meta { text-align: center; }
}

@media (max-width: 760px) {
  /* Nav collapses behind a toggle. */
  .masthead { grid-template-columns: auto 1fr; row-gap: 0; }
  .wordmark { justify-self: start; order: 1; }
  .nav-toggle { display: block; order: 2; justify-self: end; }

  .masthead__nav {
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
  }
  .masthead__nav--start { order: 3; }
  .masthead__nav--end { order: 4; }
  .masthead__nav a {
    width: 100%;
    padding: 14px 0;
    border-top: 1px solid var(--rule-soft);
  }
  .masthead__nav .btn--dark { margin: 14px 0 4px; width: 100%; border-top: 0; }

  /* Closed by default on small screens; .is-open reveals. */
  .masthead:not(.is-open) .masthead__nav { display: none; }
  .masthead.is-open { padding-bottom: 12px; }

  .grid-hairline--2 { grid-template-columns: 1fr; }
  .grid-hairline--auto { grid-template-columns: 1fr; }

  .step { grid-template-columns: 32px 1fr; gap: 12px; }
  .step__title { font-size: 26px; }

  .swap li { flex-wrap: wrap; gap: 6px; }
  .swap .now { margin-left: auto; }
}

@media (max-width: 420px) {
  .btn { padding: 15px 24px; font-size: 15px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .card { padding: 34px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   Shared page components — used by the interior pages (coaching, builds,
   story, contact, playbooks). Same vocabulary as the homepage above.
   ========================================================================== */

/* Current-page marker in the nav */
.masthead__nav a.is-current { color: var(--accent-ink); }

/* Interior page hero ------------------------------------------------------ */

.page-hero__body { padding: 84px var(--gutter) 72px 4vw; }

.page-hero .eyebrow--accent { color: var(--accent-ink); }

.page-hero h1 {
  font-size: clamp(40px, 5.6vw, 88px);
  line-height: 1;
  max-width: 1000px;
}
.page-hero h1 em { font-style: italic; }

.page-hero__lede {
  font-size: 19px;
  color: var(--muted);
  line-height: 1.65;
  margin-top: 32px;
  max-width: 620px;
}

/* Breadcrumb / meta strip (← all playbooks · PB–01 · 20 min read) */
.meta-strip {
  display: flex;
  gap: 24px;
  align-items: baseline;
  flex-wrap: wrap;
  margin-bottom: 24px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
}
.meta-strip a { color: var(--faint); }
.meta-strip a:hover { color: var(--accent-ink); }
.meta-strip .is-accent { color: var(--accent-ink); }

/* Bordered statement rows (“Who this is for”) ------------------------------ */

.rows { display: flex; flex-direction: column; }
.rows > * {
  padding: 26px 0;
  border-top: 1px solid var(--rule);
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
}
.rows > *:last-child { border-bottom: 1px solid var(--rule); }

/* Three-up hairline grid */
.grid-hairline--3 { grid-template-columns: repeat(3, 1fr); }

.card--compact { padding: 40px 32px; }
.card--compact .card__kicker { font-size: 11px; margin-bottom: 16px; }
.card--compact .card__title { font-size: 26px; margin-bottom: 12px; }
.card--compact .card__body { font-size: 15px; margin-bottom: 0; }

/* Spec strip (FORMAT · CADENCE · TOOLS) */
.spec-strip {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 36px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--faint);
}

/* Numbered list (“What you leave with”) ----------------------------------- */

.numlist { display: flex; flex-direction: column; }
.numlist li {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--rule-soft);
  align-items: baseline;
  font-size: 17px;
  line-height: 1.6;
}
.numlist li:last-child { border-bottom: 0; }
.numlist .n {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent-ink);
  flex: none;
}
.numlist { list-style: none; margin: 0; padding: 0; }

.numlist--boxed {
  border: 1px solid var(--rule);
  background: var(--surface);
  padding: 12px 32px;
}
.numlist--boxed li { font-size: 16px; }

/* Large serif pull paragraph ---------------------------------------------- */

.pull {
  font-family: var(--serif);
  font-size: clamp(21px, 2.2vw, 30px);
  line-height: 1.35;
  margin: 0;
}

/* Playbook method steps (wider gutter than homepage .step) ----------------- */

.msteps { display: flex; flex-direction: column; }
.mstep {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 28px;
  padding: 34px 0;
  border-top: 1px solid var(--rule);
}
.mstep:last-child { border-bottom: 1px solid var(--rule); }
.mstep__num { font-family: var(--mono); font-size: 13px; color: var(--accent-ink); }
.mstep__title { font-family: var(--serif); font-size: 28px; line-height: 1.15; margin: 0 0 12px; font-weight: 400; }
.mstep__body { font-size: 16px; color: var(--muted); line-height: 1.75; max-width: 640px; margin: 0; }

/* Email capture ------------------------------------------------------------ */

.capture { display: flex; flex-direction: column; gap: 14px; max-width: 420px; }
.capture input[type="email"] {
  font-family: var(--sans);
  border: 1px solid var(--rule);
  background: var(--bg);
  padding: 15px 16px;
  font-size: 16px;
  color: var(--ink);
  outline: none;
  width: 100%;
}
.capture input[type="email"]:focus { border-color: var(--accent-ink); }
.capture .btn { display: block; width: 100%; padding: 16px 34px; }

/* Prev / next pager -------------------------------------------------------- */

.pager {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--rule);
  border-bottom: 1px solid var(--rule);
}
.pager a { background: var(--bg); padding: 44px var(--gutter); display: block; }
.pager a:hover { background: var(--surface); }
.pager .pager__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 10px;
}
.pager .pager__title { font-family: var(--serif); font-size: 26px; line-height: 1.15; }
.pager .pager--next { text-align: right; }

/* Quote cards on an untinted section sit on the base background */
.quote--base { background: var(--bg); }

/* Even 50/50 media split (interior pages) */
.split--even { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }

/* Interior responsive ------------------------------------------------------ */

@media (max-width: 900px) {
  .page-hero__body { padding: 56px var(--gutter); }
  .grid-hairline--3 { grid-template-columns: 1fr; }
  .spec-strip { gap: 14px; flex-direction: column; }
}

@media (max-width: 760px) {
  .mstep { grid-template-columns: 36px 1fr; gap: 16px; }
  .mstep__title { font-size: 24px; }
  .pager { grid-template-columns: 1fr; }
  .pager .pager--next { text-align: left; }
  .numlist--boxed { padding: 6px 20px; }
}

/* Labelled step rows (contact page) --------------------------------------- */

.stepped { display: flex; flex-direction: column; max-width: 520px; margin: 0; padding: 0; list-style: none; }
.stepped li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid var(--rule);
  align-items: baseline;
  font-size: 16px;
  line-height: 1.6;
}
.stepped li:last-child { border-bottom: 1px solid var(--rule); }
.stepped .n {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
}

/* Contact two-pane layout */
.contact-split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  border-bottom: 1px solid var(--rule);
}
.contact-split__main { padding: 100px 4vw 90px var(--gutter); border-right: 1px solid var(--rule); }
.contact-split__aside {
  padding: 100px var(--gutter) 90px 4vw;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.book-panel { display: flex; flex-direction: column; gap: 18px; max-width: 440px; }
.book-panel .btn { display: block; width: 100%; }
.book-panel__note { text-align: center; }

@media (max-width: 900px) {
  .contact-split { grid-template-columns: 1fr; }
  .contact-split__main { padding: 56px var(--gutter); border-right: 0; border-bottom: 1px solid var(--rule); }
  .contact-split__aside { padding: 48px var(--gutter); }
  .stepped li { grid-template-columns: 90px 1fr; gap: 14px; }
}

@media (max-width: 420px) {
  .stepped li { grid-template-columns: 1fr; gap: 6px; }
}

/* Offer cards with a price/duration tag (builds page) --------------------- */

.offer { background: var(--surface); padding: 52px 44px; }
.offer__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.offer__title { font-family: var(--serif); font-size: 32px; font-weight: 400; margin: 0; line-height: 1.1; }
.offer__tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-ink);
}
.offer__body { font-size: 16px; color: var(--muted); line-height: 1.75; margin: 0 0 28px; }
.offer__spec {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--faint);
  line-height: 2;
  margin: 0;
  list-style: none;
  padding: 0;
}

/* Finding rows: statement on the left, outcome tag on the right ----------- */

.findings { display: flex; flex-direction: column; margin: 0; padding: 0; list-style: none; }
.findings li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid var(--rule);
  align-items: baseline;
  font-size: 16px;
}
.findings li:last-child { border-bottom: 1px solid var(--rule); }
.findings .to {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent-ink);
  text-transform: lowercase;
}

/* Rows variant where each row opens with a bold lead-in */
.rows .lead-in { font-weight: 500; }

@media (max-width: 760px) {
  .offer { padding: 38px 26px; }
  .findings li { grid-template-columns: 1fr; gap: 6px; }
}

/* Prose column (story page) ----------------------------------------------- */

.prose p { font-size: 17px; line-height: 1.75; color: oklch(0.35 0.02 55); margin: 0 0 24px; }
.prose p:last-child { margin-bottom: 0; }

/* Live stack panel (story page) ------------------------------------------- */

.stack {
  max-width: 760px;
  border: 1px solid var(--rule);
  background: var(--surface);
}
.stack__head {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
  padding: 14px 28px;
  border-bottom: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.stack__status { color: var(--accent-ink); }
.stack__list { display: flex; flex-direction: column; margin: 0; padding: 0; list-style: none; }
.stack__list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 18px 28px;
  border-bottom: 1px solid var(--rule-soft);
  align-items: baseline;
  font-size: 16px;
}
.stack__list li:last-child { border-bottom: 0; }
.stack__when {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--faint);
}

@media (max-width: 760px) {
  .stack__list li { grid-template-columns: 1fr; gap: 4px; }
  .stack__head { flex-direction: column; gap: 4px; }
}

/* Playbook index cards ----------------------------------------------------- */

.pbcard {
  background: var(--surface);
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--ink);
}
a.pbcard:hover { background: var(--bg); }

.pbcard__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pbcard__ref { color: var(--accent-ink); }
.pbcard__time { color: var(--faint); }
.pbcard__title { font-family: var(--serif); font-size: 30px; line-height: 1.1; font-weight: 400; margin: 0; }
.pbcard__body { font-size: 15px; color: var(--muted); line-height: 1.7; margin: 0; }
.pbcard__cta {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin-top: auto;
}
/* Not yet published — card is present but not a link */
.pbcard--pending { background: var(--surface); opacity: 0.72; }
.pbcard--pending .pbcard__cta { color: var(--faint); }

.group-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}
.group-head h2 { font-size: clamp(28px, 3.2vw, 42px); line-height: 1; margin: 0; }
.group-head__note { font-family: var(--mono); font-size: 12px; text-transform: uppercase; color: var(--faint); }

@media (max-width: 760px) {
  .pbcard { padding: 34px 26px; }
  .pbcard__title { font-size: 25px; }
}

/* .is-current tints nav text; it must never repaint a filled button, where
   accent-on-ink would be unreadable. */
.masthead__nav a.btn.is-current { color: var(--bg); }
