/* =========================================================
   TRITON STRATEGIES
   Quantitative Institutional Design System
   ========================================================= */

:root {
  --navy-950: #0a0d16;
  --navy-900: #10141f;
  --navy-800: #171d2c;

  --line-dark: rgba(255, 255, 255, 0.12);
  --line-dark-strong: rgba(255, 255, 255, 0.22);

  --text-on-dark: #eeece4;
  --muted-on-dark: #9a9dac;

  --paper: #f5f4f0;
  --paper-raised: #ffffff;

  --ink: #13151b;
  --muted: #6a6d76;

  --line: #dddad2;
  --line-strong: #c7c3b8;

  --accent: #22315a;
  --accent-2: #4a5b8c;
  --accent-soft: #eef0f6;

  --serif: "Newsreader", "Iowan Old Style", "Georgia", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1180px;
  --gutter: clamp(20px, 5vw, 64px);
}


/* =========================================================
   RESET
   ========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea {
  font: inherit;
}

p {
  margin: 0;
}


/* =========================================================
   GLOBAL
   ========================================================= */

.wrap {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.eyebrow.on-dark {
  color: var(--muted-on-dark);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: inherit;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.01em;
}

em,
.italic {
  font-style: italic;
  font-family: var(--serif);
}

.rule {
  height: 1px;
  background: var(--line);
  border: none;
}

.rule.on-dark {
  background: var(--line-dark);
}


/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 13px 24px;

  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  border: 1px solid transparent;

  cursor: pointer;

  transition:
    background 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease;

  white-space: nowrap;
}

.btn-primary {
  background: var(--text-on-dark);
  color: var(--navy-950);
  border-color: var(--text-on-dark);
}

.btn-primary:hover {
  background: transparent;
  color: var(--text-on-dark);
}

.btn-outline-dark {
  background: transparent;
  color: var(--text-on-dark);
  border-color: var(--line-dark-strong);
}

.btn-outline-dark:hover {
  border-color: var(--text-on-dark);
}

.btn-outline-light {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}

.btn-outline-light:hover {
  border-color: var(--ink);
}

.btn-solid {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-solid:hover {
  background: var(--navy-950);
  border-color: var(--navy-950);
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  z-index: 100;

  background: rgba(10, 13, 22, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border-bottom: 1px solid var(--line-dark);
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;

  height: 68px;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 8px;

  color: var(--text-on-dark);
  font-family: var(--serif);
}

.brand .b1 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand .b2 {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-on-dark);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  position: relative;

  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;

  color: var(--muted-on-dark);

  transition: color 0.15s ease;
}

.main-nav a::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: -7px;

  width: 0;
  height: 1px;

  background: var(--text-on-dark);

  transition: width 0.18s ease;
}

.main-nav a:hover {
  color: var(--text-on-dark);
}

.main-nav a:hover::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 22px;
}


/* =========================================================
   MOBILE TOGGLE
   ========================================================= */

