﻿:root {
  --charcoal: #141414;
  --brand-green: #2d3229;
  --brand-green-deep: #1f2922;
  --brand-green-mid: #49594e;
  --brand-green-soft: #e8eee8;
  --brand-green-soft-2: #f4f7f2;
  --ivory: #f1f0ec;
  --warm-accent: #a33b20;
  --warm-accent-soft: rgba(163, 59, 32, 0.12);
  --white: #ffffff;
  --max-width: 1080px;
  --nav-height: 78px;
  --shadow-soft: 0 14px 34px rgba(20, 20, 20, 0.08);
}

* {
  box-sizing: border-box;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--charcoal);
  background: linear-gradient(180deg, var(--ivory) 0%, #eceee9 100%);
  line-height: 1.6;
}

body.modal-open {
  overflow: hidden;
}

section[id],
header[id] {
  scroll-margin-top: calc(var(--nav-height) + 16px);
}

a {
  color: inherit;
}

.container {
  width: min(var(--max-width), calc(100% - 3rem));
  margin: 0 auto;
}

.section {
  padding: 5.6rem 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(232, 238, 232, 0.72));
}

.section-head {
  margin-bottom: 2rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(31, 41, 34, 0.1);
}

.eyebrow {
  margin-bottom: 0.45rem;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--warm-accent);
}

h1,
h2,
h3 {
  margin: 0 0 0.75rem;
  font-weight: 600;
  line-height: 1.18;
}

h1 {
  font-size: clamp(2.55rem, 4.3vw, 4rem);
}

h2 {
  font-size: clamp(1.7rem, 2.7vw, 2.25rem);
}

h3 {
  font-size: 1.03rem;
}

p {
  margin: 0 0 0.8rem;
}

ul {
  margin: 0;
  padding-left: 1.1rem;
}

.site-header {
  min-height: 88vh;
  padding-top: var(--nav-height);
}

.nav-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1rem 1.5rem;
  background: rgba(241, 240, 236, 0.96);
  border-bottom: 1px solid rgba(31, 41, 34, 0.12);
  box-shadow: 0 10px 24px rgba(20, 20, 20, 0.08);
  backdrop-filter: blur(10px);
}

.brand img {
  height: 2rem;
  width: auto;
  display: block;
  filter: brightness(0.12);
}

.nav-menu {
  display: flex;
  gap: 1.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  color: rgba(31, 41, 34, 0.92);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 600;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--brand-green);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  padding: 0;
  width: 2rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 0.32rem 0;
  background: var(--brand-green-deep);
}

.hero {
  min-height: calc(88vh - var(--nav-height));
  display: grid;
  align-items: center;
  background:
    linear-gradient(100deg, rgba(20, 20, 20, 0.74), rgba(31, 41, 34, 0.48) 42%, rgba(31, 41, 34, 0.18)),
    url("./assets/media/background.webp") center/cover no-repeat;
}

.hero-content {
  max-width: 43rem;
  color: var(--white);
  padding: 2rem 0;
}

.hero-logo {
  display: block;
  width: min(30rem, 78vw);
  max-width: 100%;
  margin-bottom: 1.2rem;
  filter: brightness(0) invert(1);
}

.hero-kicker {
  margin-bottom: 0.35rem;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 247, 242, 0.8);
}

.hero-tagline {
  margin-bottom: 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(232, 238, 232, 0.92);
}

.hero-copy {
  max-width: 38rem;
  color: rgba(255, 255, 255, 0.9);
}

.grid-4,
.grid-3 {
  display: grid;
  gap: 1rem;
}

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

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

.stats-grid,
.fund-grid,
.leader-grid {
  align-items: stretch;
}

.panel,
.fund-card,
.leader-card,
.contact-form {
  background: linear-gradient(180deg, var(--white), var(--brand-green-soft-2));
  border: 1px solid rgba(31, 41, 34, 0.1);
  border-radius: 0.45rem;
  box-shadow: var(--shadow-soft);
}

.panel {
  padding: 1.15rem;
}

.about-card {
  display: grid;
  grid-template-rows: auto minmax(3.7rem, auto) 1fr;
  gap: 0.6rem;
  height: 100%;
}

.about-card h3 {
  margin-bottom: 0;
}

.about-icon {
  width: 2.2rem;
  height: 2.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(45, 50, 41, 0.08);
  border-left: 4px solid var(--brand-green);
}

.about-icon svg {
  width: 1rem;
  height: 1rem;
  fill: var(--brand-green);
}

.value-grid .index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.8rem;
  background: var(--brand-green-deep);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
}

.offering-grid .panel {
  border-left: 4px solid var(--brand-green-mid);
}

.fund-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.fund-card--rich {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto minmax(4.2rem, auto) minmax(6.7rem, auto) auto 1fr;
  gap: 0.95rem;
  height: 100%;
  padding: 1.2rem;
  background: linear-gradient(180deg, var(--white), var(--brand-green-soft));
}

.fund-card--rich::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-green-deep), var(--brand-green), var(--brand-green-mid));
}

.fund-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.fund-category,
.fund-seq {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.9rem;
  font-size: 0.69rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}

.fund-category {
  padding: 0.3rem 0.62rem;
  background: rgba(45, 50, 41, 0.08);
  color: var(--brand-green);
}

.fund-seq {
  min-width: 1.9rem;
  background: rgba(31, 41, 34, 0.08);
  color: var(--brand-green-deep);
}

.fund-card--rich h3 {
  margin: 0;
  font-size: 1.08rem;
}

.x12-lockup,
.fund-name-lockup {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.02rem;
}

.x12-lockup__x,
.fund-name-lockup__x {
  line-height: 1;
}

.x12-lockup__12,
.fund-name-lockup__12 {
  position: relative;
  top: -0.24em;
  font-size: 0.66em;
  line-height: 1;
  letter-spacing: 0.04em;
}

.fund-thesis {
  margin: 0;
  color: rgba(20, 20, 20, 0.74);
  font-size: 0.9rem;
}

.fund-highlight {
  display: grid;
  gap: 0.15rem;
  padding: 0.95rem 1rem;
  border-left: 4px solid var(--brand-green-mid);
  background: linear-gradient(135deg, var(--brand-green-deep), var(--brand-green));
  color: var(--white);
}

.fund-highlight-label {
  font-size: 0.69rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 247, 242, 0.78);
}

.fund-highlight strong {
  font-size: 1.38rem;
  line-height: 1.1;
  color: var(--white);
}

.fund-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.fund-meta-item {
  display: grid;
  gap: 0.22rem;
  padding: 0.78rem 0.82rem;
  border: 1px solid rgba(31, 41, 34, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

.fund-meta-item--wide {
  grid-column: span 2;
}

.fund-meta-item span {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(73, 89, 78, 0.82);
}

.fund-meta-item strong {
  font-size: 0.94rem;
  font-weight: 600;
}

.fund-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: rgba(20, 20, 20, 0.66);
}

.leader-card {
  padding: 1.15rem;
  border-top: 4px solid var(--brand-green);
}

.leader-media {
  display: block;
  width: min(15rem, 100%);
  aspect-ratio: 1 / 1;
  height: auto;
  margin: 0 auto 1rem;
  margin-inline: auto;
  padding: 0;
  border: none;
  overflow: hidden;
  border-radius: 50%;
  background: #f4f3ec;
  box-shadow:
    0 0 0 4px rgba(255, 255, 255, 0.96),
    0 12px 20px rgba(20, 20, 20, 0.06);
  cursor: pointer;
  text-align: inherit;
  justify-self: center;
  align-self: start;
  place-self: start center;
}

.leader-media img,
.leader-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 0%;
  transform: scale(1.24);
  border-radius: 0;
  margin-bottom: 0;
  background: #f4f3ec;
}

