:root {
  --paper: #f8f5ed;
  --ink: #111111;
  --muted: #5f5a52;
  --line: rgba(17, 17, 17, 0.16);
  --soft: #eee9dd;
  --accent: #7d3027;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Garamond, "Adobe Garamond Pro", "Cormorant Garamond", Georgia, serif;
  font-size: 18px;
  line-height: 1.34;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(248, 245, 237, 0.96);
}

.nav,
.wrap,
.footer-inner {
  width: min(1040px, calc(100% - 36px));
  margin: 0 auto;
}

.nav {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand img {
  width: clamp(178px, 24vw, 260px);
  mix-blend-mode: multiply;
}

.nav-links {
  display: flex;
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a[aria-current="page"],
.nav-links a:hover {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.hero,
.page-hero {
  padding: clamp(66px, 10vw, 124px) 0 clamp(50px, 7vw, 84px);
}

.hero-inner,
.page-hero .wrap {
  width: min(1040px, calc(100% - 36px));
  margin: 0 auto;
}

.eyebrow {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  max-width: 860px;
  margin-bottom: 24px;
  font-size: clamp(2.6rem, 6.2vw, 5.2rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}

h2 {
  max-width: 860px;
  margin-bottom: 22px;
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 400;
  line-height: 1.08;
}

.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  line-height: 1.24;
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
  font-size: 1.05rem;
}

.button::after {
  content: " ->";
  white-space: pre;
}

.profile-link {
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
}

.profile-link::after {
  content: " ->";
  white-space: pre;
}

.tally-embed {
  min-height: 420px;
}

.tally-embed iframe {
  display: block;
  width: 100%;
  border: 0;
}

.section {
  border-top: 1px solid var(--line);
  padding: clamp(56px, 9vw, 104px) 0;
}

.section.dark,
.section.tinted,
.quote-band {
  background: var(--paper);
  color: var(--ink);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: start;
}

.section-copy {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.3;
}

.quote-band {
  border-top: 1px solid var(--line);
  padding: clamp(48px, 8vw, 94px) 0;
}

.quote-band blockquote {
  width: min(1040px, calc(100% - 36px));
  margin: 0 auto;
  font-size: clamp(2rem, 4.8vw, 4.2rem);
  line-height: 1;
}

.cards,
.pipeline,
.metrics,
.blog-grid,
.team-grid,
.advisors-grid,
.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.blog-grid,
.team-grid,
.advisors-grid,
.roles-grid {
  grid-template-columns: repeat(2, 1fr);
}

.advisors-grid {
  grid-template-columns: repeat(3, 1fr);
}

.card,
.pipeline-step,
.metric,
.post,
.person,
.role {
  min-height: 190px;
  padding: 24px 28px 28px 0;
  border-bottom: 1px solid var(--line);
}

.headshot {
  width: 156px;
  aspect-ratio: 1;
  margin-bottom: 26px;
  object-fit: cover;
}

.headshot-manesha {
  object-position: center 18%;
}

.headshot.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: var(--soft);
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card,
.pipeline-step,
.metric {
  padding-right: 34px;
}

.num,
.meta,
.pipeline-step span {
  display: block;
  margin-bottom: 28px;
  color: var(--accent);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card p,
.pipeline-step p,
.post p,
.person p,
.role p,
.metric span,
.split-list span,
.investor-row span {
  color: var(--muted);
}

.metrics {
  grid-template-columns: 1fr;
}

.metrics .metric {
  min-height: 0;
  padding: 20px 0;
}

.metrics .metric:first-child {
  padding-top: 0;
}

.metric strong {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  font-weight: 400;
  line-height: 0.9;
}

.split-list,
.investor-table {
  border-top: 1px solid var(--line);
}

.split-list div,
.investor-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 28px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.split-list b,
.investor-row b {
  color: var(--accent);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-logo {
  width: min(420px, 70vw);
  margin-bottom: clamp(44px, 10vw, 104px);
}

.avatar {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--accent);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 38px 0;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner img {
  width: 230px;
  mix-blend-mode: multiply;
}

@media (max-width: 800px) {
  body {
    font-size: 17px;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }

  .nav-links {
    width: 100%;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .section-grid,
  .cards,
  .pipeline,
  .metrics,
  .blog-grid,
  .team-grid,
  .advisors-grid,
  .roles-grid,
  .split-list div,
  .investor-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