.nav-toggle {
  display: none;

  width: 40px;
  height: 40px;

  align-items: center;
  justify-content: center;

  background: none;
  border: 1px solid var(--line-dark-strong);

  color: var(--text-on-dark);

  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";

  display: block;

  width: 18px;
  height: 1px;

  background: currentColor;

  position: relative;

  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.nav-toggle span::before {
  position: absolute;
  top: -6px;
}

.nav-toggle span::after {
  position: absolute;
  top: 6px;
}


/* =========================================================
   MOBILE NAV
   ========================================================= */

.mobile-nav {
  position: fixed;

  inset: 68px 0 0 0;

  z-index: 90;

  background: var(--navy-950);

  padding: 30px var(--gutter);

  display: none;
  flex-direction: column;

  gap: 4px;

  border-top: 1px solid var(--line-dark);
}

.mobile-nav.is-open {
  display: flex;
}

.mobile-nav a {
  padding: 16px 0;

  border-bottom: 1px solid var(--line-dark);

  color: var(--text-on-dark);

  font-size: 15px;
  font-weight: 600;

  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mobile-nav .mobile-contact {
  margin-top: 20px;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;

  background: var(--navy-950);
  color: var(--text-on-dark);

  padding: 168px 0 96px;

  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(
      180deg,
      rgba(10, 13, 22, 0.94) 0%,
      rgba(10, 13, 22, 0.88) 45%,
      rgba(10, 13, 22, 0.98) 100%
    ),
    url("london-skyline.jpg");

  background-size: cover;
  background-position: center 60%;

  opacity: 0.92;
}

.hero-inner {
  position: relative;
  z-index: 1;

  max-width: 760px;
}

.hero .eyebrow-row {
  display: flex;
  align-items: center;
  gap: 14px;

  margin-bottom: 26px;
}

.hero .eyebrow-row .rule {
  flex: 1;

  max-width: 120px;

  height: 1px;

  background: var(--line-dark);
}

.hero h1 {
  font-size: clamp(38px, 5.6vw, 60px);
  line-height: 1.08;

  font-weight: 500;

  color: var(--text-on-dark);
}

.hero h1 .accent-line {
  display: block;

  font-style: italic;

  color: #c9cede;

  font-weight: 400;
}

.hero .lede {
  max-width: 590px;

  margin-top: 26px;

  font-size: 17px;
  line-height: 1.65;

  color: var(--muted-on-dark);
}

.hero .cta-row {
  display: flex;
  gap: 14px;

  margin-top: 40px;

  flex-wrap: wrap;
}

.hero .disclosure {
  max-width: 560px;

  margin-top: 64px;

  display: flex;
  gap: 14px;

  border-left: 2px solid var(--accent-2);

  padding-left: 16px;
}

.hero .disclosure .eyebrow {
  margin-bottom: 6px;
}

.hero .disclosure p {
  font-size: 12.5px;

  color: var(--muted-on-dark);

  line-height: 1.6;
}


/* =========================================================
   LEDGER
   ========================================================= */

.ledger {
  background: var(--paper);

  border-bottom: 1px solid var(--line);
}

.ledger-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.ledger-item {
  padding: 30px var(--gutter);

  border-right: 1px solid var(--line);
}

.ledger-item:last-child {
  border-right: none;
}

.ledger-item .eyebrow {
  margin-bottom: 10px;
}

.ledger-item .value {
  font-family: var(--serif);

  font-size: 28px;

  color: var(--ink);
}

.ledger-item .note {
  margin-top: 4px;

  font-size: 12px;

  color: var(--muted);
}


/* =========================================================
   SECTIONS
   ========================================================= */

.section {
  padding: 108px 0;

  border-bottom: 1px solid var(--line);
}

.section:last-of-type {
  border-bottom: none;
}

.section-dark {
  background: var(--navy-950);

  color: var(--text-on-dark);

  border-bottom: none;
}

.section-tint {
  background: var(--paper-raised);
}

.section-head {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 60px;

  margin-bottom: 56px;

  align-items: end;
}

.section-head .eyebrow {
  margin-bottom: 16px;
}

.section-head h2 {
  font-size: clamp(28px, 3.4vw, 40px);

  line-height: 1.15;
}

.section-head .desc {
  font-size: 15.5px;

  color: var(--muted);

  line-height: 1.7;
}

.section-dark .section-head .desc {
  color: var(--muted-on-dark);
}


/* =========================================================
   PORTFOLIO NOTE
   ========================================================= */

.portfolio-note {
  display: flex;
  align-items: flex-start;
  gap: 18px;

  padding: 22px 26px;

  margin-bottom: 56px;

  border: 1px solid var(--line-strong);

  background: var(--accent-soft);
}

.note-mark {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 24px;
  height: 24px;

  flex: 0 0 24px;

  border: 1px solid var(--accent-2);

  border-radius: 50%;

  color: var(--accent);

  font-size: 12px;
  font-weight: 700;
}

.portfolio-note strong {
  font-family: var(--serif);

  font-size: 15px;
}

.portfolio-note p {
  margin-top: 6px;

  font-size: 14px;

  color: var(--muted);

  line-height: 1.65;
}


/* =========================================================
   CHARTS
   ========================================================= */

.chart-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 1px;

  background: var(--line);

  border: 1px solid var(--line);
}

.chart-card {
  background: var(--paper-raised);

  padding: 30px 30px 26px;

  min-width: 0;
}

.chart-card .chart-title {
  margin-bottom: 2px;

  font-family: var(--sans);

  font-size: 12.5px;

  font-weight: 600;

  letter-spacing: 0.04em;

  color: var(--ink);
}

.chart-card .chart-flag {
  display: inline-block;

  margin-bottom: 18px;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 0.1em;

  text-transform: uppercase;

  color: var(--accent-2);
}

.allocation-layout {
  display: grid;

  grid-template-columns: 1fr;

  gap: 4px;
}

.donut-chart {
  width: 100%;

  max-width: 360px;

  margin: 0 auto;
}

.chart-card svg {
  overflow: visible;
}

.legend {
  display: flex;

  flex-wrap: wrap;

  gap: 12px 18px;

  margin-top: 16px;
}

.legend-item {
  display: flex;

  align-items: center;

  gap: 7px;

  font-size: 12px;

  color: var(--muted);
}

.legend-item strong {
  font-weight: 600;

  color: var(--ink);
}

.legend-dot {
  width: 8px;
  height: 8px;

  border-radius: 1px;

  flex: none;
}

.dot-1 {
  background: #22315a;
}

.dot-2 {
  background: #4a5b8c;
}

.dot-3 {
  background: #8b97b8;
}

.dot-4 {
  background: #c9cede;
}


/* =========================================================
   BAR CHARTS
   ========================================================= */

.bar-chart {
  display: flex;

  flex-direction: column;

  gap: 22px;

  padding-top: 10px;
}

.bar-row {
  display: flex;

  flex-direction: column;

  gap: 7px;
}

.bar-label {
  display: flex;

  justify-content: space-between;

  gap: 20px;

  font-size: 11.5px;

  color: var(--ink);
}

.bar-label strong {
  flex: none;

  color: var(--muted);

  font-weight: 600;
}

.bar-track {
  width: 100%;
  height: 6px;

  background: #eceae2;

  overflow: hidden;
}

.bar-fill {
  height: 100%;

  background: var(--accent);

  transform-origin: left;
}

.bar-45 {
  width: 45%;
}

.bar-30 {
  width: 30%;
}

.bar-25 {
  width: 25%;
}

.bar-18 {
  width: 18%;
}

.bar-15 {
  width: 15%;
}

.bar-7 {
  width: 7%;
}

.performance-chart {
  width: 100%;

  height: auto;

  margin-top: 4px;
}


/* =========================================================
   STRATEGIES
   ========================================================= */

.strategy-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.strategy-card {
  display: flex;

  flex-direction: column;

  min-height: 260px;

  padding: 34px 28px;

  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.strategy-card .idx {
  font-family: var(--sans);

  font-size: 11px;

  font-weight: 700;

  color: var(--accent-2);

  letter-spacing: 0.08em;
}

.strategy-card h3 {
  margin-top: 22px;
  margin-bottom: 12px;

  font-size: 19px;

  line-height: 1.25;
}

.strategy-card p {
  margin-top: auto;

  font-size: 13.5px;

  color: var(--muted);

  line-height: 1.6;
}


/* =========================================================
   INVESTMENT FRAMEWORK
   ========================================================= */

.framework-grid {
  display: grid;

  grid-template-columns: repeat(5, 1fr);

  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.framework-item {
  min-height: 190px;

  padding: 28px 22px;

  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.framework-item .idx {
  font-size: 11px;

  letter-spacing: 0.08em;

  color: var(--muted-on-dark);

  font-weight: 700;
}

.framework-item h4 {
  margin-top: 16px;
  margin-bottom: 10px;

  font-size: 17px;

  color: var(--text-on-dark);
}

.framework-item p {
  font-size: 13px;

  color: var(--muted-on-dark);

  line-height: 1.6;
}


/* =========================================================
   FUTURE FUND MODEL
   ========================================================= */

.fund-model {
  display: grid;

  grid-template-columns: 1.1fr 0.9fr;

  gap: 64px;

  align-items: start;
}

.fund-model .copy p {
  margin-bottom: 16px;

  font-size: 15px;

  color: var(--muted);

  line-height: 1.75;
}

.fund-model .copy p:last-child {
  margin-bottom: 0;
}

.fee-panel {
  padding: 34px;

  border: 1px solid var(--line-strong);

  background: var(--paper-raised);
}

.fee-row {
  display: flex;

  justify-content: space-between;

  align-items: baseline;

  padding: 18px 0;

  border-bottom: 1px solid var(--line);
}

.fee-row:last-of-type {
  border-bottom: none;
}

.fee-row .label {
  font-size: 13px;

  color: var(--muted);
}

.fee-row .value {
  font-family: var(--serif);

  font-size: 26px;

  color: var(--ink);
}

.fee-caption {
  margin-top: 20px;

  font-size: 12px;

  color: var(--muted);

  line-height: 1.6;
}


/* =========================================================
   ABOUT
   ========================================================= */

.about-grid {
  display: grid;

  grid-template-columns: 0.85fr 1.15fr;

  gap: 64px;
}

.about-grid h2 {
  font-size: clamp(26px, 3vw, 36px);

  line-height: 1.2;
}

.about-copy p {
  margin-bottom: 18px;

  font-size: 16px;

  color: var(--muted);

  line-height: 1.8;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.vision-block {
  display: grid;

  grid-template-columns: 0.85fr 1.15fr;

  gap: 64px;

  margin-top: 64px;

  padding-top: 56px;

  border-top: 1px solid var(--line);
}

.vision-block .eyebrow {
  margin-bottom: 14px;
}

.vision-block h3 {
  font-size: 24px;

  line-height: 1.3;
}

.vision-block p {
  font-size: 15.5px;

  color: var(--muted);

  line-height: 1.8;
}


/* =========================================================
   TEAM
   ========================================================= */

.team-label {
  padding-bottom: 18px;

  border-bottom: 1px solid var(--line);
}

.team-list {
  display: flex;

  flex-direction: column;
}

.team-member {
  display: grid;

  grid-template-columns: 170px 1fr;

  gap: 40px;

  padding: 44px 0;

  border-top: 1px solid var(--line);
}

.team-member:last-child {
  border-bottom: 1px solid var(--line);
}

.team-photo {
  width: 170px;
  height: 220px;

  overflow: hidden;

  background: var(--navy-900);

  border: 1px solid var(--line-strong);
}

.team-photo img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position: center top;
}

.team-info h3 {
  margin-bottom: 4px;

  font-size: 22px;
}

.team-info .role {
  display: block;

  margin-bottom: 6px;

  font-size: 11px;

  font-weight: 600;

  letter-spacing: 0.1em;

  text-transform: uppercase;

  color: var(--accent-2);
}


/* =========================================================
   EDUCATION
   ========================================================= */

.education {
  display: flex;

  align-items: center;

  gap: 12px;

  margin: 16px 0 18px;

  min-height: 42px;
}

.education img {
  width: 38px;
  height: 38px;

  padding: 2px;

  object-fit: contain;

  flex-shrink: 0;

  background: #fff;

  border: 1px solid var(--line);
}

.education div {
  display: flex;

  flex-direction: column;

  gap: 3px;
}

.education strong {
  font-size: 13px;

  font-weight: 600;

  line-height: 1.2;

  color: var(--ink);
}

.education span {
  font-size: 12px;

  line-height: 1.35;

  color: var(--muted);
}


/* =========================================================
   TEAM TAGS
   ========================================================= */

.team-info .focus-tags {
  display: flex;

  flex-wrap: wrap;

  gap: 8px;

  margin-bottom: 18px;
}

.focus-tag {
  padding: 5px 10px;

  font-size: 11.5px;

  color: var(--muted);

  border: 1px solid var(--line-strong);

  letter-spacing: 0.02em;

  background: rgba(255, 255, 255, 0.35);
}


/* =========================================================
   LINKEDIN
   ========================================================= */

.linkedin-link {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  padding-bottom: 3px;

  font-size: 12.5px;

  font-weight: 600;

  letter-spacing: 0.04em;

  border-bottom: 1px solid var(--line-strong);

  transition:
    border-color 0.15s ease,
    color 0.15s ease;
}

.linkedin-link:hover {
  color: var(--accent);

  border-color: var(--ink);
}

.linkedin-link svg {
  width: 15px;
  height: 15px;

  flex: none;
}


/* =========================================================
   QUANTITATIVE RESEARCH TEAM
   ========================================================= */

.team-subsection {
  margin-top: 72px;
}

.team-subsection-head {
  display: grid;

  grid-template-columns: 0.85fr 1.15fr;

  gap: 64px;

  align-items: end;

  padding-bottom: 28px;

  border-bottom: 1px solid var(--line);
}

.team-subsection-head h3 {
  margin-top: 12px;

  max-width: 430px;

  font-size: 27px;

  line-height: 1.2;
}

.team-subsection-desc {
  max-width: 560px;

  font-size: 14px;

  color: var(--muted);

  line-height: 1.7;
}

.quantitative-list .team-member {
  border-top: none;
}

.quantitative-list .team-member:last-child {
  border-bottom: 1px solid var(--line);
}


/* =========================================================
   CONTACT
   ========================================================= */

.contact-grid {
  display: grid;

  grid-template-columns: 0.9fr 1.1fr;

  gap: 72px;
}

.contact-side h2 {
  margin-bottom: 20px;

  font-size: clamp(28px, 3.4vw, 38px);

  line-height: 1.18;
}

.contact-side p {
  margin-bottom: 28px;

  font-size: 15.5px;

  color: var(--muted);

  line-height: 1.75;
}

.contact-detail {
  margin-top: 10px;

  padding-top: 22px;

  border-top: 1px solid var(--line);
}

.contact-detail .eyebrow {
  margin-bottom: 8px;
}

.form-field {
  margin-bottom: 22px;
}

.form-field label {
  display: block;

  margin-bottom: 9px;

  font-size: 11.5px;

  font-weight: 600;

  letter-spacing: 0.08em;

  text-transform: uppercase;

  color: var(--muted);
}

.form-field input,
.form-field textarea {
  width: 100%;

  padding: 13px 14px;

  border: 1px solid var(--line-strong);

  background: var(--paper-raised);

  font-family: var(--sans);

  font-size: 14.5px;

  color: var(--ink);

  transition: border-color 0.15s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;

  border-color: var(--accent);
}

.form-field textarea {
  min-height: 130px;

  resize: vertical;
}

.form-row {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 20px;
}

.form-status {
  min-height: 18px;

  margin-top: 14px;

  font-size: 13px;

  color: var(--muted);
}

.form-status.success {
  color: #2f6b46;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  padding: 72px 0 30px;

  background: var(--navy-950);

  color: var(--muted-on-dark);
}

.footer-top {
  display: grid;

  grid-template-columns: 1.2fr 1fr 1fr;

  gap: 40px;

  padding-bottom: 48px;

  border-bottom: 1px solid var(--line-dark);
}

.footer-brand .brand {
  margin-bottom: 14px;

  color: var(--text-on-dark);
}

.footer-brand p {
  max-width: 260px;

  font-family: var(--serif);

  font-size: 16px;

  font-style: italic;

  color: #c9cede;
}

.footer-col .eyebrow {
  margin-bottom: 16px;
}

.footer-col a {
  display: block;

  margin-bottom: 12px;

  font-size: 13.5px;

  color: var(--muted-on-dark);
}

.footer-col a:hover {
  color: var(--text-on-dark);
}

.footer-linkedin {
  display: inline-flex !important;

  align-items: center;

  gap: 8px;
}

.footer-linkedin svg {
  width: 15px;
  height: 15px;
}

.footer-bottom {
  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 12px;

  padding-top: 26px;

  font-size: 12px;

  color: #6d7080;

  flex-wrap: wrap;
}

.footer-bottom .legal {
  max-width: 640px;

  line-height: 1.6;
}


/* =========================================================
   RESPONSIVE: TABLET
   ========================================================= */

@media (max-width: 980px) {

  .ledger-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ledger-item:nth-child(2) {
    border-right: none;
  }

  .ledger-item {
    border-bottom: 1px solid var(--line);
  }

  .ledger-item:nth-last-child(-n + 2) {
    border-bottom: none;
  }

  .section-head {
    grid-template-columns: 1fr;

    gap: 20px;
  }

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

  .strategy-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .framework-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fund-model,
  .about-grid,
  .vision-block,
  .contact-grid {
    grid-template-columns: 1fr;

    gap: 36px;
  }

  .team-subsection-head {
    grid-template-columns: 1fr;

    gap: 16px;
  }

  .footer-top {
    grid-template-columns: 1fr;

    gap: 32px;
  }
}


/* =========================================================
   RESPONSIVE: MOBILE
   ========================================================= */

@media (max-width: 720px) {

  .main-nav,
  .header-cta .btn-outline-dark {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 128px 0 64px;
  }

  .hero h1 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .hero .lede {
    font-size: 15.5px;
  }

  .hero .cta-row {
    flex-direction: column;
  }

  .hero .cta-row .btn {
    width: 100%;
  }

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

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

  .team-member {
    grid-template-columns: 1fr;

    gap: 28px;
  }

  .team-photo {
    width: 150px;
    height: 195px;
  }

  .education {
    align-items: flex-start;
  }

  .education img {
    width: 36px;
    height: 36px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;

    align-items: flex-start;
  }

  .section {
    padding: 72px 0;
  }

  .section-head {
    margin-bottom: 40px;
  }

  .portfolio-note {
    padding: 18px;
  }

  .chart-card {
    padding: 24px 20px;
  }

  .ledger-item {
    padding: 24px 20px;
  }

  .ledger-item .value {
    font-size: 24px;
  }

  .team-subsection {
    margin-top: 52px;
  }

  .team-subsection-head h3 {
    font-size: 24px;
  }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

  .brand .b1 {
    font-size: 16px;
  }

  .brand .b2 {
    font-size: 9px;
  }

  .hero {
    padding-top: 118px;
  }

  .hero .eyebrow-row {
    align-items: flex-start;
  }

  .hero .eyebrow-row .rule {
    display: none;
  }

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

  .ledger-item,
  .ledger-item:nth-child(2) {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .ledger-item:last-child {
    border-bottom: none;
  }

  .legend {
    flex-direction: column;

    gap: 9px;
  }
}
