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

  :root {
    --ink: #0e0e0c;
    --ink-mid: #3a3935;
    --ink-light: #6b6a65;
    --ink-faint: #a8a79f;
    --parchment: #f7f5ef;
    --parchment-dark: #ede9df;
    --gold: #a07a2a;
    --gold-light: #c9a052;
    --gold-pale: #f0e8d0;
    --teal: #0f6e56;
    --teal-light: #1d9e75;
    --teal-pale: #e1f5ee;
    --line: rgba(14,14,12,0.1);
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'DM Sans', system-ui, sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--sans);
    background: var(--parchment);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(247,245,239,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 0.5px solid var(--line);
    padding: 0 3rem;
    height: 60px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .nav-brand {
    font-family: var(--serif);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--ink);
    text-decoration: none;
    display: flex; align-items: center; gap: 14px;
  }
  .nav-brand-divider {
    width: 1px; height: 18px;
    background: var(--ink-faint);
  }
  .nav-brand-sub {
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-light);
    font-weight: 300;
  }
  .nav-links {
    display: flex; gap: 2rem; list-style: none;
  }
  .nav-links a {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-mid);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--teal); }
  /* HAMBURGER MENU */
  .nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; z-index: 101; }
  .nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; transition: all 0.3s; }
  .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 60px;
    position: relative;
    overflow: hidden;
  }
  .hero::after {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 60% 40%, rgba(29,158,117,0.06) 0%, transparent 60%);
    pointer-events: none;
  }
  .hero-left {
    padding: 7rem 4rem 5rem 5rem;
    display: flex; flex-direction: column; justify-content: center;
    position: relative;
  }
  .hero-eyebrow {
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--teal);
    font-weight: 500;
    margin-bottom: 1.8rem;
    display: flex; align-items: center; gap: 10px;
  }
  .hero-eyebrow::before {
    content: '';
    display: block; width: 28px; height: 1px;
    background: var(--teal);
  }
  .hero-title {
    font-family: var(--serif);
    font-size: clamp(3.5rem, 5vw, 5.5rem);
    font-weight: 300;
    line-height: 1.08;
    color: var(--ink);
    letter-spacing: -0.01em;
    margin-bottom: 2rem;
  }
  .hero-title em {
    font-style: italic;
    color: var(--teal);
  }
  .hero-desc {
    font-size: 16px;
    line-height: 1.8;
    color: var(--ink-mid);
    max-width: 42ch;
    font-weight: 300;
    margin-bottom: 3rem;
  }
  .hero-cta-group {
    display: flex; gap: 1rem; align-items: center;
  }
  .btn-primary {
    background: var(--teal);
    color: #fff;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 28px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, transform 0.15s;
  }
  .btn-primary:hover { background: #0a5040; transform: translateY(-1px); }
  .btn-ghost {
    color: var(--ink-mid);
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 0;
    border-bottom: 1px solid var(--ink-faint);
    transition: color 0.2s, border-color 0.2s;
  }
  .btn-ghost:hover { color: var(--teal); border-color: var(--teal); }

  .hero-right {
    background: var(--ink);
    position: relative;
    overflow: hidden;
    display: flex; align-items: flex-end;
  }
  .hero-right-inner {
    padding: 5rem 4rem;
    position: relative; z-index: 2;
  }
  .hero-stat-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 0.5px solid rgba(255,255,255,0.12);
  }
  .hero-stat {
    padding: 2rem;
    border: 0.5px solid rgba(255,255,255,0.08);
  }
  .hero-stat-value {
    font-family: var(--serif);
    font-size: 2.8rem;
    font-weight: 300;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.5rem;
  }
  .hero-stat-value em {
    font-style: italic;
    color: var(--gold-light);
  }
  .hero-stat-label {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    font-weight: 300;
  }
  .hero-bg-text {
    position: absolute;
    top: -2rem; right: -2rem;
    font-family: var(--serif);
    font-size: 18rem;
    font-weight: 300;
    color: rgba(255,255,255,0.025);
    line-height: 1;
    pointer-events: none;
    user-select: none;
  }

  /* SECTION BASE */
  section { padding: 7rem 5rem; }
  .section-label {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--teal);
    font-weight: 500;
    margin-bottom: 1.5rem;
    display: flex; align-items: center; gap: 10px;
  }
  .section-label::before {
    content: '';
    display: block; width: 24px; height: 1px;
    background: var(--teal);
  }
  .section-title {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 3.5vw, 3.4rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: 1.5rem;
  }
  .section-title em { font-style: italic; color: var(--teal); }
  .section-body {
    font-size: 16px;
    line-height: 1.85;
    color: var(--ink-mid);
    font-weight: 300;
    max-width: 58ch;
  }
  hr.section-rule {
    border: none;
    border-top: 0.5px solid var(--line);
    margin: 0;
  }

  /* THESIS */
  .thesis { background: var(--ink); color: #fff; }
  .thesis .section-label { color: var(--gold-light); }
  .thesis .section-label::before { background: var(--gold-light); }
  .thesis .section-title { color: #fff; }
  .thesis .section-title em { color: var(--gold-light); }
  .thesis .section-body { color: rgba(255,255,255,0.65); }
  .thesis-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 5fr 7fr;
    gap: 6rem; align-items: start;
  }
  .thesis-pillars {
    display: flex; flex-direction: column; gap: 0;
    margin-top: 3rem;
  }
  .thesis-pillar {
    padding: 1.8rem 0;
    border-top: 0.5px solid rgba(255,255,255,0.1);
    display: grid; grid-template-columns: 3rem 1fr;
    gap: 1.2rem; align-items: start;
  }
  .pillar-num {
    font-family: var(--serif);
    font-size: 0.9rem;
    color: var(--gold-light);
    font-style: italic;
    padding-top: 0.2rem;
  }
  .pillar-title {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0.4rem;
  }
  .pillar-text {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255,255,255,0.5);
    font-weight: 300;
  }

  /* FUND STRUCTURE */
  .structure-inner {
    max-width: 1200px; margin: 0 auto;
  }
  .structure-header {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; margin-bottom: 5rem;
    align-items: start;
  }
  .structure-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 0.5px solid var(--line);
    margin-top: 1rem;
  }
  .structure-card {
    padding: 2.5rem 2rem;
    border: 0.5px solid var(--line);
    position: relative;
  }
  .structure-card-icon {
    width: 32px; height: 32px;
    margin-bottom: 1.5rem;
    color: var(--teal);
  }
  .structure-card-title {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 0.75rem;
    line-height: 1.3;
  }
  .structure-card-text {
    font-size: 14px;
    line-height: 1.75;
    color: var(--ink-light);
    font-weight: 300;
  }
  .structure-card-accent {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--teal);
  }

  /* STRATEGY */
  .strategy { background: var(--parchment-dark); }
  .strategy-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 4fr 8fr;
    gap: 6rem; align-items: start;
  }
  .strategy-matrix {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .matrix-cell {
    background: var(--parchment);
    padding: 2rem 1.75rem;
    border: 0.5px solid var(--line);
    position: relative;
    overflow: hidden;
  }
  .matrix-cell::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--gold);
    opacity: 0;
    transition: opacity 0.2s;
  }
  .matrix-cell:hover::after { opacity: 1; }
  .matrix-cell-letter {
    font-family: var(--serif);
    font-size: 3rem;
    font-weight: 300;
    color: var(--parchment-dark);
    line-height: 1;
    margin-bottom: 0.5rem;
    pointer-events: none;
  }
  .matrix-cell-title {
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 0.5rem;
  }
  .matrix-cell-text {
    font-size: 13px;
    line-height: 1.7;
    color: var(--ink-light);
    font-weight: 300;
  }

  /* TEAM */
  .team-inner { max-width: 1200px; margin: 0 auto; }
  .team-header {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; margin-bottom: 5rem; align-items: end;
  }
  .team-featured {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 2rem; margin-bottom: 2rem;
  }
  .team-row {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  .team-card {
    background: #fff;
    border: 0.5px solid var(--line);
    padding: 2.5rem;
    position: relative;
  }
  .team-card.featured { border-top: 2px solid var(--teal); }
  .team-card-top {
    display: flex; justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem; padding-bottom: 2rem;
    border-bottom: 0.5px solid var(--line);
  }
  .team-card-name {
    font-family: var(--serif);
    font-size: 1.5rem; font-weight: 400;
    color: var(--ink); line-height: 1.2; margin-bottom: 0.3rem;
  }
  .team-card-title {
    font-size: 12px; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--ink-light); font-weight: 400;
  }
  .team-card-badge {
    font-size: 10px; letter-spacing: 0.1em;
    text-transform: uppercase; font-weight: 500;
    padding: 5px 10px; background: var(--teal-pale);
    color: var(--teal); white-space: nowrap; flex-shrink: 0;
  }
  .team-card-body {
    font-size: 14px; line-height: 1.8;
    color: var(--ink-mid); font-weight: 300;
  }
  .team-card-meta {
    display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem;
  }
  .team-card-identity {
    display: flex; align-items: center; gap: 1.1rem;
    flex: 1; min-width: 0;
  }
  .team-avatar {
    width: 72px; height: 72px; border-radius: 50%;
    object-fit: cover;
    border: 0.5px solid var(--line);
    flex-shrink: 0;
    filter: saturate(0.92);
  }
  .team-avatar-monogram {
    width: 72px; height: 72px; border-radius: 50%;
    background: var(--parchment-dark);
    border: 0.5px solid var(--line);
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--serif);
    font-size: 1.5rem; font-weight: 400;
    color: var(--gold); letter-spacing: 0.02em;
    font-style: italic;
  }
  .team-card-identity .team-card-name { margin-bottom: 0.2rem; }
  .team-group-label {
    display: flex; align-items: center; gap: 14px;
    margin: 3rem 0 1.5rem;
    font-size: 11px; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--ink-light);
    font-weight: 500;
  }
  .team-group-label::before, .team-group-label::after {
    content: ''; flex: 1; height: 1px;
    background: var(--line);
  }
  .team-card-wide {
    background: #fff;
    border: 0.5px solid var(--line);
    padding: 2.5rem 3rem;
    display: grid; grid-template-columns: 200px 1fr;
    gap: 2.5rem; align-items: start;
  }
  .team-card-wide-portrait {
    display: flex; flex-direction: column; align-items: center; gap: 1.2rem;
    border-right: 0.5px solid var(--line);
    padding-right: 2.5rem;
  }
  .team-card-wide .team-avatar,
  .team-card-wide .team-avatar-monogram {
    width: 140px; height: 140px;
  }
  .team-card-wide .team-avatar-monogram { font-size: 2.4rem; }
  .team-card-wide-portrait .team-card-name { font-size: 1.5rem; text-align: center; }
  .team-card-wide-portrait .team-card-title { text-align: center; }
  .team-card-wide-content {
    display: flex; flex-direction: column; gap: 1.2rem;
  }
  .team-card-wide-content .team-card-badge { align-self: flex-start; }
  .team-linkedin {
    display: inline-flex; align-items: center; justify-content: center;
    width: 18px; height: 18px;
    text-decoration: none;
    margin-left: 0.55rem;
    vertical-align: middle;
  }
  .team-linkedin svg { width: 18px; height: 18px; display: block; }
  .team-linkedin:hover { opacity: 0.78; transform: translateY(-1px); }

  .meta-tag {
    font-size: 11px; padding: 4px 10px;
    background: var(--parchment-dark);
    color: var(--ink-mid); font-weight: 400;
  }

  /* ALLIANCE */
  .alliance { background: var(--ink); }
  .alliance .section-label { color: var(--gold-light); }
  .alliance .section-label::before { background: var(--gold-light); }
  .alliance .section-title { color: #fff; }
  .alliance .section-title em { color: var(--gold-light); font-style: italic; }
  .alliance .section-body { color: rgba(255,255,255,0.6); }
  .alliance-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 5fr 7fr;
    gap: 6rem; align-items: start;
  }
  .alliance-features {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(255,255,255,0.08);
    margin-top: 3rem;
  }
  .alliance-feature {
    background: var(--ink);
    padding: 2rem 1.75rem;
  }
  .alliance-feature-title {
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0.5rem;
  }
  .alliance-feature-text {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255,255,255,0.45);
    font-weight: 300;
  }
  .alliance-quote {
    margin-top: 2.5rem;
    padding: 2.5rem;
    border: 0.5px solid rgba(255,255,255,0.12);
    position: relative;
  }
  .alliance-quote::before {
    content: '\201C';
    position: absolute; top: -1.2rem; left: 2rem;
    font-family: var(--serif);
    font-size: 5rem;
    color: var(--gold-light);
    line-height: 1;
  }
  .alliance-quote-text {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-style: italic;
    font-weight: 300;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  .alliance-quote-attr {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
  }

  /* ECONOMICS */
  .economics-inner {
    max-width: 1200px; margin: 0 auto;
  }
  .economics-header {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; margin-bottom: 5rem;
    align-items: start;
  }
  .econ-waterfall {
    border: 0.5px solid var(--line);
    overflow: hidden;
  }
  .econ-waterfall-header {
    background: var(--ink);
    padding: 1.25rem 1.75rem;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    display: grid; grid-template-columns: 2.5rem 1fr auto;
    gap: 1rem;
  }
  .econ-row {
    display: grid; grid-template-columns: 2.5rem 1fr auto;
    gap: 1rem;
    padding: 1.25rem 1.75rem;
    align-items: center;
    border-top: 0.5px solid var(--line);
    font-size: 14px;
  }
  .econ-row:hover { background: var(--gold-pale); }
  .econ-priority {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--ink-faint);
  }
  .econ-label { color: var(--ink-mid); font-weight: 300; }
  .econ-label strong { font-weight: 500; color: var(--ink); }
  .econ-rate {
    font-family: var(--serif);
    font-size: 1.1rem;
    color: var(--teal);
    white-space: nowrap;
  }

  /* CONTACT */
  .contact {
    background: var(--parchment-dark);
    text-align: center;
  }
  .contact-inner {
    max-width: 640px; margin: 0 auto;
  }
  .contact-title {
    font-family: var(--serif);
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 1.5rem;
  }
  .contact-title em { font-style: italic; color: var(--teal); }
  .contact-body {
    font-size: 16px;
    line-height: 1.8;
    color: var(--ink-mid);
    font-weight: 300;
    margin-bottom: 3rem;
    max-width: 42ch; margin-left: auto; margin-right: auto;
    margin-bottom: 3rem;
  }
  .contact-details {
    display: flex; gap: 3rem;
    justify-content: center;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 0.5px solid var(--line);
  }
  .contact-item-label {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-bottom: 0.4rem;
  }
  .contact-item-val {
    font-size: 14px;
    color: var(--ink-mid);
    font-weight: 300;
  }

  /* FOOTER */
  footer {
    background: var(--ink);
    padding: 2.5rem 5rem;
    display: flex; justify-content: space-between; align-items: center;
  }
  .footer-brand {
    font-family: var(--serif);
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    font-weight: 300;
  }
  .footer-legal {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    max-width: 60ch;
    text-align: right;
    font-weight: 300;
    line-height: 1.6;
  }
  .footer-linkedin {
    display: inline-flex; align-items: center; justify-content: center;
    width: 22px; height: 22px;
    text-decoration: none;
    margin-left: 0.75rem;
    vertical-align: middle;
  }
  .footer-linkedin svg { width: 22px; height: 22px; display: block; }
  .footer-linkedin:hover { opacity: 0.78; transform: translateY(-1px); }
  .team-company-linkedin {
    text-align: center;
    margin-top: 3rem;
    font-size: 14px;
    color: var(--ink-mid);
  }
  .team-company-linkedin a {
    color: var(--teal);
    text-decoration: none;
  }
  .team-company-linkedin a:hover { text-decoration: underline; }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-left > * {
    animation: fadeUp 0.7s ease both;
  }
  .hero-eyebrow { animation-delay: 0.1s; }
  .hero-title { animation-delay: 0.2s; }
  .hero-desc { animation-delay: 0.3s; }
  .hero-cta-group { animation-delay: 0.4s; }

  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; }
    .hero-right { display: none; }
    nav { padding: 0 1.5rem; }
    .nav-toggle { display: block; }
    .nav-links { display: none; position: fixed; top: 60px; left: 0; right: 0; background: rgba(247,245,239,0.97); backdrop-filter: blur(12px); flex-direction: column; padding: 1.5rem 2rem 2rem; gap: 1.25rem; border-bottom: 0.5px solid var(--line); box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
    .nav-links.open { display: flex; }
    section { padding: 5rem 2rem; }
    .tteam-grid, .section-inner > div[style*="grid-template-columns"], section > div[style*="grid-template-columns"], div[style*="grid-template-columns: 5fr"], div[style*="grid-template-columns: 200px"], div[style*="grid-template-columns:repeat(2"], div[style*="grid-template-columns:repeat(3"] { grid-template-columns: 1fr !important; max-width: 100% !important; }
    .tp-grid3 { grid-template-columns: 1fr; }
    .thesis-inner, .strategy-inner, .alliance-inner { grid-template-columns: 1fr; gap: 3rem; }
    .structure-header, .economics-header, .team-header { grid-template-columns: 1fr; gap: 2rem; }
    .structure-cards, .team-featured, .team-row { grid-template-columns: 1fr; }
    .team-card-wide { grid-template-columns: 1fr; padding: 2rem; gap: 2rem; }
    .team-card-wide-portrait { border-right: none; border-bottom: 0.5px solid var(--line); padding-right: 0; padding-bottom: 2rem; }
    .team-card-identity { gap: 1rem; }
    .team-avatar, .team-avatar-monogram { width: 60px; height: 60px; }
    .team-avatar-monogram { font-size: 1.2rem; }
    .team-card-name { font-size: 1.3rem; }
    .strategy-matrix { grid-template-columns: 1fr; }
    footer { flex-direction: column; gap: 1rem; text-align: center; padding: 2rem; }
    .footer-legal { text-align: center; }
    .hero-left { padding: 5rem 2rem 4rem; }
  }