.leader-media:hover img,
.leader-media:focus-visible img {
  box-shadow: none;
  transform: scale(1.24) translateY(-1px);
}

.leader-media[data-person="ivan-zhivago"] img {
  object-position: 54% 0%;
  transform: scale(1.24) translateY(0.95rem);
}

.leader-media[data-person="ivan-zhivago"]:hover img,
.leader-media[data-person="ivan-zhivago"]:focus-visible img {
  object-position: 54% 0%;
  transform: scale(1.24) translateY(0.87rem);
}

.leader-media[data-person="chris-fincke"] img {
  object-position: 43% 0%;
}

.leader-media[data-person="chris-fincke"]:hover img,
.leader-media[data-person="chris-fincke"]:focus-visible img {
  object-position: 43% 0%;
}

.leader-media:focus-visible {
  outline: none;
}

.leader-media img.leader-preview-face,
.leader-card img.leader-preview-face {
  object-fit: cover !important;
  object-position: center center !important;
  transform: none !important;
  background: transparent !important;
}

.leader-media:hover img.leader-preview-face,
.leader-media:focus-visible img.leader-preview-face {
  transform: none !important;
}

.leader-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  border-radius: 0.25rem;
  margin-bottom: 0.9rem;
  background: rgba(45, 50, 41, 0.07);
  border: 1px dashed rgba(45, 50, 41, 0.18);
  color: rgba(45, 50, 41, 0.65);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.leader-title {
  color: var(--brand-green);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.team-expand {
  margin-top: 1.4rem;
}

.pipeline-expand {
  margin-top: 1.4rem;
}

.full-team {
  margin-top: 1rem;
}

.full-funds {
  margin-top: 1rem;
}

.full-team-grid {
  margin-top: 0.1rem;
}

.profile-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.profile-modal.hidden {
  display: none;
}

.profile-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, 0.82);
}

.profile-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(68rem, calc(100vw - 2rem));
  max-height: calc(100vh - 2rem);
  overflow: auto;
  background: linear-gradient(180deg, var(--white), var(--brand-green-soft-2));
  border: 1px solid rgba(31, 41, 34, 0.12);
  box-shadow: 0 24px 48px rgba(20, 20, 20, 0.24);
}

.profile-modal__close {
  position: sticky;
  top: 0;
  z-index: 2;
  margin-left: auto;
  display: block;
  padding: 0.95rem 1rem 0.4rem;
  border: none;
  background: transparent;
  color: rgba(45, 50, 41, 0.78);
  font: inherit;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.profile-modal__content {
  display: grid;
  grid-template-columns: minmax(15rem, 24rem) minmax(0, 1fr);
  gap: 1.6rem;
  align-items: start;
  padding: 0 1.35rem 1.35rem;
}

.profile-modal__media {
  padding: 0.65rem;
  border-radius: 0.45rem;
  background: linear-gradient(180deg, rgba(244, 243, 236, 0.98), rgba(234, 240, 232, 0.9));
}

.profile-modal__media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  object-position: center top;
  border-radius: 0.3rem;
  background: #f4f3ec;
  transition: opacity 0.18s ease;
}

.profile-modal__media img.is-loading {
  opacity: 0;
}

.profile-modal__copy .eyebrow {
  margin-bottom: 0.55rem;
}

.profile-modal__copy h3 {
  margin-bottom: 0.35rem;
}

.profile-modal__title {
  margin-bottom: 0.9rem;
  color: var(--brand-green);
  font-weight: 600;
}

.profile-modal__bio {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.5rem;
  overflow-wrap: anywhere;
}

.profile-modal__bio li {
  margin: 0;
}

.fund-grid--expanded {
  margin-top: 0.1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-form {
  padding: 1.15rem;
}

.contact-form label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  font-family: inherit;
  font-size: 0.92rem;
  padding: 0.72rem 0.8rem;
  margin-bottom: 0.85rem;
  background: #fff;
  border: 1px solid rgba(31, 41, 34, 0.18);
  border-radius: 0.25rem;
}

.hp-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.checkbox-row {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.checkbox-row input {
  width: auto;
  margin: 0.2rem 0 0;
}

.btn {
  border: none;
  border-radius: 0.2rem;
  padding: 0.68rem 1.05rem;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
}

.btn-primary {
  background: var(--brand-green-deep);
  color: var(--white);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--brand-green);
}

.btn-secondary {
  background: transparent;
  color: var(--brand-green-deep);
  border: 1px solid rgba(31, 41, 34, 0.22);
}

.form-status {
  margin: 0.8rem 0 0;
  min-height: 1.25rem;
  font-size: 0.9rem;
}

.site-footer {
  border-top: 1px solid rgba(31, 41, 34, 0.12);
  padding: 1.3rem 1.5rem 2rem;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.45);
}

.footer-links {
  display: flex;
  gap: 1rem;
}

.footer-links a {
  text-decoration: none;
  border-bottom: 1px solid rgba(31, 41, 34, 0.35);
}

.disclaimer-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(20, 20, 20, 0.82);
}

.disclaimer-modal.hidden {
  display: none;
}

.disclaimer-panel {
  max-width: 52rem;
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  padding: 1.2rem 1.2rem 1rem;
  box-sizing: border-box;
  background: var(--white);
  border-radius: 0.4rem;
}

.disclaimer-panel ul {
  margin-bottom: 0.9rem;
}

.disclaimer-actions {
  display: flex;
  gap: 0.7rem;
  margin-top: 1rem;
}

.decline-message {
  margin-top: 0.8rem;
  color: var(--warm-accent);
  font-weight: 600;
}

.info-inline {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.info-chip {
  width: 1.3rem;
  height: 1.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--brand-green);
  color: var(--white);
  font-size: 0.78rem;
  cursor: help;
}

.info-tooltip {
  position: absolute;
  top: 1.8rem;
  left: 0;
  width: min(26rem, 85vw);
  opacity: 0;
  pointer-events: none;
  padding: 0.8rem;
  background: var(--brand-green-deep);
  color: var(--ivory);
  border-radius: 0.35rem;
  box-shadow: var(--shadow-soft);
  z-index: 3;
}

.info-tooltip p {
  margin-bottom: 0.6rem;
  font-size: 0.8rem;
}

.info-inline:hover .info-tooltip,
.info-inline:focus-within .info-tooltip {
  opacity: 1;
}


.hero-content {
  position: relative;
  max-width: 46rem;
  padding: 2.25rem 2.35rem 2rem;
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.32), rgba(20, 20, 20, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 22px 44px rgba(20, 20, 20, 0.18);
  backdrop-filter: blur(6px);
}

.hero-content::before {
  content: "";
  position: absolute;
  inset: 1rem auto 1rem 1rem;
  width: 2px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.08));
}

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

.hero-kicker {
  color: rgba(232, 238, 232, 0.9);
}

.hero h1 {
  margin-bottom: 0.45rem;
  letter-spacing: -0.03em;
}

.hero-tagline {
  margin-bottom: 1.2rem;
  font-size: 0.76rem;
  letter-spacing: 0.24em;
}

.hero-copy {
  max-width: 34rem;
  margin-bottom: 0;
  font-size: 1rem;
}

.section-head {
  display: grid;
  gap: 0.15rem;
  align-items: end;
}

.section-head h2 {
  max-width: 38rem;
}

.section-head + .grid-4,
.section-head + .grid-3,
.section-head + .fund-grid,
.section-head + .contact-grid {
  margin-top: 1.45rem;
}

.panel,
.fund-card,
.leader-card,
.contact-form {
  border-radius: 0.55rem;
}

.about-card,
.value-grid .panel,
.offering-grid .panel,
.leader-card {
  position: relative;
  overflow: hidden;
}

