/* Partner Equity — Forest (direction 1b)
   Static marketing site. No radius, no shadows, hairline rules, minimal motion. */

:root {
  --forest: #1B2A22;
  --bone: #EDE7DA;
  --parchment: #EFEBE0;
  --brass: #B39554;
  --brass-dark: #A3874A;
  --sage: #B9C0B2;
  --sage-dim: #7A8471;
  --ink-soft: #57534A;
  --hairline-light: #C9C3B2;
  --hairline-dark: #3A4A3F;
  --muted: #8B8D7E;
  --placeholder-a: #E2DECF;
  --placeholder-b: #D9D4C2;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --mono: 'IBM Plex Mono', 'Courier New', monospace;

  --gutter: 88px;
}

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

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

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 150ms ease, background-color 150ms ease, border-color 150ms ease, opacity 150ms ease;
}

::selection { background: var(--brass); color: var(--forest); }

/* ---------- type helpers ---------- */

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.eyebrow--brass { color: var(--brass); }
.eyebrow--sage  { color: var(--sage-dim); }

.display {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.02;
  text-wrap: balance;
}

.accent {
  font-style: italic;
  color: var(--brass);
}

/* ---------- nav ---------- */

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding: 36px var(--gutter);
}

.wordmark {
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: 0.05em;
  color: var(--bone);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
  font-size: 13px;
  letter-spacing: 0.12em;
}

.nav-links a { color: var(--sage); }
.nav-links a:hover { color: var(--brass); }

.nav-links a.active {
  color: var(--bone);
  border-bottom: 1px solid var(--brass);
  padding-bottom: 4px;
}

.nav-links a.nav-cta {
  color: var(--bone);
  border-bottom: 1px solid var(--brass);
  padding-bottom: 4px;
}
.nav-links a.nav-cta:hover { color: var(--brass); }

/* ---------- hero ---------- */

.dark { background: var(--forest); color: var(--bone); }

.hero {
  padding: 130px var(--gutter) 110px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.hero--home { padding: 150px var(--gutter) 130px; gap: 44px; }

.hero .display {
  font-size: 100px;
  color: var(--bone);
  max-width: 1160px;
}
.hero--home .display {
  font-size: 118px;
  line-height: 1.0;
  letter-spacing: -0.01em;
  max-width: 1180px;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.75;
  color: var(--sage);
  max-width: 640px;
  text-wrap: pretty;
}

.hero-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 64px;
}

/* ---------- buttons & mono links ---------- */

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.btn--brass {
  background: var(--brass);
  color: var(--forest);
  padding: 18px 38px;
}
.btn--brass:hover { background: var(--brass-dark); color: var(--forest); }

.btn--outline {
  border: 1px solid var(--brass);
  color: var(--bone);
  padding: 16px 34px;
  background: transparent;
}
.btn--outline:hover { background: var(--brass); color: var(--forest); }

.mlink {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--brass);
  padding-bottom: 6px;
  white-space: nowrap;
  width: fit-content;
}
.mlink--dark { color: var(--forest); }
.mlink--light { color: var(--bone); }
.mlink:hover { color: var(--brass); }

/* ---------- sections & layout ---------- */

.section { padding: 120px var(--gutter); }
.section--tall { padding: 130px var(--gutter); }
.section--mid { padding: 110px var(--gutter); }

.split {
  display: flex;
  gap: 96px;
  align-items: flex-start;
}
.split-head {
  flex: 0 0 380px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.split-head .display {
  font-size: 54px;
  line-height: 1.05;
  color: var(--forest);
  font-weight: 400;
}
.split-body { flex: 1; display: flex; flex-direction: column; }

/* numbered rows (I. II. III.) */
.num-row {
  display: flex;
  gap: 40px;
  padding: 36px 0;
  border-top: 1px solid var(--hairline-light);
}
.num-row:last-child { border-bottom: 1px solid var(--hairline-light); }
.num-row .numeral {
  font-family: var(--serif);
  font-size: 30px;
  color: var(--brass);
  flex: 0 0 56px;
  line-height: 1.2;
}
.num-row h3 {
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 500;
  color: var(--forest);
  letter-spacing: 0.01em;
  line-height: 1.4;
}
.num-row p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 560px;
  margin-top: 10px;
}

