:root {
  --bg: #ffffff;
  --surface: #e7decd;
  --ink: #423c3c;
  --accent: #bba175;
  --navy: #03274d;
  --cyan: #00adee;
  --muted: #515962;
  --footer: #03274d;
  --font-body: "Josefin Sans", sans-serif;
  --font-display: "Segoe UI Variable", "Segoe UI", Candara, sans-serif;
  --wrap: 1200px;
  --radius: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 16px;
}

p {
  margin: 0 0 16px;
}

.wrap {
  width: min(var(--wrap), calc(100% - 48px));
  margin: 0 auto;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 88px;
  padding: 12px 0;
}

.site-logo,
.site-logo .custom-logo-link,
.custom-logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.site-logo img,
.site-logo .custom-logo,
img.custom-logo,
.custom-logo-link img {
  width: auto !important;
  max-width: none !important;
  height: 44px !important;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 10px;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }

.primary-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.primary-nav ul {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-nav li {
  margin: 0;
  padding: 0;
  line-height: 1;
}

.primary-nav a {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: normal;
  line-height: 20px;
  white-space: nowrap;
  text-transform: uppercase;
  color: var(--ink);
}

.primary-nav .current-menu-item > a,
.primary-nav a:hover {
  color: var(--cyan);
}

.btn.header-cta {
  flex-shrink: 0;
  min-height: 56px;
  height: 56px;
  padding: 15px 25px;
  font-size: 17px;
  font-weight: 400;
  line-height: 25.5px;
  letter-spacing: normal;
  background: var(--accent);
  color: #fff;
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 15px 25px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 25.5px;
  letter-spacing: normal;
  text-transform: uppercase;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
}

.btn--navy { background: var(--navy); color: var(--accent); }
.btn--gold { background: var(--accent); color: var(--navy); }
.btn--ghost { background: transparent; color: #fff; border: 1px solid #fff; }

/* Hero */
.hero {
  position: relative;
  height: 860px;
  min-height: 860px;
  display: flex;
  align-items: flex-end;
  background: #1a2a3a center / cover no-repeat;
  color: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 39, 77, 0.32) 0%, rgba(3, 39, 77, 0.5) 100%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: min(var(--wrap), calc(100% - 48px));
  margin: 0 auto;
  padding: 40px 0 204px;
}

.hero h1,
.hero h2.hero-title {
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 500;
  line-height: 60px;
  color: #fff;
  max-width: 18ch;
}

.hero__sub {
  margin-top: 14px;
  max-width: 46ch;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: normal;
  text-transform: uppercase;
  line-height: 28px;
}

.hero-card {
  position: absolute;
  left: max(16px, calc((100% - var(--wrap)) / 2));
  bottom: 48px;
  z-index: 2;
  width: min(800px, 66.666vw);
  min-height: 129px;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 20px 30px 24px;
  background: url("../images/home-banner-shape.webp") left center / 100% 100% no-repeat;
}

.hero-card p,
.hero-card h2 {
  width: 210px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  line-height: 23px;
  color: #fff;
}

.hero-card .btn {
  flex-shrink: 0;
  min-height: 56px;
  height: 56px;
  padding: 15px 25px;
  font-size: 17px;
  font-weight: 400;
  color: var(--navy);
}

.page-hero {
  height: 320px;
  min-height: 320px;
  align-items: flex-end;
}

.page-hero .hero__inner {
  padding: 36px 0;
}

.page-hero .hero-card {
  display: none;
}

.page-hero h1 {
  max-width: 16ch;
  font-size: 40px;
  line-height: 40px;
}

.about-hero {
  height: 900px;
  min-height: 900px;
}

.about-hero h1 {
  max-width: none;
  font-size: 60px;
  line-height: 60px;
}

.about-hero .hero-card {
  display: none;
}

.about-hero .hero__inner {
  padding: 40px 0 64px;
}

.invest-hero {
  height: 900px;
  min-height: 900px;
}

.invest-hero::after {
  background: linear-gradient(180deg, rgba(3, 39, 77, 0.32) 0%, rgba(3, 39, 77, 0.5) 100%);
}

.invest-hero h1 {
  max-width: none;
  font-size: 60px;
  line-height: 60px;
}

.invest-hero .hero__sub {
  max-width: 72ch;
}

.invest-hero .hero__inner {
  padding: 40px 0 100px;
}

.invest-hero .hero-card {
  display: none;
}

.funds-hero {
  height: 900px;
  min-height: 900px;
  background-position: center bottom;
}

.funds-hero h1 {
  max-width: none;
  font-size: 60px;
  line-height: 60px;
}

.funds-hero .hero__sub {
  max-width: none;
}

.funds-hero .hero__inner {
  padding: 40px 0 100px;
}

.funds-hero .hero-card {
  display: none;
}

.contact-hero {
  height: 900px;
  min-height: 900px;
  background-position: center bottom;
}

.contact-hero h1 {
  max-width: none;
  font-size: 60px;
  line-height: 60px;
}

.contact-hero .hero__sub {
  max-width: none;
}

.contact-hero .hero__inner {
  padding: 40px 0 100px;
}

.contact-hero .hero-card {
  display: none;
}

.funds-overview {
  background: var(--accent);
  padding: 80px 0;
}

.funds-overview .wrap {
  width: min(1240px, calc(100% - 48px));
}

.funds-overview h3 {
  font-family: var(--font-display);
  font-size: 50px;
  font-weight: 100;
  line-height: 50px;
  color: var(--ink);
}

.funds-overview p {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  line-height: 28px;
  color: #fff;
}

.funds-archive {
  padding: 80px 0;
}

.funds-archive .wrap {
  width: min(1240px, calc(100% - 48px));
}

.funds-archive__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
}