.about-card::after,
.value-grid .panel::after,
.offering-grid .panel::after,
.leader-card::after,
.contact-form::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: inherit;
}

.about-card {
  padding: 1.3rem 1.15rem 1.15rem;
}

.value-grid .panel,
.offering-grid .panel {
  padding: 1.3rem 1.15rem 1.15rem;
}

.value-grid .panel {
  border-top: 4px solid rgba(45, 50, 41, 0.85);
}

.value-grid .panel p,
.offering-grid .panel li,
.leader-card p {
  color: rgba(20, 20, 20, 0.76);
}

.offering-grid .panel {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 0.7rem;
}

.offering-grid ul {
  display: grid;
  gap: 0.65rem;
}

.fund-grid {
  align-items: stretch;
}

.fund-card--rich {
  border: 1px solid rgba(31, 41, 34, 0.12);
  box-shadow: 0 18px 34px rgba(20, 20, 20, 0.08);
}

.fund-card--rich h3 {
  align-self: start;
  padding-right: 1rem;
}

.fund-thesis {
  line-height: 1.58;
}

.fund-meta-item {
  min-height: 4.6rem;
  align-content: start;
}

.fund-meta-item strong {
  line-height: 1.35;
}

.leader-card {
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  gap: 0.15rem;
  padding: 1.15rem;
}

.leader-media img,
.leader-card img {
  border-radius: 0.35rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.team-expand {
  padding: 1.25rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(232, 238, 232, 0.86));
}

.contact-grid > div,
.contact-form {
  min-height: 100%;
}

.contact-grid > div {
  padding: 1.3rem 1.25rem 1.1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(232, 238, 232, 0.8));
  border: 1px solid rgba(31, 41, 34, 0.08);
  border-radius: 0.55rem;
  box-shadow: var(--shadow-soft);
}

.contact-form {
  position: relative;
  padding: 1.3rem 1.25rem 1.15rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(45, 50, 41, 0.22);
  outline-offset: 1px;
  border-color: rgba(45, 50, 41, 0.38);
}

.site-footer {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(232, 238, 232, 0.82));
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--brand-green-deep);
}
body[data-theme="sage"] {
  --brand-green: #3b5548;
  --brand-green-deep: #24372e;
  --brand-green-mid: #688073;
  --brand-green-soft: #e8f0e8;
  --brand-green-soft-2: #f5f9f4;
  --ivory: #eff3ee;
  --warm-accent: #8b5e44;
  --warm-accent-soft: rgba(139, 94, 68, 0.12);
}

body[data-theme="pine"] {
  --brand-green: #27453b;
  --brand-green-deep: #162a23;
  --brand-green-mid: #587267;
  --brand-green-soft: #e5eeea;
  --brand-green-soft-2: #f2f7f4;
  --ivory: #edf1ee;
  --warm-accent: #7f5a40;
  --warm-accent-soft: rgba(127, 90, 64, 0.12);
}

.nav-wrap {
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  min-height: 2rem;
  padding: 0.2rem 0.7rem;
  border: 1px solid rgba(31, 41, 34, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  color: var(--brand-green-deep);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-menu {
  flex: 1;
  justify-content: center;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.theme-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.22rem;
  background: rgba(31, 41, 34, 0.06);
  border: 1px solid rgba(31, 41, 34, 0.12);
  border-radius: 999px;
}

.theme-btn {
  border: none;
  border-radius: 999px;
  background: transparent;
  color: rgba(31, 41, 34, 0.78);
  padding: 0.42rem 0.72rem;
  font-family: inherit;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

.theme-btn.is-active {
  background: var(--brand-green-deep);
  color: var(--white);
  box-shadow: 0 8px 16px rgba(20, 20, 20, 0.14);
}

.theme-btn:hover,
.theme-btn:focus-visible {
  color: var(--brand-green-deep);
}

.theme-btn.is-active:hover,
.theme-btn.is-active:focus-visible {
  color: var(--white);
}

.fund-card--rich {
  grid-template-rows: auto minmax(2.8rem, auto) minmax(5rem, auto) auto 1fr;
  gap: 0.78rem;
}

.fund-card--rich h3 {
  min-height: 2.7rem;
  line-height: 1.3;
}

.fund-thesis {
  min-height: 5rem;
  line-height: 1.52;
}
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 780px) {
  .section {
    padding: 4.5rem 0;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    padding: 0.9rem 1.4rem 1.2rem;
    background: rgba(241, 240, 236, 0.98);
  }

  .nav-menu.open {
    display: flex;
  }

  .grid-4,
  .grid-3,
  .fund-grid {
    grid-template-columns: 1fr;
  }

  .fund-meta-grid {
    grid-template-columns: 1fr;
  }

  .fund-meta-item--wide {
    grid-column: span 1;
  }

  .hero {
    min-height: 72vh;
    background-position: 58% center;
  }

  .hero-logo {
    width: min(22rem, 84vw);
  }

  .container {
    width: min(var(--max-width), calc(100% - 2rem));
  }

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

@media (max-width: 780px) {
  .nav-wrap {
    flex-wrap: wrap;
  }

  .nav-actions {
    margin-left: auto;
    gap: 0.6rem;
  }

  .theme-btn {
    padding: 0.34rem 0.56rem;
    font-size: 0.6rem;
    letter-spacing: 0.12em;
  }

  .fund-card--rich {
    grid-template-rows: auto auto auto auto auto;
  }

  .fund-card--rich h3,
  .fund-thesis {
    min-height: 0;
  }
}

body[data-theme="olive"] {
  --brand-green: #55664a;
  --brand-green-deep: #344034;
  --brand-green-mid: #7d8b72;
  --brand-green-soft: #edf1e8;
  --brand-green-soft-2: #f8faf5;
  --ivory: #f1f3ed;
  --warm-accent: #8a6948;
  --warm-accent-soft: rgba(138, 105, 72, 0.12);
}

body[data-theme="slate"] {
  --brand-green: #36504f;
  --brand-green-deep: #1f3234;
  --brand-green-mid: #668280;
  --brand-green-soft: #e7eeee;
  --brand-green-soft-2: #f4f8f8;
  --ivory: #edf1f1;
  --warm-accent: #6c5c50;
  --warm-accent-soft: rgba(108, 92, 80, 0.12);
}

.theme-switcher {
  flex-wrap: wrap;
  justify-content: flex-end;
  max-width: 28rem;
}

.theme-btn {
  min-width: 4.3rem;
  transition: background-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.fund-card--rich {
  grid-template-rows: auto minmax(2.45rem, auto) minmax(4.15rem, auto) auto 1fr;
  gap: 0.68rem;
  padding: 1.15rem;
  border-radius: 0.65rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 242, 0.96)),
    linear-gradient(180deg, rgba(232, 238, 232, 0.55), rgba(255, 255, 255, 0));
}

.fund-card--rich::before {
  height: 5px;
}

.fund-card-top {
  align-items: center;
  padding-bottom: 0.05rem;
  border-bottom: 1px solid rgba(31, 41, 34, 0.08);
}

.fund-category {
  padding: 0.32rem 0.68rem;
  border: 1px solid rgba(31, 41, 34, 0.08);
  border-radius: 999px;
  background: rgba(45, 50, 41, 0.06);
}

.fund-seq {
  min-width: 2.1rem;
  border-radius: 999px;
}

.fund-card--rich h3 {
  min-height: 2.45rem;
  padding-right: 0.25rem;
  font-size: 1.04rem;
  letter-spacing: -0.01em;
}

.fund-thesis {
  min-height: 4.15rem;
  color: rgba(20, 20, 20, 0.7);
  font-size: 0.86rem;
  line-height: 1.5;
}

.fund-highlight {
  position: relative;
  padding: 0.88rem 0.95rem 0.86rem;
  border-left: none;
  border-radius: 0.42rem;
  overflow: hidden;
}

.fund-highlight::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: rgba(255, 255, 255, 0.42);
}

.fund-highlight strong {
  font-size: 1.28rem;
}

.fund-meta-grid {
  gap: 0.58rem;
}

.fund-meta-item {
  min-height: 4.15rem;
  padding: 0.74rem 0.78rem;
  border-radius: 0.38rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(241, 244, 240, 0.82));
}