/* comparison rows (fund model vs PE) */
.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 32px 0;
  border-top: 1px solid var(--hairline-light);
  font-size: 16px;
  line-height: 1.65;
}
.compare-row:nth-last-of-type(2) { border-bottom: 1px solid var(--hairline-light); }
.compare-row .them { color: var(--muted); }
.compare-row .us { color: var(--forest); }
.compare-labels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding-top: 18px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.compare-labels .them { color: var(--muted); }
.compare-labels .us { color: var(--brass); }

/* two doors (home) */
.door {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 64px;
  padding: 72px var(--gutter);
  border-bottom: 1px solid var(--hairline-light);
}
.doors { border-top: 1px solid var(--hairline-light); }
.door-copy { display: flex; flex-direction: column; gap: 14px; max-width: 720px; }
.door-copy h2 {
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--forest);
}
.door-copy p { font-size: 15px; line-height: 1.7; color: var(--ink-soft); max-width: 600px; }

/* three-column card grids */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
}
.card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 28px;
}
.card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 30px;
  line-height: 1.15;
}
.card p { font-size: 15px; line-height: 1.7; }

.dark .card { border-top: 1px solid var(--hairline-dark); }
.dark .card h3 { color: var(--bone); }
.dark .card p { color: var(--sage); }

.light-card { border-top: 1px solid var(--hairline-light); gap: 14px; padding-top: 26px; }
.light-card .num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--brass);
}
.light-card h3 { font-family: var(--sans); font-size: 20px; font-weight: 500; color: var(--forest); }
.light-card p { color: var(--ink-soft); }

/* section headline on dark */
.dark-heading {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 56px;
  line-height: 1.05;
  color: var(--bone);
}

/* closing band inside dark sections */
.closing {
  border-top: 1px solid var(--hairline-dark);
  padding-top: 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 64px;
}
.closing .line {
  font-family: var(--serif);
  font-size: 40px;
  line-height: 1.15;
  color: var(--bone);
  max-width: 720px;
}
.closing .quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 30px;
  line-height: 1.4;
  color: var(--sage);
  max-width: 860px;
}

/* ---------- roster (network) ---------- */

.group { display: flex; flex-direction: column; gap: 40px; }
.group-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--brass);
  padding-bottom: 16px;
}
.group-head h2 {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--forest);
}
.group-head .note {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--sage-dim);
}

.roster-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px 32px;
}

.person { display: flex; flex-direction: column; gap: 14px; }
a.portrait-link { display: block; }
a.portrait-link:hover img.portrait { opacity: 0.92; }
img.portrait {
  display: block;
  width: 100%;
  object-fit: cover;
  transition: opacity 150ms ease;
}
img.portrait--logo {
  object-fit: contain;
  background: var(--placeholder-a);
  padding: 15%;
  box-sizing: border-box;
  aspect-ratio: 4 / 5;
}
img.portrait--logo-dark { background: var(--forest); }
.portrait {
  aspect-ratio: 4 / 5;
  background: repeating-linear-gradient(135deg, var(--placeholder-a) 0px, var(--placeholder-a) 10px, var(--placeholder-b) 10px, var(--placeholder-b) 20px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.portrait span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--muted);
}
.person-meta { display: flex; flex-direction: column; gap: 6px; }
.person-meta .name { font-family: var(--serif); font-size: 24px; color: var(--forest); }
.person-meta .role {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--brass);
  text-transform: uppercase;
}
.person-meta .company { font-size: 13px; line-height: 1.5; color: var(--ink-soft); }
.person-meta .company a {
  border-bottom: 1px solid var(--hairline-light);
  padding-bottom: 1px;
}
.person-meta .company a:hover { color: var(--brass); border-color: var(--brass); }
.person-meta .li {
  font-size: 13px;
  color: var(--sage-dim);
  border-bottom: 1px solid var(--hairline-light);
  width: fit-content;
  padding-bottom: 2px;
}
.person-meta .li:hover { color: var(--brass); border-color: var(--brass); }