.funds-archive__title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 500;
  line-height: 40px;
  color: var(--ink);
  margin: 0;
}

.funds-archive .fund-filters {
  justify-content: flex-end;
  gap: 0;
  margin: 0;
}

.funds-archive .fund-filters button {
  font-size: 17px;
  font-weight: 600;
  line-height: 25.5px;
  letter-spacing: normal;
  padding: 15px 25px;
  color: var(--ink);
  border-bottom: 1px solid transparent;
}

.funds-archive .fund-filters .is-active,
.funds-archive .fund-filters button:hover {
  color: var(--cyan);
  border-bottom-color: var(--cyan);
}

.funds-archive .fund-grid {
  gap: 30px;
}

.invest-intro {
  background: var(--accent);
  padding: 60px 0 70px;
}

.invest-intro .wrap {
  width: min(1240px, calc(100% - 48px));
}

.invest-intro h3 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 500;
  line-height: 40px;
  color: var(--ink);
}

.invest-intro p {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  line-height: 28px;
  color: #000;
}

.invest-split__inner {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 80px 0;
  width: min(1240px, calc(100% - 48px));
}

.invest-split__inner--reverse {
  flex-direction: row-reverse;
}

.invest-split__photo {
  flex: 0 0 605px;
  width: 605px;
  height: 403px;
}

.invest-split__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.invest-split__copy {
  flex: 1;
  min-width: 0;
}

.invest-split__copy h3 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 500;
  line-height: 40px;
  color: var(--ink);
}

.invest-split__copy p {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  line-height: 28px;
  color: var(--ink);
}

.invest-navy {
  min-height: 910px;
}

.invest-navy .values-navy__photo {
  min-height: 910px;
}

body.is-investing .closer--site {
  display: none;
}

.closer--invest h2 {
  max-width: none;
}

.closer--invest p {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  line-height: 28px;
  text-transform: none;
  max-width: 48ch;
}

.closer--invest .btn {
  background: var(--navy);
  color: var(--accent);
}

/* Opportunity strip */
.opportunity {
  background: var(--surface);
  padding: 22px 0;
}

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

.opportunity p {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--navy);
}

.explore-bar {
  background: var(--accent);
  padding: 80px 0;
}

.explore-bar__inner {
  display: flex;
  align-items: center;
  gap: 28px;
}

.explore-bar p {
  margin: 0;
  flex-shrink: 0;
  font-family: var(--font-body);
  font-size: 32px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: normal;
  text-transform: uppercase;
  color: var(--navy);
}

.explore-bar__line {
  flex: 1;
  height: 1px;
  background: var(--navy);
}

.explore-bar .btn {
  flex-shrink: 0;
  min-height: 56px;
  height: 56px;
  padding: 15px 25px;
  font-size: 17px;
  background: var(--navy);
  color: var(--accent);
}

.featured-funds__head {
  position: relative;
  justify-content: center;
  margin-bottom: 28px;
}

.featured-funds__head h2 {
  width: 100%;
  text-align: center;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 500;
  line-height: 40px;
  color: var(--ink);
  margin: 0;
}

