
    nav { transition: border-bottom .2s; border-bottom: none; }
    nav.scrolled { border-bottom: 1px solid var(--mid); }

    /* States */
    .tm-loading {
      padding: 200px var(--pad) 80px;
      text-align: center;
      font-family: 'Poppins', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--stone);
    }
    .tm-not-found {
      display: none;
      padding: 200px var(--pad) 80px;
      text-align: center;
    }
    .tm-not-found h2 {
      font-family: 'Poppins', sans-serif;
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 12px;
    }
    .tm-not-found p { color: var(--stone); font-size: .9rem; margin-bottom: 28px; }

    /* Breadcrumb */
    .tm-breadcrumb-bar {
      position: absolute;
      top: 72px;
      left: 0; right: 0;
      z-index: 10;
      padding: 14px 0;
    }
    .tm-breadcrumb-bar .bc-inner {
      display: flex;
      align-items: center;
      gap: 8px;
      font-family: 'Poppins', sans-serif;
      font-size: 11px;
      font-weight: 500;
      color: rgba(250,250,248,.35);
    }
    .tm-breadcrumb-bar a { color: rgba(250,250,248,.35); transition: color .2s; }
    .tm-breadcrumb-bar a:hover { color: rgba(250,250,248,.8); }
    .tm-breadcrumb-bar .bc-sep { color: rgba(250,250,248,.2); }

    /* Hero */
    .tm-hero {
      background: var(--ink);
      position: relative;
      min-height: 72vh;
      display: flex;
      align-items: flex-end;
      overflow: hidden;
    }
    .tm-hero-accent {
      position: absolute;
      top: 0; left: 0;
      width: 3px;
      height: 100%;
      background: var(--accent);
    }
    .tm-hero-inner {
      position: relative;
      z-index: 2;
      padding: 140px 0 72px;
      width: 100%;
    }
    .tm-hero-grid {
      display: grid;
      grid-template-columns: 440px 1fr;
      gap: 80px;
      align-items: end;
    }
    .tm-photo {
      width: 100%;
      aspect-ratio: 3/4;
      object-fit: cover;
      object-position: top center;
      display: block;
    }
    .tm-photo-placeholder {
      width: 100%;
      aspect-ratio: 3/4;
      background: rgba(255,255,255,.04);
    }
    .tm-meta { padding-bottom: 8px; }
    .tm-category-tag {
      font-family: 'Poppins', sans-serif;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--accent);
      display: block;
      margin-bottom: 20px;
    }
    .tm-name {
      font-family: 'Poppins', sans-serif;
      font-weight: 800;
      font-size: clamp(2rem, 4vw, 3.6rem);
      color: var(--white);
      line-height: 1.06;
      letter-spacing: -.015em;
      margin-bottom: 12px;
    }
    .tm-role {
      font-family: 'Poppins', sans-serif;
      font-size: 1rem;
      font-weight: 500;
      color: rgba(250,250,248,.5);
      margin-bottom: 36px;
    }
    .tm-social-links {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 36px;
    }
    .tm-social-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'Poppins', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: rgba(250,250,248,.5);
      border: 1px solid rgba(255,255,255,.12);
      padding: 10px 16px;
      transition: color .2s, border-color .2s;
    }
    .tm-social-link:hover { color: var(--white); border-color: rgba(255,255,255,.35); }
    .tm-social-link svg { width: 14px; height: 14px; fill: currentColor; flex-shrink: 0; }
    .tm-entity {
      display: flex;
      align-items: center;
      font-family: 'Poppins', sans-serif;
      font-size: 11px;
      font-weight: 500;
      color: rgba(250,250,248,.35);
    }

    /* Bio */
    .tm-bio-section {
      padding: 80px 0;
      background: var(--white);
      border-bottom: 1px solid var(--mid);
    }
    .tm-bio-section .label {
      display: block;
      margin-bottom: 28px;
    }
    .tm-bio-inner { max-width: 720px; }
    .tm-bio p {
      font-size: .975rem;
      color: var(--stone);
      line-height: 1.78;
      margin-bottom: 20px;
    }
    .tm-bio p:last-child { margin-bottom: 0; }

    /* CTA */
    .tm-cta {
      background: var(--ink);
      padding: 72px 0;
    }
    .tm-cta-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      flex-wrap: wrap;
    }
    .tm-cta h2 {
      font-family: 'DM Sans', sans-serif;
      font-style: normal;
      font-size: clamp(1.5rem, 2.8vw, 2.2rem);
      color: var(--white);
      line-height: 1.2;
      max-width: 500px;
    }

    /* Responsive */
    @media (max-width: 960px) {
      .tm-hero-grid { grid-template-columns: 320px 1fr; gap: 48px; }
    }
    @media (max-width: 768px) {
      .tm-hero-grid { grid-template-columns: 1fr; gap: 32px; }
      .tm-photo, .tm-photo-placeholder { aspect-ratio: 4/3; max-height: 360px; }
      .tm-cta-inner { flex-direction: column; align-items: flex-start; }
    }
  