.fund-meta-item span {
  font-size: 0.64rem;
  letter-spacing: 0.13em;
}

.fund-meta-item strong {
  font-size: 0.9rem;
}

.fund-note {
  max-width: 52rem;
}

@media (max-width: 1024px) {
  .theme-switcher {
    max-width: 20rem;
  }
}

@media (max-width: 780px) {
  .theme-switcher {
    max-width: none;
    width: 100%;
    justify-content: flex-start;
  }

  .theme-btn {
    min-width: 3.85rem;
  }

  .fund-card--rich {
    grid-template-rows: auto auto auto auto auto;
    gap: 0.72rem;
  }

  .fund-card--rich h3,
  .fund-thesis {
    min-height: 0;
  }
}

.theme-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
}

.theme-btn::before {
  content: "";
  width: 0.56rem;
  height: 0.56rem;
  border-radius: 50%;
  flex: 0 0 auto;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45), 0 0 0 1px rgba(31, 41, 34, 0.14);
}

.theme-btn[data-theme="deck"]::before {
  background: linear-gradient(135deg, #1f2922, #49594e);
}

.theme-btn[data-theme="sage"]::before {
  background: linear-gradient(135deg, #24372e, #688073);
}

.theme-btn[data-theme="pine"]::before {
  background: linear-gradient(135deg, #162a23, #587267);
}

.theme-btn[data-theme="olive"]::before {
  background: linear-gradient(135deg, #344034, #7d8b72);
}

.theme-btn[data-theme="slate"]::before {
  background: linear-gradient(135deg, #1f3234, #668280);
}

.fund-card--rich {
  grid-template-rows: auto 2.55rem 5rem auto 1fr;
}

.fund-card--rich h3 {
  min-height: 2.55rem;
  max-height: 2.55rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.fund-thesis {
  min-height: 5rem;
  max-height: 5rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

@media (max-width: 780px) {
  .fund-card--rich {
    grid-template-rows: auto auto auto auto auto;
  }

  .fund-card--rich h3,
  .fund-thesis {
    max-height: none;
    display: block;
    -webkit-line-clamp: initial;
    -webkit-box-orient: initial;
  }
}

.density-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.22rem;
  background: rgba(31, 41, 34, 0.06);
  border: 1px solid rgba(31, 41, 34, 0.12);
  border-radius: 999px;
}

.density-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: rgba(31, 41, 34, 0.78);
  padding: 0.42rem 0.78rem;
  font-family: inherit;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.density-btn.is-active {
  background: rgba(31, 41, 34, 0.92);
  color: var(--white);
  box-shadow: 0 8px 16px rgba(20, 20, 20, 0.12);
}

body[data-density="compact"] .section {
  padding: 4.35rem 0;
}

body[data-density="compact"] .panel,
body[data-density="compact"] .leader-card,
body[data-density="compact"] .contact-form,
body[data-density="compact"] .team-expand,
body[data-density="compact"] .contact-grid > div {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

body[data-density="compact"] .section-head + .grid-4,
body[data-density="compact"] .section-head + .grid-3,
body[data-density="compact"] .section-head + .fund-grid,
body[data-density="compact"] .section-head + .contact-grid {
  margin-top: 1rem;
}

body[data-density="compact"] .fund-card--rich {
  padding: 1rem;
  gap: 0.58rem;
  grid-template-rows: auto 2.35rem 4.5rem auto 1fr;
}

body[data-density="compact"] .fund-card--rich h3 {
  min-height: 2.35rem;
  max-height: 2.35rem;
}

body[data-density="compact"] .fund-thesis {
  min-height: 4.5rem;
  max-height: 4.5rem;
}

.fund-card--rich {
  border: 1px solid rgba(31, 41, 34, 0.14);
  box-shadow: 0 18px 34px rgba(20, 20, 20, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.fund-card-top {
  min-height: 2rem;
}

.fund-highlight {
  min-height: 4.25rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.fund-meta-grid {
  padding-top: 0.05rem;
}

.fund-meta-item {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

@media (max-width: 780px) {
  .density-switcher {
    width: 100%;
    justify-content: flex-start;
  }

  .density-btn {
    padding: 0.34rem 0.62rem;
    font-size: 0.6rem;
    letter-spacing: 0.12em;
  }

  body[data-density="compact"] .fund-card--rich,
  .fund-card--rich {
    grid-template-rows: auto auto auto auto auto;
  }

  body[data-density="compact"] .fund-card--rich h3,
  body[data-density="compact"] .fund-thesis {
    min-height: 0;
    max-height: none;
  }
}

body {
  text-rendering: optimizeLegibility;
}

h2 {
  letter-spacing: -0.02em;
}

h3 {
  line-height: 1.28;
}

.nav-menu a {
  letter-spacing: 0.015em;
}

.hero-copy {
  line-height: 1.68;
}

.panel p,
.leader-card p,
.contact-grid > div p,
.contact-form,
.fund-note {
  line-height: 1.62;
}

.offering-grid li,
.fund-thesis,
.fund-meta-item strong {
  line-height: 1.5;
}

.section-head {
  margin-bottom: 1.75rem;
}

.section-head h2 {
  max-width: 36rem;
}

.about-card p,
.value-grid p,
.offering-grid li,
.contact-grid > div p {
  color: rgba(20, 20, 20, 0.78);
}

.leader-card h3,
.fund-card--rich h3 {
  letter-spacing: -0.01em;
}

body[data-density="compact"] {
  --nav-height: 70px;
}

body[data-density="compact"] .nav-wrap {
  padding: 0.78rem 1.15rem;
  gap: 0.8rem;
}

body[data-density="compact"] .brand-mark {
  min-width: 2.6rem;
  min-height: 1.8rem;
  padding: 0.16rem 0.56rem;
  font-size: 0.76rem;
}

body[data-density="compact"] .nav-menu {
  gap: 0.9rem;
}

body[data-density="compact"] .nav-menu a {
  font-size: 0.8rem;
}

body[data-density="compact"] .theme-switcher,
body[data-density="compact"] .density-switcher {
  padding: 0.18rem;
}

body[data-density="compact"] .theme-btn,
body[data-density="compact"] .density-btn {
  padding: 0.34rem 0.6rem;
  font-size: 0.61rem;
}

body[data-density="compact"] .hero {
  min-height: calc(82vh - var(--nav-height));
}

body[data-density="compact"] .hero-content {
  max-width: 42rem;
  padding: 1.7rem 1.8rem 1.55rem;
}

body[data-density="compact"] .hero-content::before {
  inset: 0.8rem auto 0.8rem 0.8rem;
}

body[data-density="compact"] .hero-logo {
  width: min(25rem, 70vw);
  margin-bottom: 0.95rem;
}

body[data-density="compact"] .hero-kicker {
  margin-bottom: 0.2rem;
  font-size: 0.68rem;
}

body[data-density="compact"] .hero-tagline {
  margin-bottom: 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
}

body[data-density="compact"] .hero-copy {
  max-width: 32rem;
  font-size: 0.94rem;
  line-height: 1.58;
}

body[data-density="compact"] .section {
  padding: 3.95rem 0;
}

body[data-density="compact"] .section-head {
  margin-bottom: 1.2rem;
  padding-bottom: 0.72rem;
}

body[data-density="compact"] h2 {
  font-size: clamp(1.45rem, 2.3vw, 1.95rem);
}

body[data-density="compact"] .grid-4,
body[data-density="compact"] .grid-3,
body[data-density="compact"] .fund-grid,
body[data-density="compact"] .contact-grid {
  gap: 0.85rem;
}

body[data-density="compact"] .about-card,
body[data-density="compact"] .value-grid .panel,
body[data-density="compact"] .offering-grid .panel,
body[data-density="compact"] .leader-card,
body[data-density="compact"] .contact-form,
body[data-density="compact"] .contact-grid > div,
body[data-density="compact"] .team-expand {
  padding-left: 1rem;
  padding-right: 1rem;
}

body[data-density="compact"] .about-card {
  gap: 0.45rem;
  grid-template-rows: auto minmax(3.1rem, auto) 1fr;
}

body[data-density="compact"] .about-icon {
  width: 1.95rem;
  height: 1.95rem;
}

body[data-density="compact"] .value-grid .index {
  width: 1.8rem;
  height: 1.8rem;
  margin-bottom: 0.65rem;
}

body[data-density="compact"] .offering-grid ul {
  gap: 0.5rem;
}

body[data-density="compact"] .leader-card {
  gap: 0.1rem;
}

body[data-density="compact"] .leader-media img,
body[data-density="compact"] .leader-card img {
  margin-bottom: 0.7rem;
}

body[data-density="compact"] .leader-title {
  margin-bottom: 0.4rem;
}

body[data-density="compact"] .contact-form input,
body[data-density="compact"] .contact-form textarea {
  padding: 0.62rem 0.72rem;
  margin-bottom: 0.72rem;
}

body[data-density="compact"] .checkbox-row {
  margin-bottom: 0.8rem;
}

body[data-density="compact"] .site-footer {
  padding: 1rem 1.15rem 1.45rem;
  font-size: 0.8rem;
}

@media (max-width: 780px) {
  body[data-density="compact"] .nav-wrap {
    padding: 0.72rem 0.95rem;
  }

  body[data-density="compact"] .hero-content {
    padding: 1.3rem 1rem 1.15rem 1.15rem;
  }

  body[data-density="compact"] .theme-btn,
  body[data-density="compact"] .density-btn {
    padding: 0.3rem 0.52rem;
    font-size: 0.58rem;
  }
}

.nav-wrap {
  background: linear-gradient(180deg, rgba(244, 245, 241, 0.96), rgba(238, 241, 235, 0.92));
  box-shadow: 0 12px 26px rgba(20, 20, 20, 0.07);
}

.brand-mark {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(240, 244, 239, 0.72));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.hero {
  background:
    linear-gradient(98deg, rgba(17, 20, 18, 0.8), rgba(31, 41, 34, 0.54) 40%, rgba(31, 41, 34, 0.16)),
    url("./assets/media/background.webp") center/cover no-repeat;
}

.hero-content {
  border-radius: 0.8rem;
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.4), rgba(20, 20, 20, 0.14));
  box-shadow: 0 24px 48px rgba(20, 20, 20, 0.2);
}

.hero-kicker,
.hero-tagline {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}

.section-head {
  position: relative;
}

.section-head::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 5.2rem;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-green-deep), rgba(31, 41, 34, 0));
}

.panel,
.leader-card,
.contact-form,
.contact-grid > div,
.team-expand {
  box-shadow: 0 16px 30px rgba(20, 20, 20, 0.06);
}

.leader-media img,
.leader-card img {
  background: linear-gradient(180deg, rgba(45, 50, 41, 0.06), rgba(73, 89, 78, 0.1));
}

.contact-form input,
.contact-form textarea {
  border-radius: 0.35rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.btn-primary,
.btn-secondary,
.theme-btn,
.density-btn,
.brand-mark {
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, color 160ms ease;
}

.btn-primary:hover,
.btn-primary:focus-visible,
.btn-secondary:hover,
.btn-secondary:focus-visible,
.theme-btn:hover,
.theme-btn:focus-visible,
.density-btn:hover,
.density-btn:focus-visible,
.brand:hover .brand-mark,
.brand:focus-visible .brand-mark {
  transform: translateY(-1px);
}

.footer-links a {
  position: relative;
  padding-bottom: 0.12rem;
  border-bottom: none;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.02rem;
  height: 1px;
  background: rgba(31, 41, 34, 0.3);
  transform-origin: left center;
}

.footer-links a:hover::after,
.footer-links a:focus-visible::after {
  background: var(--brand-green-deep);
}

.site-footer {
  border-top: 1px solid rgba(31, 41, 34, 0.1);
}

body[data-density="compact"] .hero-content {
  border-radius: 0.72rem;
}

body[data-density="compact"] .section-head::after {
  width: 4.3rem;
}

.hero-logo {
  margin-bottom: 0.72rem;
}

.hero-tagline {
  margin-bottom: 0.9rem;
}

body[data-density="compact"] .hero-logo {
  margin-bottom: 0.72rem;
}

body[data-density="compact"] .hero-tagline {
  margin-bottom: 0.68rem;
}

.hero {
  background:
    linear-gradient(98deg, rgba(17, 20, 18, 0.8), rgba(31, 41, 34, 0.54) 40%, rgba(31, 41, 34, 0.16)),
    url("./assets/media/background.webp") center/cover no-repeat;
}

.hero-lockup {
  display: inline-grid;
  grid-template-columns: auto auto auto;
  align-items: start;
  column-gap: 0.42rem;
  margin-bottom: 0.62rem;
  color: #ffffff;
}

.hero-logo {
  display: block;
  max-width: 100%;
  height: auto;
  margin-bottom: 0;
  filter: brightness(0) invert(1);
}

.hero-logo--presentation {
  width: clamp(7.25rem, 11.5vw, 9rem);
  flex: 0 0 auto;
  filter:
    brightness(0)
    invert(1)
    drop-shadow(0 0 0 #ffffff)
    drop-shadow(0 0 0 #ffffff)
    drop-shadow(0 0 0 #ffffff)
    drop-shadow(0 0 0 #ffffff)
    drop-shadow(0 0 0 #ffffff)
    drop-shadow(0 0 0 #ffffff) !important;
  opacity: 1;
}

.hero-lockup__numeral {
  padding-top: 0.38rem;
  font-size: clamp(1.68rem, 2.66vw, 2.41rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.01em;
}

.hero-lockup__word {
  padding-top: 0.18rem;
  font-size: clamp(3.84rem, 6.5vw, 5.8rem);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: 0.12em;
}

.hero-lockup__mobile-wordmark {
  display: none;
}

.hero-tagline {
  margin-top: 0;
  margin-bottom: 0.82rem;
}

body[data-density="compact"] .hero-lockup {
  margin-bottom: 0.54rem;
}

body[data-density="compact"] .hero-logo {
  margin-bottom: 0;
}

body[data-density="compact"] .hero-logo--presentation {
  width: clamp(6.5rem, 10.5vw, 8.15rem);
}

body[data-density="compact"] .hero-lockup__numeral {
  padding-top: 0.32rem;
  font-size: clamp(1.48rem, 2.38vw, 2.1rem);
}

body[data-density="compact"] .hero-lockup__word {
  padding-top: 0.16rem;
  font-size: clamp(3.44rem, 6vw, 5.12rem);
}

/* Final palette alignment based on Sarah feedback, 23 Mar 2026 */
body[data-theme="deck"] {
  --brand-green: #434a3a;
  --brand-green-deep: #2e3328;
  --brand-green-mid: #626d56;
  --brand-green-soft: #cbd0c4;
  --brand-green-soft-2: #eaece7;
  --ivory: #f1f0ec;
  --warm-accent: #beb9a7;
  --warm-accent-soft: rgba(190, 185, 167, 0.16);
  --deck-gradient-start: #000000;
  --deck-gradient-end: #2e3328;
  --deck-neutral: #dcdad0;
  --deck-heading-light: #cbd0c4;
  --deck-heading-soft: #beb9a7;
}

body[data-theme="deck"] {
  background: #ffffff;
}

body[data-theme="deck"] .nav-wrap,
body[data-theme="deck"] .site-footer {
  background: rgba(241, 240, 236, 0.98);
}

body[data-theme="deck"] #value.section-alt,
body[data-theme="deck"] #contact.section-alt {
  background: #f1f0ec;
}

body[data-theme="deck"] #funds.section-alt {
  background: #eaece7;
}

body[data-theme="deck"] .section-head {
  border-bottom-color: rgba(46, 51, 40, 0.12);
}

body[data-theme="deck"] .section-head::after {
  background: #626d56;
}

body[data-theme="deck"] .section:not(.section-alt) .eyebrow {
  color: #cbd0c4;
}

body[data-theme="deck"] .section-alt .eyebrow {
  color: #beb9a7;
}

body[data-theme="deck"] .panel,
body[data-theme="deck"] .fund-card,
body[data-theme="deck"] .leader-card,
body[data-theme="deck"] .contact-form,
body[data-theme="deck"] .contact-grid > div,
body[data-theme="deck"] .team-expand {
  background: #ffffff;
  border: 1px solid rgba(46, 51, 40, 0.12);
  box-shadow: 0 14px 28px rgba(27, 26, 20, 0.06);
}

body[data-theme="deck"] .about-icon {
  background: #f1f0ec;
  border-left-color: #626d56;
}

body[data-theme="deck"] .about-icon svg,
body[data-theme="deck"] .leader-title,
body[data-theme="deck"] .fund-category,
body[data-theme="deck"] .fund-seq,
body[data-theme="deck"] .fund-meta-item span {
  color: #2e3328;
}

body[data-theme="deck"] .value-grid .index {
  background: #2e3328;
  color: #ffffff;
}

body[data-theme="deck"] .offering-grid .panel,
body[data-theme="deck"] .fund-highlight {
  border-left-color: #626d56;
}

body[data-theme="deck"] .fund-card--rich {
  background: #ffffff;
  border-color: rgba(46, 51, 40, 0.14);
  box-shadow: 0 16px 30px rgba(27, 26, 20, 0.06);
}

body[data-theme="deck"] .fund-card--rich::before,
body[data-theme="deck"] .fund-highlight {
  background: linear-gradient(270deg, var(--deck-gradient-start) 0%, var(--deck-gradient-end) 88%);
}

body[data-theme="deck"] .fund-card-top {
  border-bottom-color: rgba(46, 51, 40, 0.1);
}

body[data-theme="deck"] .fund-category {
  background: #eaece7;
  border-color: #cbd0c4;
}

body[data-theme="deck"] .fund-seq {
  background: #f1f0ec;
}

body[data-theme="deck"] .fund-thesis {
  color: rgba(27, 26, 20, 0.74);
}

body[data-theme="deck"] .fund-meta-item {
  background: #f1f0ec;
  border-color: rgba(46, 51, 40, 0.1);
  box-shadow: none;
}

body[data-theme="deck"] .leader-media img,
body[data-theme="deck"] .leader-card img {
  background: #eaece7;
}

body[data-theme="deck"] .contact-form input,
body[data-theme="deck"] .contact-form textarea {
  background: #ffffff;
  box-shadow: none;
}

body[data-theme="deck"] .theme-btn[data-theme="deck"]::before {
  background: linear-gradient(270deg, #000000 0%, #2e3328 88%);
}

body[data-theme="presentation"] {
  --brand-green: #626d56;
  --brand-green-deep: #2e3328;
  --brand-green-mid: #97a289;
  --brand-green-soft: #cbd0c4;
  --brand-green-soft-2: #eaece7;
  --ivory: #f1f0ec;
  --warm-accent: #beb9a7;
  --warm-accent-soft: rgba(190, 185, 167, 0.16);
  --presentation-shadow: 0 12px 24px rgba(27, 26, 20, 0.045);
}

body[data-theme="presentation"] {
  background: #f1f0ec;
}

body[data-theme="presentation"] .nav-wrap,
body[data-theme="presentation"] .site-footer {
  background: rgba(234, 236, 231, 0.98);
  border-color: rgba(46, 51, 40, 0.12);
}

body[data-theme="presentation"] #value.section-alt,
body[data-theme="presentation"] #contact.section-alt {
  background: #f1f0ec;
}

body[data-theme="presentation"] #funds.section-alt {
  background: #eaece7;
}

body[data-theme="presentation"] .section-head {
  border-bottom-color: rgba(46, 51, 40, 0.1);
}

body[data-theme="presentation"] .section-head::after {
  background: #97a289;
}

body[data-theme="presentation"] .section:not(.section-alt) .eyebrow {
  color: #626d56;
}

body[data-theme="presentation"] .section-alt .eyebrow {
  color: #beb9a7;
}

body[data-theme="presentation"] .panel,
body[data-theme="presentation"] .fund-card,
body[data-theme="presentation"] .leader-card,
body[data-theme="presentation"] .contact-form,
body[data-theme="presentation"] .contact-grid > div,
body[data-theme="presentation"] .team-expand {
  background: #ffffff;
  border: 1px solid rgba(46, 51, 40, 0.1);
  box-shadow: var(--presentation-shadow);
}

body[data-theme="presentation"] .about-icon {
  background: #f1f0ec;
  border-left-color: #97a289;
}

body[data-theme="presentation"] .about-icon svg {
  fill: #434a3a;
}

body[data-theme="presentation"] .value-grid .index,
body[data-theme="presentation"] .btn-primary,
body[data-theme="presentation"] .brand-mark {
  background: #2e3328;
  color: #ffffff;
}

body[data-theme="presentation"] .offering-grid .panel {
  border-left-color: #97a289;
}

body[data-theme="presentation"] .fund-card--rich {
  background: #ffffff;
  border-color: rgba(46, 51, 40, 0.12);
  box-shadow: 0 14px 26px rgba(27, 26, 20, 0.05);
}

body[data-theme="presentation"] .fund-card--rich::before,
body[data-theme="presentation"] .fund-highlight {
  background: linear-gradient(270deg, #000000 0%, #2e3328 88%);
}

body[data-theme="presentation"] .fund-card-top {
  border-bottom-color: rgba(46, 51, 40, 0.08);
}

body[data-theme="presentation"] .fund-category {
  background: #eaece7;
  border-color: #cbd0c4;
  color: #434a3a;
}

body[data-theme="presentation"] .fund-seq {
  background: #f1f0ec;
  color: #2e3328;
}

body[data-theme="presentation"] .fund-thesis {
  color: rgba(27, 26, 20, 0.72);
}

body[data-theme="presentation"] .fund-meta-item {
  background: #f1f0ec;
  border-color: rgba(46, 51, 40, 0.08);
  box-shadow: none;
}

body[data-theme="presentation"] .fund-meta-item span,
body[data-theme="presentation"] .leader-title,
body[data-theme="presentation"] .btn-secondary {
  color: #434a3a;
}

body[data-theme="presentation"] .leader-media img,
body[data-theme="presentation"] .leader-card img {
  background: #eaece7;
}

body[data-theme="presentation"] .contact-form input,
body[data-theme="presentation"] .contact-form textarea {
  background: #ffffff;
  box-shadow: none;
}

.leader-card--ppt-circle {
  text-align: center;
  justify-items: center;
}

.leader-card--ppt-circle .leader-media {
  position: relative;
  display: block;
  width: fit-content;
  margin: 0 auto 1rem;
  padding: 0;
}

.leader-card--ppt-circle .leader-media::before {
  content: "";
  position: absolute;
  width: 5.6rem;
  height: 5.6rem;
  left: -0.9rem;
  top: 0.9rem;
  border-radius: 50%;
  background: #beb9a7;
  opacity: 0.95;
  z-index: 0;
}

.leader-card--ppt-circle .leader-media img {
  position: relative;
  z-index: 1;
  display: block;
  width: clamp(6.2rem, 9.6vw, 7.2rem);
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  transform: translateX(0.5rem);
  border-radius: 0.22rem;
  object-fit: cover;
  object-position: center 18%;
  background: #f4f3ec !important;
  box-shadow:
    0 6px 14px rgba(20, 20, 20, 0.07),
    0 0 0 1px rgba(255, 255, 255, 0.95);
}

.leader-card--ppt-circle h3,
.leader-card--ppt-circle .leader-title,
.leader-card--ppt-circle p {
  text-align: center;
}

.leader-card--ppt-circle p:last-child {
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}

.photo-variants {
  margin-bottom: 1.4rem;
  padding: 1.2rem;
}

.section-head--compact {
  margin-bottom: 1rem;
}

.section-head--compact::after {
  width: 4rem;
}

.section-head--compact h3 {
  margin: 0;
  font-size: 1.18rem;
}

.photo-variant-grid {
  display: grid;
  grid-template-columns: minmax(16rem, 18rem);
  gap: 1rem;
  justify-content: center;
}

.photo-variant-card {
  display: grid;
  grid-template-rows: auto auto auto;
  gap: 0.35rem;
  align-content: start;
  text-align: center;
  padding: 1.1rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 0 0 1px rgba(45, 50, 41, 0.07);
}

.photo-variant-card h4 {
  margin: 0;
  font-size: 0.98rem;
}

.photo-variant-card p {
  margin: 0;
  color: rgba(20, 20, 20, 0.62);
  font-size: 0.82rem;
  line-height: 1.4;
}

.photo-variant-media {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 13rem;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.photo-variant-media img {
  display: block;
  object-fit: cover;
  object-position: center 18%;
  background: #f4f3ec;
  box-shadow: 0 8px 16px rgba(20, 20, 20, 0.06);
}

.photo-variant-card--circle-frame .photo-variant-media {
  width: 10.1rem;
  height: 10.1rem;
  min-height: 10.1rem;
  margin: 0 auto 0.2rem;
  overflow: hidden;
  border-radius: 50%;
  background: #f4f3ec;
  box-shadow:
    0 0 0 10px rgba(255, 255, 255, 0.96),
    0 12px 20px rgba(20, 20, 20, 0.06);
}

.photo-variant-card--circle-frame .photo-variant-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 2%;
  transform: scale(1.3);
  background: #f4f3ec;
  box-shadow: none;
}

.photo-variant-card--portrait .photo-variant-media img {
  width: 9.2rem;
  aspect-ratio: 4 / 5;
  border-radius: 0;
}

.photo-variant-card--circle-large .photo-variant-media {
  min-height: 13.2rem;
}

.photo-variant-card--circle-large .photo-variant-media img {
  width: 9.6rem;
  height: 9.6rem;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 6%;
  transform: scale(1.16) translateY(0.15rem);
  box-shadow:
    0 10px 18px rgba(20, 20, 20, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.96);
}

.photo-variant-card--rounded .photo-variant-media img {
  width: 9.6rem;
  aspect-ratio: 1 / 1;
  border-radius: 1rem;
}

.photo-variant-card--fullbleed {
  padding: 0 0.95rem 0.95rem;
  overflow: hidden;
}

.photo-variant-card--fullbleed .photo-variant-media {
  min-height: auto;
  margin: 0 -0.95rem 0.6rem;
}

.photo-variant-card--fullbleed .photo-variant-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 0.5rem 0.5rem 0 0;
  box-shadow: none;
}

.photo-variant-card--framed .photo-variant-media {
  padding: 0.72rem;
  min-height: auto;
  background: linear-gradient(180deg, rgba(244, 243, 236, 0.98), rgba(236, 239, 232, 0.94));
  box-shadow: inset 0 0 0 1px rgba(45, 50, 41, 0.08);
}

.photo-variant-card--framed .photo-variant-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 0.2rem;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.95),
    0 8px 16px rgba(20, 20, 20, 0.05);
}

.photo-variant-card--soft-panel .photo-variant-media {
  min-height: auto;
  padding: 0.9rem;
  background: linear-gradient(180deg, rgba(244, 243, 236, 0.98), rgba(234, 240, 232, 0.94));
  box-shadow:
    inset 0 0 0 1px rgba(45, 50, 41, 0.06),
    0 8px 16px rgba(20, 20, 20, 0.04);
}

.photo-variant-card--soft-panel .photo-variant-media img {
  width: 9rem;
  aspect-ratio: 4 / 5;
  border-radius: 0.7rem;
  object-position: center 14%;
  box-shadow:
    0 10px 18px rgba(20, 20, 20, 0.05),
    0 0 0 1px rgba(255, 255, 255, 0.96);
}

.photo-variant-card--cutout .photo-variant-media::before {
  content: "";
  position: absolute;
  width: 8.6rem;
  height: 8.6rem;
  border-radius: 50%;
  background: #d7dfd2;
  left: 50%;
  top: 50%;
  transform: translate(-58%, -50%);
  z-index: 0;
}

.photo-variant-card--cutout .photo-variant-media img {
  position: relative;
  z-index: 1;
  width: 9.1rem;
  aspect-ratio: 4 / 5;
  border-radius: 0.2rem;
  transform: translateX(0.5rem);
}

@media (max-width: 1024px) {
  .profile-modal__content {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: 1fr;
  }

  .profile-modal__media,
  .profile-modal__copy {
    width: 100%;
  }
}

@media (max-width: 780px) {
  .photo-variant-grid {
    grid-template-columns: 1fr;
  }

  .disclaimer-modal {
    padding: 0.55rem;
  }

  .disclaimer-panel {
    width: calc(100vw - 2.5rem);
    max-width: calc(100vw - 2.5rem);
    max-height: calc(100vh - 1.1rem);
    padding: 0.85rem 0.72rem 0.8rem;
  }

  .leader-grid .leader-card,
  .full-team-grid .leader-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  .leader-grid .leader-card > *,
  .full-team-grid .leader-card > * {
    width: 100%;
  }

  .leader-grid .leader-media,
  .full-team-grid .leader-media {
    margin: 0 auto 0.9rem !important;
  }

  .profile-modal__dialog {
    width: min(42rem, calc(100vw - 0.5rem));
    max-height: calc(100vh - 0.5rem);
    border-radius: 0.7rem;
  }

  .profile-modal__content {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    padding: 0 0.85rem 0.85rem;
  }

  .profile-modal__media img {
    aspect-ratio: 4 / 5;
    max-height: 52vh;
  }
}

.leader-grid .leader-media,
.full-team-grid .leader-media {
  width: min(15rem, 100%) !important;
  aspect-ratio: 1 / 1 !important;
  height: auto !important;
  margin-inline: auto !important;
  justify-self: center !important;
  place-self: start center !important;
  transform: none !important;
}

.leader-grid,
.full-team-grid {
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr)) !important;
}

.leader-grid .leader-card,
.full-team-grid .leader-card {
  width: 100%;
  min-width: 0;
}

.leader-grid .leader-card,
.full-team-grid .leader-card {
  justify-items: center;
  text-align: center;
}

.leader-grid .leader-card p:last-child,
.full-team-grid .leader-card p:last-child {
  max-width: 30ch;
}

.leader-grid .leader-media img,
.full-team-grid .leader-media img {
  object-position: 50% 0% !important;
}

.leader-grid .leader-media[data-person="ivan-zhivago"] img,
.full-team-grid .leader-media[data-person="ivan-zhivago"] img {
  object-position: 54% 0% !important;
  transform: scale(1.24) translateY(0.95rem) !important;
}

.leader-grid .leader-media[data-person="chris-fincke"] img,
.full-team-grid .leader-media[data-person="chris-fincke"] img {
  object-position: 43% 0% !important;
}

.leader-media[data-person="jason-clarke"] img {
  object-position: 53% 0%;
}

.leader-media[data-person="jason-clarke"]:hover img,
.leader-media[data-person="jason-clarke"]:focus-visible img {
  object-position: 53% 0%;
}

.leader-grid .leader-media[data-person="jason-clarke"] img,
.full-team-grid .leader-media[data-person="jason-clarke"] img {
  object-position: 53% 0% !important;
}

@media (min-width: 781px) {
  .leader-grid,
  .full-team-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }

  .leader-grid .leader-card,
  .full-team-grid .leader-card {
    justify-items: stretch !important;
    text-align: left !important;
  }

  .leader-grid .leader-card p:last-child,
  .full-team-grid .leader-card p:last-child {
    max-width: none !important;
  }
}

body[data-theme="presentation"] .theme-btn[data-theme="presentation"]::before {
  background: linear-gradient(135deg, #2e3328, #97a289);
}

/* Pipeline width refinement */
#funds .fund-grid {
  gap: 1rem;
}

#funds .fund-card--rich {
  gap: 0.32rem;
  grid-template-rows: auto 2.2rem 5.6rem auto 1fr;
}

#funds .fund-card-top {
  padding-bottom: 0.16rem;
}

#funds .fund-card--rich h3 {
  margin: 0.12rem 0 0.16rem;
  min-height: 2.2rem;
  max-height: 2.2rem;
  padding-top: 0.14rem;
  font-size: 0.98rem;
  line-height: 1.08;
  letter-spacing: -0.015em;
  white-space: normal;
  overflow: visible;
}

#funds .fund-thesis {
  margin: 0;
  min-height: 5.6rem;
  max-height: 5.6rem;
  line-height: 1.4;
}

#funds .fund-card--rich .x12-lockup__12 {
  top: -0.18em;
}

#funds .fund-highlight {
  margin-top: 0.46rem;
}