.featured-funds__action {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 3;
  margin-top: 28px;
  margin-bottom: -28px;
}

.featured-funds__action .btn {
  min-height: 56px;
  padding: 15px 25px;
  font-size: 17px;
}

/* Home people */
.people {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: stretch;
  width: min(var(--wrap), calc(100% - 64px));
  margin: 0 auto;
  padding: 70px 0;
}

.people__photo {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 580px;
  padding: 48px 56px;
  background: var(--accent) center / cover no-repeat;
}

.people__photo h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 8ch;
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 40px;
  font-weight: 500;
  line-height: 40px;
  text-transform: uppercase;
}

.people__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 0;
  background: #fff;
}

.people__copy p {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  line-height: 28px;
  max-width: 52ch;
}

.people__copy .btn {
  align-self: flex-start;
  min-height: 56px;
  height: 56px;
  padding: 15px 25px;
  font-size: 17px;
  color: var(--accent);
}

/* Stats */
.stats {
  background: var(--surface);
  padding: 72px 0;
}

.stats h3 {
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 28px;
  margin-bottom: 36px;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat {
  text-align: left;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: var(--muted);
}

/* Strategies */
.strategies {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.strategy {
  min-height: 520px;
  padding: 64px 56px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #03274d center / cover no-repeat;
  position: relative;
}

.strategy::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 39, 77, 0.15), rgba(3, 39, 77, 0.72));
}

.strategy > * { position: relative; z-index: 1; }

.strategy__kicker {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.strategy h3 {
  font-family: var(--font-body);
  font-size: 32px;
  color: #fff;
}

.strategy p {
  max-width: 36ch;
  font-size: 16px;
}

.strategy .learn {
  margin-top: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 14px;
}

/* Section heads */
.section {
  padding: 88px 0;
}

.section--navy {
  background: var(--navy);
  color: #fff;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 500;
  line-height: 40px;
  color: var(--ink);
}

.section--navy .section-head h2 { color: #fff; }

/* Funds */
.fund-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.fund-card {
  position: relative;
  display: block;
  min-height: 520px;
  overflow: hidden;
  color: #fff;
}

.fund-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 520px;
  position: absolute;
  inset: 0;
}

.fund-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(3, 39, 77, 0.22);
  pointer-events: none;
}

.fund-card__meta {
  position: absolute;
  left: -10px;
  right: auto;
  bottom: 20px;
  z-index: 2;
  width: calc(100% + 10px);
  min-height: 98px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 14px 40px 14px 30px;
  background: url("../images/blog-shape.webp") left center / 100% 100% no-repeat;
}

.fund-card h3 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 500;
  line-height: 30px;
  color: #fff;
  margin: 0 0 6px;
}

.fund-card .status {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: normal;
  text-transform: uppercase;
  color: var(--cyan);
}

.featured-funds {
  position: relative;
  z-index: 2;
  padding-top: 24px;
  padding-bottom: 0;
}

.fund-carousel {
  position: relative;
}

.fund-carousel__viewport {
  overflow: hidden;
}

.fund-carousel__track {
  display: flex;
  gap: 22px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.fund-carousel__track .fund-card {
  flex: 0 0 calc((100% - 44px) / 3);
  min-height: 520px;
}

.fund-carousel__track .fund-card img {
  min-height: 520px;
}

.fund-carousel__arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 44px;
  height: 44px;
  margin-top: -22px;
  border: 0;
  border-radius: 0;
  background: var(--accent);
  color: var(--navy);
  cursor: pointer;
}

.fund-carousel__arrow::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 auto;
  border-top: 2px solid var(--navy);
  border-right: 2px solid var(--navy);
}

.fund-carousel__prev { left: -8px; }
.fund-carousel__prev::before { transform: rotate(-135deg); }
.fund-carousel__next { right: -8px; }
.fund-carousel__next::before { transform: rotate(45deg); }

.fund-carousel__dots {
  display: none;
}

.fund-carousel__dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #c9c2b6;
  cursor: pointer;
}

.fund-carousel__dots button.is-active {
  background: var(--navy);
}

/* News */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.news-card h3 {
  font-family: var(--font-body);
  font-size: 24px;
  color: var(--navy);
  margin: 16px 0 8px;
}

