/* ============================================================
   FIRM-DETAIL.CSS
   The full firm detail page shell: back link, detail card,
   name/personality/meta, the stat row, the about paragraph, the
   "For Founders" callout, the leadership grid, and the shared
   .detail-subhead label used throughout the detail page.
   ============================================================ */
  /* ---------- FIRM DETAIL PAGE ---------- */
  .detail-back {
    font-family: var(--mono);
    font-size: 13px;
    color: var(--gold);
    text-decoration: none;
    display: inline-block;
    margin: 24px 0 20px;
    cursor: pointer;
  }
  .detail-back:hover { color: var(--gold-bright); }
  .detail-card {
    background: var(--surface);
    border: 1px solid var(--hairline);
    border-radius: 3px;
    padding: 36px 32px;
    margin-bottom: 60px;
  }
  .detail-rank {
    font-family: var(--mono);
    font-size: 13px;
    color: var(--gold);
    letter-spacing: 0.05em;
  }
 .detail-name {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 40px;
    margin: 8px 0 4px;
  }
  .detail-personality {
    font-size: 17px;
    font-style: italic;
    color: var(--gold-bright);
    margin: 0 0 14px;
    max-width: 640px;
  }
  .detail-meta {
    font-family: var(--mono);
    font-size: 13px;
    color: var(--ink-dim);
    margin-bottom: 24px;
  }
  .detail-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    padding: 20px 0;
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
    margin-bottom: 24px;
  }
  .detail-stat .num {
    font-family: var(--mono);
    font-size: 22px;
    color: var(--ink);
  }
  .detail-stat .lbl {
    font-family: var(--mono);
    font-size: 10px;
    color: var(--ink-dim);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 2px;
  }
.detail-about {
    font-size: 15.5px;
    line-height: 1.65;
    color: var(--ink-dim);
    max-width: 700px;
    margin-bottom: 8px;
  }

  /* ---------- FOUNDER CALLOUT ---------- */
  .founder-callout {
    margin: 24px 0 32px;
    padding: 22px 24px;
    border-radius: 3px;
    background: var(--surface);
    border: 1px solid var(--hairline);
  }
  .founder-callout-label {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
  }
  .founder-callout-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
  }
  .founder-callout-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .founder-callout-scale {
    font-family: var(--mono);
    font-size: 12.5px;
    color: var(--ink-dim);
    white-space: nowrap;
  }
  .founder-callout-cta {
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 600;
    color: var(--bg);
    background: var(--gold);
    text-decoration: none;
    border-radius: 4px;
    padding: 9px 18px;
    white-space: nowrap;
    transition: background 0.15s ease;
  }
  .founder-callout-cta:hover { background: var(--gold-bright); }

  .detail-subhead {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 32px 0 14px;
  }
  .leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
  }
  .leader-card {
    background: var(--surface-raised);
    border: 1px solid var(--hairline);
    border-radius: 3px;
    padding: 12px 14px;
  }
  .leader-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
  }
  .leader-role {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--ink-dim);
    margin-top: 2px;
  }
  .leader-card.has-profile {
    cursor: pointer;
    transition: border-color 0.15s ease;
  }
  .leader-card.has-profile:hover {
    border-color: var(--gold);
  }
  .leader-view-profile {
    font-family: var(--mono);
    font-size: 10.5px;
    color: var(--gold);
    margin-top: 8px;
  }