#funds .fund-meta-grid {
  margin-top: 0.12rem;
}

#fundGridExtra .fund-card--rich {
  grid-template-rows: auto auto auto auto auto !important;
}

#fundGridExtra .fund-card--rich h3 {
  margin: 0.12rem 0 0.86rem !important;
  min-height: 0 !important;
  max-height: none !important;
  padding-top: 0.14rem;
  white-space: normal !important;
  line-height: 1.08;
}

#fundGridExtra .fund-thesis {
  margin: 0 !important;
  min-height: 0 !important;
  max-height: none !important;
  display: block !important;
  overflow: visible !important;
  -webkit-line-clamp: initial !important;
  -webkit-box-orient: initial !important;
}

@media (max-width: 1024px) {
  #funds .fund-card--rich {
    grid-template-rows: auto auto auto auto auto !important;
    gap: 0.38rem !important;
  }

  #funds .fund-card--rich h3 {
    margin: 0.14rem 0 0.34rem !important;
    padding-top: 0.12rem !important;
    min-height: 0 !important;
    max-height: none !important;
    white-space: normal !important;
    line-height: 1.14 !important;
    overflow: visible !important;
  }

  #funds .fund-thesis {
    margin: 0 !important;
    min-height: 0 !important;
    max-height: none !important;
    line-height: 1.48 !important;
    overflow: visible !important;
  }

  #fundGridExtra .fund-card--rich h3 {
    margin: 0.12rem 0 0.86rem !important;
    min-height: 0 !important;
    padding-top: 0.14rem !important;
    line-height: 1.08 !important;
  }

  #fundGridExtra .fund-thesis {
    margin-top: 0 !important;
  }
}