.news-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.news-card .cat {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

/* Closer */
.closer {
  position: relative;
  min-height: 715px;
  padding: 100px 0;
  display: flex;
  align-items: center;
  background-color: #03274d;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  text-align: center;
}

.closer .wrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.closer h2 {
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 50px;
  font-weight: 500;
  max-width: 16ch;
  margin: 0 0 20px;
  color: #fff;
}

.closer p {
  max-width: 72ch;
  margin: 0 0 14px;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: normal;
  font-size: 15px;
  font-weight: 600;
  line-height: 28px;
}

.closer--invest h2 {
  max-width: none;
}

.closer--invest p {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  line-height: 28px;
  text-transform: none;
  max-width: 48ch;
}

.closer__rule {
  display: block;
  width: 2px;
  height: 100px;
  margin: 8px 0 28px;
  background: var(--accent);
}

.closer .btn {
  min-height: 56px;
  padding: 15px 25px;
  font-size: 17px;
  background: var(--navy);
  color: var(--accent);
}

/* Footer */
.site-footer {
  background: var(--footer);
  color: #fff;
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1.15fr;
  gap: 40px;
  align-items: start;
}

.site-footer h4 {
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: normal;
  text-transform: uppercase;
  margin: 0 0 20px;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}

.site-footer .footer-blurb {
  margin: 0 0 16px;
}

.site-footer .footer-entity {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 28px;
  text-transform: uppercase;
}

.site-footer .footer-grid a {
  text-transform: uppercase;
}

.site-footer .footer-grid a[href^="tel"] {
  font-size: 15px;
  text-transform: none;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li { margin: 0 0 8px; }

.site-footer a:hover { color: var(--accent); }

.site-footer a[href*="linkedin"] {
  color: var(--cyan);
  text-transform: uppercase;
}

.footer-logo {
  width: 227px;
  height: auto;
  margin-bottom: 18px;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
  padding: 22px 0;
  border-top: 2px solid var(--cyan);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: normal;
  text-transform: uppercase;
}

.footer-legal ul {
  display: flex;
  gap: 18px;
}

/* Inner content */
.story,
.prose {
  padding: 80px 0;
}

.prose h1, .prose h2 {
  font-family: var(--font-body);
  color: var(--navy);
}

.story h2,
.about-heading {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 500;
  line-height: 40px;
  color: var(--ink);
}

.about-heading {
  text-align: center;
}

.prose h2 { font-size: 32px; }
.prose h3 { font-size: 22px; font-family: var(--font-body); color: var(--navy); }
.prose p, .story p {
  max-width: 70ch;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  line-height: 28px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.story {
  padding: 80px 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  width: min(1760px, calc(100% - 48px));
  margin: 0 auto;
}

.highlights {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
}

.highlight {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
}

.highlight + .highlight {
  border-top: 1px solid #d8d0c4;
}

.highlight img {
  width: 144px;
  height: 144px;
  flex-shrink: 0;
  margin: 0;
  padding: 40px;
  box-sizing: border-box;
  object-fit: contain;
  background: var(--accent);
  border-radius: 50%;
}

.highlight h3 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 500;
  line-height: 36px;
  color: var(--ink);
  margin: 0 0 8px;
}

.highlight p {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  line-height: 28px;
  text-transform: uppercase;
  margin: 0;
}

.mission {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy) center / cover no-repeat;
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.mission::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0.5;
  pointer-events: none;
}

.mission .wrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mission h2 {
  color: #fff;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 500;
  line-height: 50px;
  max-width: 28ch;
  margin: 0 0 28px;
  text-align: center;
}

.mission .kicker {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: normal;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 28px;
  color: var(--accent);
  margin-bottom: 16px;
  text-align: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  align-items: stretch;
}

.team-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.team-card img {
  width: 160px;
  height: 160px;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: top center;
  border-radius: 50%;
  background: #ece6db;
}

.team-card h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  line-height: 38.4px;
  color: var(--navy);
  margin: 18px 0 4px;
  min-height: 38.4px;
}

.team-card .role {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  line-height: 28px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
  min-height: 84px;
}

.team-card p {
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 28px;
}

.team-card p:not(.role) {
  flex: 1;
}

.team-card .btn {
  margin-top: auto;
  min-height: 48px;
  padding: 12px 20px;
  font-size: 17px;
  align-self: flex-start;
}

.team-profile {
  padding: 80px 0;
}

.team-profile__grid {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}

.team-profile__aside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.team-profile__aside img {
  width: 280px;
  height: 280px;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: top center;
  background: #ece6db;
}