/* --- TPFM main-site additions --- */
.nav-links a.active { color: var(--teal); }
.page-hero { padding: 9rem 3rem 4rem; max-width: 1100px; margin: 0 auto; }
.page-hero h1 { font-family: var(--serif); font-size: clamp(2.4rem,5vw,3.6rem); font-weight: 300; line-height:1.15; }
.page-hero h1 em { font-style: italic; color: var(--teal); }
.page-hero p { max-width: 640px; margin-top: 1.2rem; color: var(--ink-mid); font-weight:300; }
.tp-grid3 { display:grid; grid-template-columns:repeat(3,1fr); gap:2rem; }
.tp-card { background:#fff; border:0.5px solid var(--line); padding:2.2rem; }
.tp-card h3 { font-family: var(--serif); font-size:1.35rem; font-weight:400; margin-bottom:0.6rem; }
.tp-card p { font-size:14px; color:var(--ink-mid); font-weight:300; line-height:1.7; }
.tp-photo { width:100%; height:260px; object-fit:cover; display:block; }
.exit-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:1.5rem; margin-top:2.5rem; }
.exit-card { background:#fff; border:0.5px solid var(--line); padding:1.8rem; }
.exit-mult { font-family:var(--serif); font-size:2.4rem; color:var(--teal); font-weight:300; }
.exit-sub { font-size:11px; letter-spacing:0.12em; text-transform:uppercase; color:var(--gold); margin-top:0.2rem; }
.exit-name { font-size:14px; color:var(--ink-mid); margin-top:0.8rem; font-weight:300; }
.tteam-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(320px,1fr)); gap:2rem; margin-top:3rem; }
.tteam-card { background:#fff; border:0.5px solid var(--line); padding:2rem; }
.tteam-head { display:flex; gap:1.2rem; align-items:center; margin-bottom:1.2rem; }
.tteam-avatar { width:84px; height:84px; border-radius:50%; object-fit:cover; object-position:top; background:var(--parchment-dark); }
.tteam-name { font-family:var(--serif); font-size:1.35rem; font-weight:400; line-height:1.2; }
.tteam-title { font-size:11px; letter-spacing:0.12em; text-transform:uppercase; color:var(--gold); margin-top:0.3rem; }
.tteam-body { font-size:13.5px; color:var(--ink-mid); font-weight:300; line-height:1.75; }
.fund-card { background:#fff; border:0.5px solid var(--line); padding:2.6rem; display:flex; flex-direction:column; gap:1rem; }
.fund-eyebrow { font-size:11px; letter-spacing:0.14em; text-transform:uppercase; color:var(--gold); }
.fund-title { font-family:var(--serif); font-size:1.7rem; font-weight:300; }
.fund-body { font-size:14px; color:var(--ink-mid); font-weight:300; line-height:1.75; flex:1; }
.fund-link { font-size:12px; letter-spacing:0.1em; text-transform:uppercase; color:var(--teal); text-decoration:none; }
.section-pad { padding: 5rem 3rem; }
.section-inner { max-width:1100px; margin:0 auto; }
@media (max-width: 860px){ .tp-grid3{grid-template-columns:1fr;} .page-hero{padding:7rem 1.5rem 3rem;} .section-pad{padding:3.5rem 1.5rem;} }
