/* ============================================================
   A2 Investment Partners — styles.css
   Palette: Navy · Ice Blue · Light Gray · Black · White
   Fonts: Cormorant Garamond (display) + Jost (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Jost:wght@300;400;500;600&display=swap');

/* ---- TOKENS ---- */
:root {
  --navy-950: #050D18;
  --navy-900: #08111F;
  --navy-800: #0B1929;
  --navy-700: #0F2340;
  --navy-600: #152E52;
  --navy-500: #1C3A64;
  --navy-400: #243A6E;

  --accent:   #D6E8F5;   /* ice blue — accent on dark backgrounds */
  --gray-lt:  #C8C8C8;   /* light gray swatch */
  --black:    #000000;
  --white:    #FFFFFF;
  --off-white:#EEF4FA;   /* very light blue-tinted white */

  --muted:    #8CA0B8;
  --light:    #C8DCEE;
  --text-mid: #4A5568;
  --border-d: rgba(255,255,255,0.08);
  --border-l: rgba(0,0,0,0.08);

  --font-d: 'Cormorant Garamond', Georgia, serif;
  --font-b: 'Jost', sans-serif;
  --nav-h:  108px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  font-weight: 400;
  color: var(--navy-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }


/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid var(--border-l);
  z-index: 200;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 52px;
}

.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-right { justify-content: flex-end; }

.nav-link {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-700);
  transition: color 0.2s;
}
.nav-link:hover { color: var(--navy-500); }

.nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
}
.nav-logo img { height: 90px; width: auto; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-800);
  border: 1px solid currentColor;
  padding: 9px 22px;
  transition: all 0.25s;
}
.nav-cta:hover { background: var(--navy-800); color: var(--white); }

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--navy-800);
  transition: all 0.3s;
}


/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: var(--navy-800) url('assets/hero-neighborhood.jpg') center/cover no-repeat;
  padding-top: var(--nav-h);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Dark overlay so text stays readable over photo */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(8, 18, 36, 0.78);
  pointer-events: none;
}

/* Accent bar top-left */
.hero::after {
  content: '';
  position: absolute;
  top: var(--nav-h); left: 0;
  width: 2px;
  height: 200px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
  padding: 96px 52px;
  width: 100%;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 36px; height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}
.eyebrow-text {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-headline {
  font-family: var(--font-d);
  font-size: clamp(36px, 4.2vw, 60px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 36px;
}
.hero-line {
  display: block;
  white-space: nowrap;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--light);
  line-height: 1.8;
  margin-bottom: 56px;
  letter-spacing: 0.02em;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--navy-600);
  color: var(--white);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 34px;
  transition: background 0.25s;
}
.btn-primary:hover { background: var(--navy-400); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--light);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.25s;
}
.btn-ghost:hover { color: var(--white); }
.btn-ghost .arrow { transition: transform 0.25s; }
.btn-ghost:hover .arrow { transform: translateX(4px); }


/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--black);
  padding: 60px 52px;
}
.stats-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  padding: 0 40px 0 32px;
  border-left: 1px solid rgba(255,255,255,0.12);
}
.stat-item:first-child { border-left: none; padding-left: 0; }

.stat-num {
  font-family: var(--font-d);
  font-size: 52px;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.stat-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.5;
  max-width: 140px;
}


/* ============================================================
   SHARED SECTION PRIMITIVES
   ============================================================ */
.section { padding: 120px 52px; }
.section-inner { max-width: 1140px; margin: 0 auto; }

.section-tag {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}
.section-tag-text {
  font-size: 23px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

/* Override accent color for light/white sections */
.section--white .section-tag::before,
.section--light .section-tag::before { background: var(--navy-600); }
.section--white .section-tag-text,
.section--light .section-tag-text { color: var(--navy-600); }

.section-h {
  font-family: var(--font-d);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 400;
  line-height: 1.08;
  margin-bottom: 28px;
}

.section-p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  max-width: 640px;
}

/* Dark variant */
.section--dark { background: var(--navy-800); }
.section--dark .section-h { color: var(--white); }
.section--dark .section-p { color: var(--muted); }

/* Light variant */
.section--light { background: var(--off-white); }
.section--light .section-h { color: var(--navy-800); }
.section--light .section-p { color: var(--text-mid); }

/* White variant */
.section--white { background: var(--white); }
.section--white .section-h { color: var(--navy-800); }
.section--white .section-p { color: var(--text-mid); }

