/* SHAPE: Split Statement.
   Asymmetric hero with the portrait bleeding off the right edge, then a
   full-height field-green proof spread, then a ruled ledger, then a
   deep-green close. No other v2 page may use this shape.

   Fixes from the v1 home page: the 2x2 feature-card grid is gone, and
   the green band grew from ~8% of page height to the dominant ground. */

/* ---------- Hero ---------- */
.v2-home .hero { padding: clamp(var(--sp-7), 6vw, var(--sp-9)) 0 0; }
.hero-inner {
  max-width: var(--max-wide); margin: 0 auto; padding: 0 var(--pad);
  display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: clamp(var(--sp-6), 5vw, var(--sp-8)); align-items: center;
}
/* The headline is the largest text in the first viewport, and stays that
   way: the portrait is capped so it can never out-weigh it. */
.hero-text h1 { font-size: var(--fs-hero); max-width: 16ch; }
.hero-sub {
  font-size: var(--fs-lead); line-height: 1.45; color: var(--ink-soft);
  margin-top: var(--sp-5); max-width: 42ch;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-top: var(--sp-6); }

/* The portrait sits in a plain frame with one elevation, not a border
   under a shadow. */
.hero-portrait { margin: 0; max-width: 360px; justify-self: end; width: 100%; }
.hero-portrait img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: var(--r); box-shadow: var(--shadow-lg);
}

/* ---------- Identity line ---------- */
.idline {
  max-width: var(--max-wide); margin: clamp(var(--sp-7), 6vw, var(--sp-8)) auto 0;
  padding: 0 var(--pad);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--line-strong);
}
.idline > div { padding: var(--sp-5) var(--sp-5) 0 0; }
.idline dt {
  font-size: var(--fs-small); font-weight: 600; color: var(--clay-deep);
  margin-bottom: 6px;
}
.idline dd { font-size: var(--fs-small); color: var(--ink-soft); line-height: 1.45; }

/* ---------- Proof spread ---------- */
.proof { margin-top: clamp(var(--sp-8), 7vw, var(--sp-9)); padding: clamp(var(--sp-8), 8vw, var(--sp-10)) 0; }
.proof-head h2 { font-size: var(--fs-h1); max-width: 20ch; }
.proof-head p { margin-top: var(--sp-5); max-width: 56ch; font-size: var(--fs-lead); line-height: 1.5; }

.proof-figures {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6) var(--sp-5);
  margin: clamp(var(--sp-8), 7vw, var(--sp-9)) 0 var(--sp-8);
  border-top: 1px solid var(--on-field-line);
}
.proof-figures .pf { padding-top: var(--sp-5); }
.proof-figures dt {
  font-size: clamp(2rem, 1.3rem + 2.6vw, 3.1rem);
  line-height: 1; margin-bottom: var(--sp-3);
}
.pf-plus { color: var(--on-field-soft); }
.proof-figures dd { font-size: var(--fs-small); color: var(--on-field-soft); line-height: 1.5; }

/* ---------- Ledger ---------- */
.ledger { list-style: none; counter-reset: none; }
.ledger > li {
  display: grid; grid-template-columns: 4.5rem minmax(0, 1fr);
  gap: var(--sp-5);
  padding: var(--sp-6) 0;
  border-top: 1px solid var(--line);
}
.ledger > li:first-child { border-top: 1px solid var(--line-strong); }
.lg-index {
  font-family: var(--font-display); font-size: var(--fs-body); font-weight: 600;
  color: var(--clay-deep); font-variant-numeric: tabular-nums; padding-top: 4px;
}
.lg-body h3 { margin-bottom: var(--sp-3); }
.lg-body p { color: var(--ink-soft); max-width: 62ch; margin-bottom: var(--sp-4); }

/* ---------- Post rows ---------- */
.post-rows { list-style: none; margin-bottom: var(--sp-6); }
.post-rows li { border-top: 1px solid var(--line); }
.post-rows li:first-child { border-top: 1px solid var(--line-strong); }
.post-rows a {
  display: grid; grid-template-columns: 9rem minmax(0, 1fr);
  gap: var(--sp-2) var(--sp-5); padding: var(--sp-5) 0;
  text-decoration: none; color: inherit;
}
.post-rows a:hover .pr-title { color: var(--clay-deep); }
.pr-date { grid-row: 1 / 3; padding-top: 4px; }
.pr-title { font-family: var(--font-display); font-size: var(--fs-h3); font-weight: 600; color: var(--ink); letter-spacing: var(--tr-display); }
.pr-desc { font-size: var(--fs-small); color: var(--muted); }

/* ---------- Close ---------- */
.close { padding: clamp(var(--sp-8), 7vw, var(--sp-9)) 0; }
.close-inner {
  display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: clamp(var(--sp-6), 5vw, var(--sp-8)); align-items: center;
}
.close-inner h2 { font-size: var(--fs-h1); }
.close-inner > div > p { margin-top: var(--sp-4); max-width: 46ch; }
.close-actions { justify-self: start; }
.close-alt { margin-top: var(--sp-4); font-size: var(--fs-small); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-portrait { order: -1; max-width: 320px; }
  .hero-text h1 { max-width: 18ch; }
  .idline { grid-template-columns: repeat(2, 1fr); }
  .proof-figures { grid-template-columns: repeat(2, 1fr); }
  .close-inner { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .idline { grid-template-columns: 1fr; }
  .idline > div { padding-right: 0; }
  .proof-figures { grid-template-columns: 1fr; }
  .ledger > li { grid-template-columns: 2.5rem minmax(0, 1fr); gap: var(--sp-4); }
  .post-rows a { grid-template-columns: 1fr; }
  .pr-date { grid-row: auto; padding-top: 0; }
}