.team-profile__aside h2 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 500;
  line-height: 44px;
  color: var(--navy);
  margin: 24px 0 8px;
}

.team-profile__role {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  line-height: 24px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.team-profile__copy p {
  max-width: 70ch;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  line-height: 28px;
}

.team-profile__copy p + p {
  margin-top: 18px;
}

.team-profile__back {
  margin-top: 32px;
}

.team-profile__back a {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.board-band {
  background: #e0d7c5;
  padding: 80px 0;
}

.community {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  min-height: 880px;
  background: var(--navy);
  color: #fff;
}

.community__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px;
}

.community h2 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 500;
  line-height: 40px;
  color: #fff;
  margin: 0 0 20px;
}

.community p {
  max-width: 52ch;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  line-height: 28px;
}

.community p a { color: var(--cyan); }

.community__rule {
  display: block;
  width: 2px;
  height: 80px;
  margin: 28px 0;
  background: var(--cyan);
}

.community h3 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  line-height: 15px;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 24px;
}

.community__map {
  min-height: 880px;
  background-color: #03274d;
  overflow: hidden;
}

.community__map img {
  width: 100%;
  height: 100%;
  min-height: 880px;
  object-fit: cover;
}

.community .orgs {
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}

.community .orgs img {
  width: 135px;
  height: 135px;
  max-width: calc((100% - 60px) / 4);
  object-fit: contain;
}

.values-band--gold {
  background: var(--accent);
  padding: 72px 0;
}

.values-band--gold .wrap {
  width: min(1240px, calc(100% - 48px));
}

.values-band--gold h3 {
  font-family: var(--font-display);
  font-size: 50px;
  font-weight: 100;
  line-height: 50px;
  color: var(--ink);
  max-width: none;
}

.values-band--gold p {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  line-height: 28px;
  color: #fff;
  max-width: none;
}

.values-band--people {
  background: #fff;
  padding: 0;
}

.values-people {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 80px 0;
  width: min(1240px, calc(100% - 48px));
}

.values-people__photo {
  flex: 0 0 600px;
  width: 600px;
  height: 400px;
}

.values-people__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.values-people__copy {
  flex: 1;
  min-width: 0;
}

.values-people__copy h3,
.values-band--navy h3 {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 500;
  line-height: 34px;
  max-width: none;
}

.values-people__copy h3 {
  color: var(--navy);
}

.values-people__copy p,
.values-band--navy p {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  line-height: 28px;
  max-width: none;
}

.values-people__copy p {
  color: var(--ink);
}

.values-band--navy {
  background: var(--navy);
  padding: 0;
  min-height: 658px;
  display: flex;
  align-items: stretch;
}

.values-navy__copy {
  flex: 1 1 52%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 50px 100px 100px;
}

.values-navy__block {
  padding: 30px 0 0 30px;
}

.values-navy__rule {
  display: block;
  width: 2px;
  height: 100px;
  margin: 15px 0 15px 30px;
  background: var(--cyan);
}

.values-navy__photo {
  flex: 1 1 48%;
  min-height: 658px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.values-band--navy h3,
.values-band--navy p {
  color: #fff;
}

.orgs {
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
}

.orgs img {
  height: 64px;
  width: auto;
}

.values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.values h2,
.values h3 {
  font-family: var(--font-body);
  color: var(--navy);
}

.contact-band {
  background: var(--accent);
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form-col h2 {
  margin: 0 0 24px;
  font-size: 40px;
  font-weight: 500;
  line-height: 40px;
  color: var(--ink);
}

.rmd-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 16px;
}

.rmd-form__full {
  grid-column: 1 / -1;
}

.rmd-form__req {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 14px;
  line-height: 22px;
  color: var(--ink);
}

.rmd-form input[type="text"],
.rmd-form input[type="email"],
.rmd-form input[type="tel"],
.rmd-form textarea {
  width: 100%;
  margin: 0;
  padding: 10px;
  border: 0;
  border-radius: 0;
  background: #fff;
  color: #112337;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 28.8px;
}

.rmd-form textarea {
  min-height: 130px;
  resize: vertical;
}

.rmd-form input::placeholder,
.rmd-form textarea::placeholder {
  color: #112337;
  opacity: 0.7;
}

.rmd-form fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.rmd-form legend {
  padding: 0;
  margin: 0 0 8px;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  line-height: 28.8px;
  color: #112337;
}

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

.rmd-form__choice {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 28.8px;
  color: #112337;
}

.rmd-form__choice input {
  width: 20px;
  height: 20px;
  margin: 0;
  flex-shrink: 0;
  accent-color: var(--navy);
}

.rmd-form__help-error {
  margin: 8px 0 0;
  font-size: 14px;
  color: var(--navy);
}

.rmd-form__turnstile {
  min-height: 65px;
}

.form-note {
  padding: 14px 16px;
  background: #fff;
  margin-bottom: 18px;
  color: var(--navy);
}

.form-note--error {
  background: #fff;
  color: var(--ink);
}

.contact-aside {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 50px;
}

.contact-aside__item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-aside__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
}