@media (max-width: 780px) {
  .theme-switcher,
  .density-switcher {
    display: none;
  }

  .nav-wrap {
    gap: 0.55rem;
    padding: 0.85rem 0.9rem;
  }

  .brand {
    min-width: 0;
    flex: 0 1 auto;
  }

  .brand-mark {
    min-width: 0;
    min-height: 1.7rem;
    padding: 0.12rem 0.48rem;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    white-space: nowrap;
  }

  .hero-lockup {
    display: flex;
    align-items: flex-start;
    width: min(100%, 12.8rem);
    max-width: calc(100vw - 3rem);
    gap: 0.03rem;
    margin-bottom: 0.46rem;
    overflow: hidden;
  }

  .hero-logo--presentation {
    width: clamp(2.55rem, 8.5vw, 3rem);
    flex: 0 0 auto;
  }

  .hero-lockup__numeral {
    padding-top: 0.08rem;
    font-size: clamp(0.62rem, 2.5vw, 0.8rem);
    white-space: nowrap;
  }

  .hero-lockup__word {
    min-width: 0;
    padding-top: 0;
    font-size: clamp(1.02rem, 4.6vw, 1.34rem);
    letter-spacing: 0.015em;
    line-height: 0.98;
    white-space: nowrap;
  }

  .hero-content {
    padding: 1.4rem 0.45rem 1.1rem;
  }

  .profile-modal__dialog {
    width: min(34rem, calc(100vw - 0.8rem));
    max-height: calc(100vh - 0.8rem);
  }

  .profile-modal__content {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.75rem;
    padding: 0 0.7rem 0.75rem;
  }

  .profile-modal__media,
  .profile-modal__copy {
    width: 100%;
  }
}