/* Black variant */
.section--black { background: var(--black); }
.section--black .section-h { color: var(--white); }
.section--black .section-p { color: var(--muted); }


/* ============================================================
   THESIS SECTION
   ============================================================ */
.thesis-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 80px;
  align-items: start;
  margin-top: 56px;
}
.thesis-body p {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 22px;
  max-width: 600px;
}
.thesis-pull {
  font-family: var(--font-d);
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 500;
  font-style: italic;
  color: var(--navy-700);
  line-height: 1.38;
  padding: 32px 36px;
  border-left: 4px solid var(--navy-500);
  margin-bottom: 36px;
}
.thesis-body p:first-of-type {
  font-size: 17px;
  font-weight: 400;
  color: var(--navy-700);
}
.thesis-principles { }
.thesis-principle {
  padding: 24px 0;
  border-top: 1px solid var(--border-l);
}
.thesis-principle:last-child { border-bottom: 1px solid var(--border-l); }
.thesis-principle-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-600);
  margin-bottom: 8px;
}
.thesis-principle-text {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ============================================================
   PLATFORM SECTION (Featured Initiative)
   ============================================================ */
.platform-intro {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 80px;
  align-items: start;
  margin-top: 56px;
  margin-bottom: 64px;
}
.platform-status-block {
  padding: 32px;
  border: 1px solid var(--border-l);
  border-left: 3px solid var(--navy-500);
  align-self: start;
}
.platform-status-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy-600);
  margin-bottom: 20px;
}
.platform-status-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 400;
  color: var(--navy-700);
}
.platform-status-item::before {
  content: '';
  display: block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--navy-500);
  flex-shrink: 0;
}
.platform-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border-l);
  border-bottom: 3px solid var(--navy-800);
  margin-bottom: 0;
}
.platform-stat {
  padding: 32px 28px;
  border-left: 1px solid var(--border-l);
}
.platform-stat:first-child { border-left: none; }
.platform-stat-num {
  font-family: var(--font-d);
  font-size: 42px;
  font-weight: 500;
  color: var(--navy-800);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.platform-stat-label {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.5;
}

/* ============================================================
   ABOUT STRIP (homepage two-col)
   ============================================================ */
.about-strip {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 80px;
  align-items: start;
  margin-top: 64px;
}
.about-sidebar {
  padding: 36px;
  border: 1px solid var(--border-l);
  border-left: 3px solid var(--navy-500);
}
.about-sidebar-q {
  font-family: var(--font-d);
  font-size: 20px;
  font-weight: 400;
  color: var(--navy-800);
  line-height: 1.4;
  margin-bottom: 20px;
  font-style: italic;
}
.about-sidebar-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy-600);
  transition: gap 0.2s;
}
.about-sidebar-link:hover { gap: 14px; }


/* ============================================================
   PROFIT SPLIT (image + text two-col)
   ============================================================ */
.profit-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 520px;
}
.profit-split-img {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}
.profit-split-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.profit-split-body {
  background: var(--navy-800);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.profit-split-body .section-tag { margin-bottom: 28px; }
.profit-split-h {
  font-family: var(--font-d);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 32px;
}
.profit-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 22px;
}
.profit-item-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 7px;
}
.profit-item-text {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}
.profit-item-text strong {
  color: var(--white);
  font-weight: 500;
}
.profit-callout {
  margin-top: 36px;
  padding: 24px 28px;
  border: 1px solid rgba(214,232,245,0.2);
  border-left: 3px solid var(--accent);
}
.profit-callout-num {
  font-family: var(--font-d);
  font-size: 48px;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.profit-callout-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}


/* ============================================================
   FOCUS CARDS (homepage)
   ============================================================ */
.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-d);
  margin-top: 64px;
  border: 1px solid var(--border-d);
}
.focus-card {
  background: var(--navy-800);
  padding: 44px 36px;
  position: relative;
  transition: background 0.3s;
}
.focus-card:hover { background: var(--navy-700); }