.contact-aside__icon svg {
  width: 34px;
  height: 34px;
  fill: #fff;
}

.contact-aside h3 {
  margin: 0 0 4px;
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 600;
  line-height: 26.4px;
  text-transform: uppercase;
  color: #000;
}

.contact-aside p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 600;
  line-height: 28px;
  color: var(--navy);
}

.contact-map {
  line-height: 0;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: 0;
}

.fund-filters {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.fund-filters button,
.fund-filters a {
  background: none;
  border: 0;
  padding: 0;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
}

.fund-filters .is-active,
.fund-filters a:hover { color: var(--navy); }

.single-hero {
  position: relative;
  min-height: 48vh;
  background: #03274d center / cover no-repeat;
  display: flex;
  align-items: flex-end;
  color: #fff;
}

.single-hero--fund {
  min-height: 600px;
  justify-content: flex-end;
  align-items: stretch;
}

.single-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 39, 77, 0.32) 0%, rgba(3, 39, 77, 0.5) 100%);
  pointer-events: none;
}

.single-hero--fund::after {
  background: rgba(66, 60, 60, 0.46);
}

.single-hero .wrap {
  position: relative;
  z-index: 1;
  padding: 64px 0;
}

.single-hero--fund .wrap {
  display: flex;
  align-items: flex-end;
  width: 100%;
  padding: 100px 0;
}

.single-hero h1 {
  color: #fff;
  font-family: var(--font-body);
  font-size: clamp(32px, 4vw, 48px);
}

.single-hero--fund h1 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 500;
  line-height: 1.15;
  margin: 0;
}

.fund-detail {
  padding: 40px 0;
}

.fund-detail__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
}

.fund-detail__copy {
  padding-right: 40px;
}

.fund-detail__copy h3,
.fund-detail__copy h5 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 18px;
}

.fund-detail__copy p {
  max-width: none;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  line-height: 28px;
  color: var(--ink);
}

.fund-detail__copy p + p {
  margin-top: 18px;
}

.fund-detail__copy .stats-table {
  display: none;
}

.fund-detail__copy .btn {
  margin-top: 28px;
}

.fund-detail__stats {
  background: #f6f6f6;
  padding: 30px;
}

.fund-detail__stats h2 {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 500;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 12px;
}

.fund-detail__status {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  text-transform: none;
  color: var(--ink);
  margin: 0 0 16px;
}

.fund-detail__status a {
  color: var(--cyan);
}

.fund-detail__stats dl {
  margin: 0;
}

.fund-detail__stats dl > div {
  display: grid;
  grid-template-columns: minmax(120px, 35%) 1fr;
  gap: 12px;
  align-items: start;
  padding: 10px 0;
  border-bottom: 1px solid #e6e6e6;
}

.fund-detail__stats dt {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  line-height: 28px;
  color: var(--ink);
}

.fund-detail__stats dd {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  line-height: 28px;
  color: var(--ink);
  margin: 0;
}

.fund-detail__note {
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: 13px;
  font-style: italic;
  line-height: 20px;
  color: var(--ink);
}

.stats-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 48px;
}

.stats-table th,
.stats-table td {
  text-align: left;
  padding: 12px 0;
  border-bottom: 1px solid #ddd;
  vertical-align: top;
}

