/* Fulcrum Point Capital — shared styles */

:root {
  --ink: #0a1929;
  --ink-soft: #1a2942;
  --paper: #fafaf7;
  --paper-warm: #f3f1ea;
  --rule: #d8d4c7;
  --accent: #a8804a;
  --muted: #6b7280;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

.display {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.08;
}

/* NAVIGATION */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1.75rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--ink);
}

.logo-mark {
  width: 38px;
  height: 24px;
  display: inline-block;
  flex-shrink: 0;
}
.logo-mark svg { width: 100%; height: 100%; display: block; }
.logo-mark .bar { stroke: var(--ink); }
.logo-mark .fulcrum { fill: var(--ink); }
.logo-mark .force { fill: var(--ink); }
.logo-mark .weight { fill: var(--accent); }

footer .logo-mark .bar { stroke: var(--muted); }
footer .logo-mark .fulcrum { fill: var(--muted); }
footer .logo-mark .force { fill: var(--muted); }
footer .logo-mark .weight { fill: var(--accent); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.2s;
  position: relative;
  padding: 0.25rem 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--ink); }

/* PAGE WRAPPERS */
.page-hero {
  padding: 5rem 3rem 1rem;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}
.page-hero .section-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.page-hero .section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
}
.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  max-width: 50rem;
}

section {
  padding: 1.5rem 3rem 6rem;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

/* HOME HERO */
.home-hero {
  min-height: calc(100vh - 80px);
  padding: 6rem 3rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  position: relative;
  overflow: hidden;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}
.home-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(168, 128, 74, 0.06) 0%, transparent 60%),
    linear-gradient(180deg, var(--paper) 0%, var(--paper-warm) 100%);
  z-index: -1;
}
.hero-meta {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-meta::before { content: ''; width: 32px; height: 1px; background: var(--accent); }
.home-hero h1 {
  font-size: clamp(2.75rem, 5.5vw, 5rem);
  margin-bottom: 2rem;
}
.home-hero h1 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
  font-feature-settings: "swsh" 0, "salt" 0, "ss01" 0, "ss02" 0, "ss03" 0, "ss04" 0;
}
.hero-lede {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 32rem;
  line-height: 1.7;
}
.hero-side {
  padding-top: 3.7rem;
  border-left: 1px solid var(--rule);
  padding-left: 3rem;
}
.hero-stat { margin-bottom: 2.5rem; }
.hero-stat:last-child { margin-bottom: 0; }
.hero-stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}
.hero-stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--ink);
  line-height: 1.4;
  font-weight: 500;
}

/* STRATEGY PAGE */
.strategy-intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--ink);
  font-weight: 500;
  max-width: 40rem;
  margin-bottom: 4rem;
}
.strategy-pillars { display: grid; gap: 0; }
.pillar {
  padding: 2.5rem 0;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 3rem;
  align-items: start;
}
.pillar:last-child { border-bottom: 1px solid var(--rule); }
.pillar-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}
.pillar h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.pillar p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 48rem;
}

/* STRATEGY TABS */
.strategy-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 3.5rem;
}
.strategy-tab {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 1rem 1.75rem;
  cursor: pointer;
  transition: color 0.25s, border-color 0.25s;
  letter-spacing: -0.005em;
  white-space: nowrap;
}
.strategy-tab:hover {
  color: var(--ink);
}
.strategy-tab.active {
  color: var(--ink);
  border-bottom-color: var(--accent);
}
.strategy-tab-panel {
  display: none;
}
.strategy-tab-panel.active {
  display: block;
}
.fund-header {
  margin-bottom: 3rem;
}
.fund-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.fund-header .fund-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.fund-body {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 5rem;
  align-items: start;
}
.fund-prose p {
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 1.35rem;
  max-width: 40rem;
}
.fund-prose p.fund-lede {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 2rem;
}
.fund-aside {
  padding-top: 0.5rem;
}
.fund-principles {
  border-left: 2px solid var(--accent);
  padding-left: 2rem;
  position: sticky;
  top: 8rem;
}
.fund-principles h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--ink);
}
.fund-principles ul {
  list-style: none;
  padding: 0;
}
.fund-principles li {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--rule);
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.6;
}
.fund-principles li:last-child {
  border-bottom: none;
}

/* APPROACH PAGE */
.approach-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
  margin-top: 0;
}
.approach-prose p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 36rem;
}
.approach-prose p:first-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  line-height: 1.5;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 2rem;
}
.approach-quote {
  border-left: 2px solid var(--accent);
  padding-left: 2rem;
  position: sticky;
  top: 8rem;
}
.approach-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--ink);
  font-style: italic;
  font-weight: 400;
  margin-bottom: 1.5rem;
}
.approach-quote cite {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  font-style: normal;
}

/* LEADERSHIP PAGE */
.leadership-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 5rem;
  align-items: start;
  margin-top: 0;
}
main.leadership-page .page-hero {
  padding-top: 1rem;
  padding-bottom: 0;
}
main.leadership-page .page-hero .section-label {
  margin-bottom: 0.25rem;
}
main.leadership-page section {
  padding-top: 0;
}
.portrait-wrap { position: relative; }
.portrait {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(100%) contrast(1.08) brightness(0.98);
  display: block;
  background: var(--paper-warm);
}
.portrait-caption {
  margin-top: 1.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.bio h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.75rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.bio .title {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2.5rem;
  display: block;
}
.bio p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
  max-width: 38rem;
}
.bio p.bio-lede {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 1.75rem;
}
.bio .credentials {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
}

/* CONTACT PAGE */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}
.office {
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
}
.office-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.office-detail {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.8;
}
.office-detail a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.office-detail a:hover { border-bottom-color: var(--accent); }

/* FOOTER */
footer {
  border-top: 1px solid var(--rule);
  padding: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: auto;
}
footer .logo { color: var(--muted); font-size: 0.9rem; }

/* RESPONSIVE */
@media (max-width: 860px) {
  nav { padding: 1.25rem 1.5rem; }
  .nav-links { gap: 1.25rem; }
  .nav-links a { font-size: 0.7rem; letter-spacing: 0.05em; }
  .home-hero { grid-template-columns: 1fr; padding: 4rem 1.5rem 3rem; gap: 3rem; min-height: auto; }
  .hero-side { border-left: none; border-top: 1px solid var(--rule); padding-left: 0; padding-top: 2.5rem; }
  .page-hero { padding: 3rem 1.5rem 0.75rem; }
  section { padding: 1rem 1.5rem 4rem; }
  .pillar { grid-template-columns: 1fr; gap: 0.5rem; }
  .approach-content { grid-template-columns: 1fr; gap: 3rem; }
  .approach-quote { position: static; }
  .leadership-grid { grid-template-columns: 1fr; gap: 3rem; }
  main.leadership-page .page-hero { padding: 0.75rem 1.5rem 0; }
  main.leadership-page section { padding-top: 0; }
  .portrait { max-width: 100%; }
  .strategy-tabs { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .strategy-tab { font-size: 1rem; padding: 0.85rem 1.15rem; }
  .fund-body { grid-template-columns: 1fr; gap: 2.5rem; }
  .fund-principles { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  footer { flex-direction: column; padding: 2rem 1.5rem; text-align: center; }
}

/* REVEAL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