.focus-card-num {
  font-family: var(--font-d);
  font-size: 80px;
  font-weight: 300;
  color: rgba(255,255,255,0.04);
  position: absolute;
  top: 16px; right: 20px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.focus-card-bar {
  width: 28px; height: 2px;
  background: var(--accent);
  margin-bottom: 28px;
}
.focus-card-title {
  font-family: var(--font-d);
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
}
.focus-card-text {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
}


/* ============================================================
   TEAM TEASER (homepage)
   ============================================================ */
.team-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 64px;
}
.team-card {
  background: var(--white);
  padding: 40px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  align-items: start;
  border: 1px solid var(--border-l);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.team-card:hover {
  border-color: rgba(21,46,82,0.25);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--navy-600);
  overflow: hidden;
  flex-shrink: 0;
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }

.team-card-name {
  font-family: var(--font-d);
  font-size: 26px;
  font-weight: 500;
  color: var(--navy-800);
  margin-bottom: 4px;
}
.team-card-title {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy-500);
  margin-bottom: 14px;
}
.team-card-bio {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.8;
}

.team-cta-row {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
}


/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--black);
  padding: 72px 52px;
  text-align: center;
}
.cta-banner-h {
  font-family: var(--font-d);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 20px;
}
.cta-banner-sub {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
}
.btn-white {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  color: var(--navy-800);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 36px;
  transition: all 0.25s;
}
.btn-white:hover { background: var(--accent); color: var(--navy-800); }


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-950);
  padding: 72px 52px 40px;
  color: var(--white);
}
.footer-inner { max-width: 1140px; margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border-d);
  margin-bottom: 36px;
}

.footer-logo-img {
  height: 72px;
  width: auto;
  max-width: none;
  display: block;
  margin-bottom: 4px;
  filter: invert(1) grayscale(1) brightness(2);
  mix-blend-mode: screen;
}

.footer-desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.38);
  line-height: 1.8;
  margin-top: 20px;
  white-space: nowrap;
}

.footer-col-title {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 22px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-link {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer-link:hover { color: rgba(255,255,255,0.85); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy, .footer-locs {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.06em;
}


/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--navy-800);
  padding: calc(var(--nav-h) + 72px) 52px 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0, transparent 90px,
    rgba(255,255,255,0.014) 90px, rgba(255,255,255,0.014) 91px
  );
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: var(--nav-h); left: 0;
  width: 2px; height: 160px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
}
.page-h {
  font-family: var(--font-d);
  font-size: clamp(40px, 5vw, 66px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.08;
  max-width: 720px;
}
.page-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  margin-top: 22px;
  max-width: 480px;
  line-height: 1.75;
}


/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-body-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 80px;
  align-items: start;
}
.about-body-text p {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 24px;
}
.about-pull {
  font-family: var(--font-d);
  font-size: 24px;
  font-weight: 400;
  font-style: italic;
  color: var(--navy-700);
  line-height: 1.45;
  padding: 32px;
  border-left: 3px solid var(--navy-500);
  margin: 40px 0;
}
.about-detail-block { margin-bottom: 40px; }
.about-detail-title {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy-600);
  margin-bottom: 10px;
}
.about-detail-text {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.8;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border-l);
  border: 1px solid var(--border-l);
  margin-top: 60px;
}
.value-item {
  background: var(--white);
  padding: 36px 32px;
}
.value-num {
  font-family: var(--font-d);
  font-size: 13px;
  font-weight: 400;
  color: var(--navy-600);
  margin-bottom: 14px;
}
.value-title {
  font-family: var(--font-d);
  font-size: 20px;
  font-weight: 500;
  color: var(--navy-800);
  margin-bottom: 12px;
}
.value-text {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.8;
}


/* ============================================================
   TEAM PAGE
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 64px;
}
.member-card {
  background: var(--white);
  border: 1px solid var(--border-l);
}
.member-photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy-600), var(--navy-800));
  overflow: hidden;
  position: relative;
}
.member-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.member-photo-placeholder {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.member-photo-placeholder .initials {
  font-family: var(--font-d);
  font-size: 64px;
  font-weight: 300;
  color: rgba(255,255,255,0.25);
  line-height: 1;
}
.member-photo-placeholder .ph-label {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}

.member-body { padding: 36px 36px 32px; }
.member-name {
  font-family: var(--font-d);
  font-size: 34px;
  font-weight: 500;
  color: var(--navy-800);
  margin-bottom: 4px;
}
.member-role {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-500);
  margin-bottom: 22px;
}
.member-bio {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 24px;
}
.member-contact {
  font-size: 12.5px;
  color: rgba(0,0,0,0.4);
  margin-bottom: 5px;
}
.member-contact a {
  color: var(--navy-600);
  transition: color 0.2s;
}
.member-contact a:hover { color: var(--navy-400); }

.prior-firms {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border-l);
}
.prior-label {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.3);
  margin-bottom: 14px;
}
.firm-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.firm-badge {
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--navy-600);
  background: var(--off-white);
  border: 1px solid var(--border-l);
  padding: 5px 14px;
}

/* Advisors strip */
.advisors-section { background: var(--navy-800); }
.advisors-section .section-h { color: var(--white); }
.advisors-section .section-p { color: var(--muted); }