.stats-table th {
  width: 34%;
  color: var(--navy);
  font-weight: 600;
}

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .primary-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 88px;
    background: #fff;
    padding: 16px 24px 24px;
    box-shadow: 0 12px 24px rgba(3, 39, 77, 0.08);
  }
  .primary-nav.is-open { display: block; }
  .primary-nav ul { flex-direction: column; align-items: flex-start; }
  .header-cta { display: none; }
  .people,
  .strategies,
  .split,
  .story-grid,
  .team-profile__grid,
  .fund-detail__copy { padding-right: 0; padding-bottom: 32px; }
  .single-hero--fund { min-height: 420px; }
  .single-hero--fund .wrap { padding: 50px 0 40px; }
  .single-hero--fund h1 { font-size: 32px; }
  .fund-detail__grid,
  .contact-grid,
  .values,
  .community { grid-template-columns: 1fr; }
  .values-people,
  .values-band--navy { flex-direction: column; }
  .values-people__photo {
    flex-basis: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
  }
  .values-navy__copy { padding: 64px 28px; }
  .values-navy__photo { min-height: 420px; width: 100%; }
  .invest-split__inner,
  .invest-split__inner--reverse { flex-direction: column; }
  .funds-archive__head {
    flex-direction: column;
    align-items: flex-start;
  }
  .funds-archive .fund-filters { flex-wrap: wrap; }
  .invest-split__photo {
    flex-basis: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 605 / 403;
  }
  .invest-navy .values-navy__photo { min-height: 420px; }
  .stats__grid,
  .fund-grid,
  .news-grid,
  .highlights,
  .team-grid,
  .board-grid,
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .people { width: min(var(--wrap), calc(100% - 32px)); }
  .people__copy { padding: 12px 0 28px; }
  .people__photo {
    min-height: 420px;
    padding: 36px 28px;
    overflow: hidden;
  }
  .people__photo h2 {
    max-width: none;
    font-size: 32px;
    line-height: 34px;
  }
  .hero h1,
  .hero h2.hero-title { font-size: 40px; line-height: 40px; }
  .hero-card {
    left: 12px;
    width: calc(100% - 24px);
    min-height: auto;
    flex-wrap: wrap;
    gap: 12px;
    padding: 16px 18px 20px;
    background-size: cover;
  }
  .hero-card p,
  .hero-card h2 { width: min(210px, 100%); }
  .fund-carousel__track .fund-card { flex-basis: calc((100% - 22px) / 2); }
  .fund-carousel__prev { left: 8px; }
  .fund-carousel__next { right: 8px; }
}

@media (max-width: 640px) {
  .stats__grid,
  .fund-grid,
  .news-grid,
  .highlights,
  .team-grid,
  .board-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .footer-legal { flex-direction: column; }
  .hero { height: auto; min-height: 640px; }
  .page-hero,
  .about-hero,
  .invest-hero,
  .funds-hero,
  .contact-hero { height: auto; min-height: 280px; }
  .page-hero h1 { max-width: none; }
  .team-profile { padding: 48px 0; }
  .team-profile__aside img {
    width: min(220px, 100%);
    height: auto;
    max-width: 220px;
  }
  .team-profile__aside h2 { font-size: 32px; line-height: 36px; }
  .about-hero h1,
  .invest-hero h1,
  .funds-hero h1,
  .contact-hero h1 { font-size: 40px; line-height: 40px; }
  .contact-form-col h2 { font-size: 32px; line-height: 36px; }
  .rmd-form,
  .rmd-form__choices { grid-template-columns: 1fr; }
  .contact-aside h3,
  .contact-aside p { font-size: 18px; line-height: 24px; }
  .community__copy { padding: 48px 24px; }
  .community__map,
  .community__map img { min-height: 360px; }
  .values-band--gold h3 { font-size: 32px; line-height: 36px; }
  .opportunity__inner { flex-direction: column; align-items: flex-start; }
  .opportunity p { max-width: 100%; }
  .highlight { align-items: flex-start; gap: 16px; }
  .highlight > div { min-width: 0; }
  .highlight img {
    width: 72px;
    height: 72px;
    padding: 16px;
  }
  .highlight h3 { font-size: 22px; line-height: 26px; }
  .prose table,
  .stats-table {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
  }
  iframe { max-width: 100%; }
  .fund-carousel__track .fund-card { flex-basis: 100%; }
  .people { width: min(var(--wrap), calc(100% - 32px)); padding: 48px 0; gap: 28px; }
  .people__photo { min-height: 280px; padding: 28px 24px; }
  .people__photo h2 { font-size: 28px; line-height: 30px; }
  .explore-bar { padding: 40px 0; }
  .explore-bar__inner {
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
  }
  .explore-bar p {
    flex: 1 1 auto;
    max-width: 100%;
    font-size: 22px;
    line-height: 26px;
  }
  .explore-bar__line { display: none; }
  .featured-funds__action { margin-top: 20px; margin-bottom: -28px; }
}