.more-card {
  border: 1px dashed var(--brass);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px;
  gap: 12px;
}
.more-card .big { font-family: var(--serif); font-size: 30px; color: var(--brass); }
.more-card p { font-size: 14px; line-height: 1.65; color: var(--ink-soft); }

.roster-closing {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  border-top: 1px solid var(--hairline-light);
  padding-top: 36px;
}
.roster-closing .line {
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  color: var(--ink-soft);
}

/* network strip on home — portrait teaser grid */
.mini-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 36px 20px;
  border-top: 1px solid var(--hairline-light);
  padding-top: 48px;
}
a.mini {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
a.mini img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: opacity 150ms ease;
}
a.mini:hover img { opacity: 0.88; }
.mini-name {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.25;
  color: var(--forest);
  transition: color 150ms ease;
}
a.mini:hover .mini-name { color: var(--brass); }
a.mini-more {
  border: 1px dashed var(--brass);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 20px;
}
a.mini-more .big { font-family: var(--serif); font-size: 22px; line-height: 1.2; color: var(--brass); }
a.mini-more .small { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; color: var(--sage-dim); text-transform: uppercase; }
a.mini-more:hover { background: rgba(179, 149, 84, 0.08); }

/* ---------- footer ---------- */

.footer {
  padding: 110px var(--gutter) 60px;
  display: flex;
  flex-direction: column;
  gap: 72px;
}
.footer-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 64px;
}
.footer-cta .display {
  font-size: 64px;
  line-height: 1.05;
  color: var(--bone);
  max-width: 760px;
  font-weight: 400;
}
.footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--hairline-dark);
  padding-top: 28px;
  font-size: 13px;
  color: var(--sage-dim);
  letter-spacing: 0.06em;
}
.footer-meta .fm-wordmark {
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: 0.05em;
  color: var(--bone);
}
.footer-meta a { color: var(--sage); }
.footer-meta a:hover { color: var(--brass); }

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

@media (max-width: 1180px) {
  :root { --gutter: 48px; }
  .hero--home .display { font-size: 88px; }
  .hero .display { font-size: 76px; }
  .split { gap: 56px; }
  .split-head { flex-basis: 300px; }
  .roster-grid { grid-template-columns: repeat(3, 1fr); }
  .grid-3 { gap: 40px; }
}

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

  .nav { flex-direction: column; align-items: flex-start; gap: 20px; padding-top: 28px; }
  .nav-links { flex-wrap: wrap; gap: 18px 24px; }

  .hero, .hero--home { padding-top: 72px; padding-bottom: 72px; }
  .hero .display, .hero--home .display { font-size: 52px; line-height: 1.05; }
  .hero-row { flex-direction: column; align-items: flex-start; gap: 36px; }

  .section, .section--tall, .section--mid { padding-top: 72px; padding-bottom: 72px; }

  .split { flex-direction: column; gap: 40px; }
  .split-head { flex-basis: auto; }
  .split-head .display { font-size: 40px; }

  .compare-row { grid-template-columns: 1fr; gap: 14px; padding: 24px 0; }
  .compare-labels { grid-template-columns: 1fr; gap: 6px; }

  .door { flex-direction: column; align-items: flex-start; gap: 28px; padding: 56px var(--gutter); }
  .door-copy h2 { font-size: 34px; }

  .grid-3 { grid-template-columns: 1fr; }
  .dark-heading { font-size: 38px; }

  .closing, .footer-cta, .roster-closing {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
  .closing .line, .footer-cta .display { font-size: 36px; }
  .closing .quote { font-size: 24px; }

  .roster-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; }
  .group-head { flex-direction: column; gap: 8px; align-items: flex-start; }

  .mini-grid { grid-template-columns: repeat(3, 1fr); gap: 24px 14px; padding-top: 32px; }
  .mini-name { font-size: 14px; }
  a.mini-more .big { font-size: 17px; }

  .footer { padding-top: 72px; }
  .footer-meta { flex-direction: column; gap: 10px; }
}

@media (max-width: 480px) {
  .roster-grid { grid-template-columns: 1fr; }
  .mini-grid { grid-template-columns: repeat(2, 1fr); }
  .hero .display, .hero--home .display { font-size: 44px; }
}