.advisor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.advisor-card {
  border: 1px solid var(--border-d);
  padding: 32px 28px;
  background: rgba(255,255,255,0.025);
}
.advisor-name {
  font-family: var(--font-d);
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
}
.advisor-role {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.advisor-note {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
}


/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 80px;
  margin-top: 60px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-label {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy-700);
}
.form-input, .form-select, .form-textarea {
  background: var(--white);
  border: none;
  border-bottom: 1.5px solid rgba(0,0,0,0.15);
  padding: 12px 0;
  font-family: var(--font-b);
  font-size: 14px;
  font-weight: 300;
  color: var(--navy-800);
  outline: none;
  width: 100%;
  transition: border-color 0.2s;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-bottom-color: var(--navy-500);
}
.form-textarea { resize: vertical; min-height: 100px; }

.contact-info-item { margin-bottom: 36px; }
.contact-info-label {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy-600);
  margin-bottom: 10px;
}
.contact-info-value {
  font-family: var(--font-d);
  font-size: 19px;
  color: var(--navy-800);
  line-height: 1.5;
}
.contact-info-value a {
  color: var(--navy-700);
  transition: color 0.2s;
}
.contact-info-value a:hover { color: var(--navy-500); }

.contact-divider {
  width: 40px; height: 1px;
  background: var(--navy-500);
  margin: 48px 0;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
/* Ari's photo now has transparent background — no blend needed */

/* Values grid — 6-column, items 4+5 each span 3 to fill the row */
.values-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
  background: var(--border-l);
  border: 1px solid var(--border-l);
  margin-top: 60px;
}
.value-item { grid-column: span 2; }
.value-item:nth-child(4) { grid-column: span 3; }
.value-item:nth-child(5) { grid-column: span 3; }

/* ============================================================
   HOLDINGS FILTER DROPDOWN
   ============================================================ */
.holdings-filter {
  position: relative;
  display: inline-block;
  margin-bottom: 48px;
  margin-top: 32px;
}
.holdings-filter-select {
  appearance: none;
  -webkit-appearance: none;
  background: var(--white);
  border: 1px solid var(--navy-600);
  padding: 13px 52px 13px 22px;
  font-family: var(--font-b);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-700);
  cursor: pointer;
  outline: none;
  min-width: 260px;
  transition: border-color 0.2s;
}
.holdings-filter-select:hover,
.holdings-filter-select:focus { border-color: var(--navy-800); }
.holdings-filter-arrow {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--navy-600);
  pointer-events: none;
}

/* ============================================================
   THESIS FULL-WIDTH BODY
   ============================================================ */
.thesis-body--full {
  max-width: 860px;
  margin-top: 56px;
}
.thesis-body--full p { max-width: none; }

/* ============================================================
   ACTIVE PLATFORMS GRID
   ============================================================ */