@media (max-width: 780px) {
  .disclaimer-modal {
    padding: 0.45rem !important;
  }

  .disclaimer-panel {
    width: min(18.6rem, calc(100dvw - 2rem)) !important;
    max-width: min(18.6rem, calc(100dvw - 2rem)) !important;
    max-height: calc(100dvh - 0.9rem) !important;
    margin-inline: auto !important;
    padding: 0.72rem 0.56rem 0.72rem !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
    transform: none !important;
  }

  .disclaimer-panel h2 {
    font-size: 0.98rem !important;
    line-height: 1.12 !important;
  }

  .disclaimer-panel p,
  .disclaimer-panel li {
    font-size: 0.84rem !important;
    line-height: 1.36 !important;
    overflow-wrap: anywhere !important;
  }

  .disclaimer-actions {
    flex-direction: column !important;
  }

  .disclaimer-actions .btn {
    min-height: 2.75rem !important;
    touch-action: manipulation;
    width: 100%;
  }

  .hero-content {
    padding: 1.15rem 0.3rem 0.95rem 1rem !important;
    overflow: hidden !important;
  }

  .hero-content::before {
    display: block !important;
    content: "" !important;
    inset: 0.8rem auto 0.8rem 0.48rem !important;
    width: 1px !important;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.08)) !important;
  }

  .hero-lockup {
    display: block !important;
    width: auto !important;
    max-width: calc(100dvw - 4rem) !important;
    overflow: hidden !important;
  }

  .hero-logo--presentation {
    display: none !important;
  }

  .hero-lockup__numeral {
    display: none !important;
  }

  .hero-lockup__word {
    display: none !important;
  }

  .hero-lockup__mobile-wordmark {
    display: block !important;
    font-size: 1.18rem !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    letter-spacing: 0.06em !important;
    color: #ffffff !important;
    white-space: nowrap !important;
  }

  .profile-modal__dialog {
    width: calc(100dvw - 0.8rem) !important;
    max-height: calc(100dvh - 0.8rem) !important;
  }

  .profile-modal__content {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: 1fr !important;
    gap: 0.7rem !important;
  }

  .profile-modal__media,
  .profile-modal__copy {
    width: 100% !important;
  }
}