.platforms-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 56px;
}
.platform-card {
  position: relative;
  border: 1px solid var(--border-l);
  background: var(--white);
  padding: 44px 56px;
  cursor: pointer;
  transition: border-color 0.25s, box-shadow 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  min-height: 150px;
  overflow: hidden;
}
.platform-card:hover {
  border-color: rgba(21,46,82,0.3);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.platform-card-logo {
  width: 340px;
}
.platform-card-logo img {
  height: 80px;
  width: auto;
  max-width: none;
  display: block;
}
.platform-card-hover-overlay {
  position: absolute;
  inset: 0;
  background: var(--navy-800);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 32px;
  opacity: 0;
  transition: opacity 0.25s;
  text-align: center;
}
.platform-card:hover .platform-card-hover-overlay {
  opacity: 1;
}
.platform-card-hover-name {
  font-family: var(--font-d);
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
}
.platform-card-hover-desc {
  font-size: 12.5px;
  font-weight: 300;
  color: var(--light);
  line-height: 1.65;
  max-width: 240px;
}
.platform-card-click-hint {
  margin-top: 14px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.75;
}

/* Platform Detail Panel */
.platform-detail {
  margin-top: 48px;
  border: 1px solid var(--border-l);
  border-top: 3px solid var(--navy-800);
  padding: 56px 64px;
  background: var(--off-white);
}
.platform-detail-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.platform-detail-logo img {
  height: 72px;
  width: auto;
  max-width: none;
  display: block;
}
.platform-detail-name {
  font-family: var(--font-d);
  font-size: 36px;
  font-weight: 500;
  color: var(--navy-800);
  margin-bottom: 6px;
}
.platform-detail-location {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-500);
  margin-bottom: 24px;
}
.platform-detail-contacts {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.platform-detail-contact strong {
  display: block;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy-600);
  margin-bottom: 4px;
}
.platform-detail-contact span {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-mid);
}
.platform-detail-contact a {
  font-size: 13px;
  color: var(--navy-500);
  transition: color 0.2s;
}
.platform-detail-contact a:hover { color: var(--navy-400); }
.platform-detail-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.85;
  max-width: 680px;
  margin-bottom: 40px;
}
.platform-detail-close {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-600);
  cursor: pointer;
  background: none;
  border: 1px solid var(--navy-600);
  padding: 10px 22px;
  font-family: inherit;
  transition: all 0.2s;
}
.platform-detail-close:hover {
  background: var(--navy-600);
  color: var(--white);
}

/* ============================================================
   LINKEDIN BOX (replaces Professional Experience on team page)
   ============================================================ */
.linkedin-section {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border-l);
}
.linkedin-box {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy-600);
  color: var(--white);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 28px;
  transition: background 0.25s;
  text-decoration: none;
}
.linkedin-box:hover { background: var(--navy-400); }
.linkedin-box-in {
  font-family: 'Georgia', serif;
  font-size: 15px;
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  color: var(--white);
}


@media (max-width: 960px) {
  :root { --nav-h: 84px; }

  /* Fix mobile nav layout */
  .nav {
    padding: 0 24px;
    grid-template-columns: 1fr auto 1fr;
  }
  .nav-left, .nav-right { display: none; }
  .nav-logo {
    grid-column: 2;
    padding: 0;
  }
  .nav-hamburger {
    display: flex;
    grid-column: 3;
    justify-self: end;
  }
  .nav-logo img { height: 64px; }

  .hero-inner { padding: 64px 28px; }
  .stats-bar { padding: 48px 28px; }
  .section { padding: 80px 28px; }
  .page-hero { padding-left: 28px; padding-right: 28px; }
  .footer { padding-left: 28px; padding-right: 28px; }

  .stats-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stat-item { border-left: 1px solid rgba(255,255,255,0.12); padding-left: 24px; }
  .stat-item:nth-child(odd) { border-left: none; padding-left: 0; }

  .about-strip,
  .about-body-grid,
  .thesis-grid,
  .platform-intro,
  .contact-grid { grid-template-columns: 1fr; }

  .platform-stats-row { grid-template-columns: 1fr 1fr; }
  .platform-stat { border-top: 1px solid var(--border-l); }
  .platform-stat:nth-child(-n+2) { border-top: none; }
  .platform-stat:nth-child(odd) { border-left: none; }

  .focus-grid { grid-template-columns: 1fr; gap: 0; }
  .values-grid { grid-template-columns: repeat(4, 1fr); }
  .value-item { grid-column: span 2 !important; }
  .team-strip,
  .team-grid { grid-template-columns: 1fr; }
  .advisor-grid { grid-template-columns: 1fr 1fr; }

  .profit-split { grid-template-columns: 1fr; }
  .profit-split-img { min-height: 300px; }
  .profit-split-body { padding: 56px 32px; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
  .hero-headline { font-size: 38px; }
  .hero-line { white-space: normal; }
  .stat-num { font-size: 38px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-desc { white-space: normal; }
  .values-grid { grid-template-columns: 1fr; }
  .value-item { grid-column: 1 / -1 !important; }
  .advisor-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 56px 28px; }
  .platform-stats-row { grid-template-columns: 1fr; }
  .platform-stat { border-left: none !important; border-top: 1px solid var(--border-l) !important; }
  .platform-stat:first-child { border-top: none !important; }
}
