/* ==========================================================================
   MAKO CAPITAL GROUP — V16 Stylesheet
   White-led, single-page scroll, modern editorial type
   v16 (5/20/26): Vanessa feedback round
     - Square edges throughout (no rounded corners on tiles, images, cards)
     - Larger section headers
     - Full-width hero with white text overlay
     - Darker About gray band
     - "What Sets Us Apart" Vista-style numbered rows
     - PROOF cards simplified to big letters + names (no circles, no descriptions)
     - Portfolio logos-only with click-through to internal sub-pages
     - Stewardship unified, logos-only, external links
     - News tiles square with Mako logo + headline only
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* --- Reset --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Palette — white-led with navy + light blue + warm gray accents */
  --navy:        #0B1F66;
  --navy-dark:   #07154A;
  --blue:        #2F62D8;
  --blue-soft:   #6B8FE0;
  --blue-pale:   #EEF3FC;
  --blue-mist:   #DDE6F7;
  --gray-50:     #FAFAFB;
  --gray-100:    #F4F5F8;
  --gray-200:    #E7E9EE;
  --gray-300:    #CFD3DC;
  --gray-500:    #8B91A1;
  --gray-700:    #4A5160;
  --gray-900:    #1A1F2E;
  --about-gray:  #DBE0EA;   /* darker gray band for About section */
  --white:       #FFFFFF;
  --ink:         #14172B;

  /* Typography */
  --font:        'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* Layout */
  --max-width:   1240px;
  --header-h:    110px;
  --radius:      0;
  --radius-lg:   0;
  --radius-pill: 999px;

  --shadow-sm:   0 1px 2px rgba(11, 31, 102, 0.05);
  --shadow:      0 6px 24px rgba(11, 31, 102, 0.08);
  --shadow-lg:   0 18px 50px rgba(11, 31, 102, 0.12);

  --ease:        cubic-bezier(0.22, 0.61, 0.36, 1);
  --t-fast:      0.2s var(--ease);
  --t-base:      0.35s var(--ease);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
  font-feature-settings: 'cv11', 'ss01', 'ss03';
  font-optical-sizing: auto;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--t-fast);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  color: var(--navy);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.015em;
}

h1 { font-size: clamp(2.0rem, 3.6vw, 3.0rem); font-weight: 800; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.6rem, 2.4vw, 2.2rem); letter-spacing: -0.015em; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  display: inline-block;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
}

.section-title {
  margin-bottom: 22px;
}

.section-lede {
  font-size: 1.15rem;
  color: var(--gray-700);
  margin-bottom: 0;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.005em;
  transition: var(--t-base);
  border: 1.5px solid transparent;
  white-space: nowrap;
  cursor: pointer;
}

.btn--primary {
  background: var(--navy);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--navy-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--gray-300);
}
.btn--ghost:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.btn--white {
  background: var(--white);
  color: var(--navy);
}
.btn--white:hover {
  background: var(--blue-pale);
  transform: translateY(-1px);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}
.btn--outline-white:hover {
  background: var(--white);
  color: var(--navy);
}

.btn--small {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.btn .arrow {
  transition: transform var(--t-fast);
}
.btn:hover .arrow { transform: translateX(4px); }

/* --- HEADER --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  transition: var(--t-base);
}

.header--scrolled {
  background: var(--white);
  border-bottom-color: var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  height: 100%;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  display: flex;
  align-items: center;
  height: 100%;
  flex-shrink: 0;
}
.header__logo img {
  height: 96px;
  width: auto;
  max-width: none;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lp-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  background: var(--gray-100);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.875rem;
  transition: var(--t-fast);
}
.lp-pill:hover {
  background: var(--navy);
  color: var(--white);
}

.menu-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px 10px 16px;
  border-radius: var(--radius-pill);
  background: var(--gray-100);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.875rem;
  transition: var(--t-fast);
}
.menu-btn:hover { background: var(--blue-pale); }

.menu-btn__icon {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 18px;
}
.menu-btn__icon span {
  display: block;
  height: 1.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--t-base);
}
.menu-btn--open .menu-btn__icon span:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}
.menu-btn--open .menu-btn__icon span:nth-child(2) {
  opacity: 0;
}
.menu-btn--open .menu-btn__icon span:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

/* --- DROPDOWN PANEL --- */
.menu-panel {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-lg);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity var(--t-base), transform var(--t-base), visibility var(--t-base);
}
.menu-panel--open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-panel__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px 28px 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px 28px;
}

.menu-group__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}

.menu-link {
  display: block;
  padding: 8px 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--navy);
  transition: var(--t-fast);
}
.menu-link:hover {
  color: var(--blue);
  padding-left: 6px;
}

/* --- FULL-BLEED HERO --- */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  color: var(--white);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  /* Darken so white text reads well across the image */
  background: linear-gradient(180deg,
    rgba(11, 21, 60, 0.45) 0%,
    rgba(11, 21, 60, 0.35) 45%,
    rgba(11, 21, 60, 0.60) 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
  width: 100%;
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: 80px;
}

.hero__statement {
  font-size: clamp(2.0rem, 3.4vw, 3.6rem);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--white);
  max-width: 920px;
  margin: 0;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}
.hero__statement .accent {
  font-weight: 700;
  color: var(--white);
}

.hero__scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
}
.hero__scroll-hint::after {
  content: '';
  width: 1.5px;
  height: 40px;
  background: rgba(255, 255, 255, 0.55);
}

/* --- ONE-LINER STRIP --- */
.tagline-strip {
  background: var(--navy);
  color: var(--white);
  padding: 64px 28px;
  text-align: center;
}
.tagline-strip__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.tagline-strip p {
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 500;
  line-height: 1.4;
  color: var(--white);
  margin: 0;
}

/* --- PHOTO DIVIDER --- */
.divider-photo {
  height: 360px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.divider-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,31,102,0.15), rgba(11,31,102,0.35));
}

/* --- SECTION FRAMEWORK --- */
.section {
  padding: 120px 0;
}

.section--tight { padding: 80px 0; }
.section--pale { background: var(--blue-pale); }
.section--mist { background: var(--blue-mist); }
.section--gray { background: var(--blue-pale); }   /* alternate white/light-blue only */
.section--navy { background: var(--navy); color: rgba(255,255,255,0.85); }
.section--navy h1, .section--navy h2, .section--navy h3, .section--navy h4 { color: var(--white); }

.section__header {
  text-align: left;
  margin-bottom: 64px;
}
.section__header--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section__header--center .section-lede { margin-left: auto; margin-right: auto; }

/* --- ABOUT / INLINE PHOTO BLOCK (re-usable) --- */
.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.about-grid--reverse { grid-template-columns: 1.2fr 0.8fr; }
.about-grid--reverse .about-copy { order: 2; }
.about-grid--reverse .about-photo { order: 1; }
.about-copy p {
  font-size: 1.12rem;
  margin-bottom: 18px;
}
.about-photo {
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
}
.about-photo--wide { aspect-ratio: 16/9; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

/* --- APPROACH teaser (landing page block linking to approach.html) --- */
.approach-teaser {
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
  padding: 24px 0;
}
.approach-teaser .section-title { margin-bottom: 24px; }
.approach-teaser .section-lede { margin-left: auto; margin-right: auto; }
.approach-teaser__cta { margin-top: 36px; }

/* --- WHAT SETS US APART — Vista-style numbered rows --- */
.value-rows {
  margin-top: 48px;
  border-top: 1px solid var(--gray-300);
}
.value-row {
  display: grid;
  grid-template-columns: 90px 1fr 1.4fr 40px;
  gap: 32px;
  align-items: center;
  padding: 34px 4px;
  border-bottom: 1px solid var(--gray-300);
  transition: var(--t-base);
  color: var(--gray-700);
}
.value-row:hover {
  background: rgba(47, 98, 216, 0.04);
  padding-left: 12px;
}
.value-row__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--navy);
  color: var(--white);
  font-size: 1.0rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.value-row__title {
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.value-row__desc {
  font-size: 1.02rem;
  color: var(--gray-700);
  line-height: 1.55;
  margin: 0;
}
.value-row__arrow {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: var(--navy);
  font-size: 1.4rem;
  transition: transform var(--t-fast);
}
.value-row:hover .value-row__arrow {
  transform: translateX(6px);
  color: var(--blue);
}

/* --- TEAM SECTION (landing page) — trio photo only, no individual tiles --- */
.team-trio {
  margin-top: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}
.team-trio img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- TEAM TILES (used on team.html) — photo + caption below (no overlay) --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
}
.team-tile {
  display: block;
  position: relative;
  cursor: pointer;
  transition: var(--t-base);
  color: inherit;
  text-decoration: none;
}
/* Constrain absolute children (e.g., LinkedIn icon) to the photo footprint */
.team-tile__linkedin { z-index: 3; }
.team-tile:hover {
  transform: translateY(-3px);
}
.team-tile__photo {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #F4F4EE;
  border: 1px solid var(--gray-200);
}
.team-tile__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s var(--ease);
}
.team-tile:hover .team-tile__photo img {
  transform: scale(1.04);
}
.team-tile__nameplate {
  padding: 16px 4px 0;
  color: var(--navy);
}
.team-tile__nameplate h3 {
  color: var(--navy);
  font-size: 1.15rem;
  margin: 0 0 2px;
  line-height: 1.25;
  font-weight: 700;
}
.team-tile__nameplate-role {
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}
.team-tile__nameplate-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gray-500);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(-2px);
  transition: opacity var(--t-base), transform var(--t-base);
}
.team-tile:hover .team-tile__nameplate-cta {
  opacity: 1;
  transform: translateY(0);
  color: var(--blue);
}

/* LinkedIn icon — always visible top-right, opens in new tab */
.team-tile__linkedin {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.92);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: var(--t-fast);
  z-index: 5;
  box-shadow: 0 2px 6px rgba(11, 31, 102, 0.20);
}
.team-tile__linkedin:hover {
  background: var(--blue);
  color: var(--white);
  transform: scale(1.08);
}
.team-tile__linkedin svg { width: 18px; height: 18px; fill: currentColor; }

/* --- CENTERED INLINE CTA (e.g., "Meet the full team") --- */
.section__cta {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

/* --- TEAM PAGE HERO (team.html) --- */
.page-hero {
  padding: calc(var(--header-h) + 80px) 0 80px;
  background: var(--blue-pale);
  text-align: left;
}
.page-hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}
.page-hero__inner--split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.page-hero p { font-size: 1.18rem; margin-top: 18px; }
.page-hero__photo {
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 16/10;
}
.page-hero__photo img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) {
  .page-hero__inner--split { grid-template-columns: 1fr; gap: 40px; }
  .page-hero__photo { aspect-ratio: 16/9; }
}
.team-grid--six { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1024px) { .team-grid--six { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .team-grid--six { grid-template-columns: 1fr; } .team-tile { aspect-ratio: 4/3; } }

/* --- BIO MODAL --- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(7, 21, 74, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: var(--t-base);
}
.modal-backdrop--open {
  opacity: 1;
  visibility: visible;
}
.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%);
  width: min(960px, calc(100vw - 32px));
  max-height: calc(100vh - 80px);
  background: var(--white);
  z-index: 201;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: var(--t-base);
  box-shadow: var(--shadow-lg);
}
.modal--open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%);
}
.modal__inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  max-height: calc(100vh - 80px);
}
.modal__photo {
  background-size: cover;
  background-position: center;
  min-height: 100%;
}
.modal__body {
  padding: 48px 48px 44px;
  overflow-y: auto;
}
.modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--navy);
  transition: var(--t-fast);
}
.modal__close:hover { background: var(--navy); color: var(--white); }
.modal__role {
  color: var(--blue);
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}
.modal h2 {
  margin-bottom: 20px;
  font-size: 1.85rem;
}
.modal p {
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 14px;
}

/* --- PROOF — large letters, no circles, no descriptions --- */
.proof-strip {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.proof-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 44px 24px 36px;
  text-align: center;
  transition: var(--t-base);
}
.proof-card:hover {
  border-color: var(--blue-soft);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  background: var(--blue-pale);
}
.proof-card__letter {
  display: block;
  font-size: 4.4rem;
  font-weight: 800;
  line-height: 1;
  color: var(--navy);
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}
.proof-card h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
  line-height: 1.3;
}
/* Description hidden by default — revealed on hover */
.proof-card p {
  font-size: 0.92rem;
  color: var(--gray-700);
  line-height: 1.55;
  margin: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease), opacity 0.3s var(--ease), margin-top 0.35s var(--ease);
}
.proof-card:hover p {
  max-height: 240px;
  opacity: 1;
  margin-top: 14px;
}

/* --- SECTORS — borderless, static, line separators, larger icons --- */
.sectors-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 32px;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.sector-card {
  background: transparent;
  padding: 56px 36px;
  text-align: left;
  border-right: 1px solid var(--gray-200);
}
.sector-card:last-child { border-right: none; }
.sector-card__icon {
  width: 80px;
  height: 80px;
  margin: 0 0 24px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  color: var(--navy);
}
.sector-card__icon svg {
  width: 64px;
  height: 64px;
  stroke-width: 1.4;
}
.sector-card h3 {
  margin-bottom: 14px;
  font-size: 1.35rem;
  color: var(--navy);
}
.sector-card p {
  font-size: 1rem;
  color: var(--gray-700);
  margin: 0;
  line-height: 1.55;
}
@media (max-width: 1024px) {
  .sector-card { border-right: none; border-bottom: 1px solid var(--gray-200); }
  .sector-card:last-child { border-bottom: none; }
}

/* --- INVESTMENT CRITERIA — 3 columns --- */
.criteria-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}
.criteria-card {
  background: var(--white);
  padding: 44px 36px;
  border: 1px solid var(--gray-200);
  position: relative;
  transition: var(--t-base);
}
.criteria-card:hover {
  border-color: var(--blue-soft);
  box-shadow: var(--shadow);
}
.criteria-card h3 {
  margin-bottom: 24px;
  margin-top: 4px;
  font-size: 1.45rem;
}
.criteria-card ul {
  list-style: none;
}
.criteria-card li {
  padding: 11px 0 11px 26px;
  position: relative;
  font-size: 0.98rem;
  color: var(--gray-700);
  border-top: 1px solid var(--gray-100);
}
.criteria-card li:first-child { border-top: none; }
.criteria-card li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 19px;
  width: 6px;
  height: 6px;
  background: var(--blue);
}
.equity-callout {
  text-align: center;
  padding: 36px 16px;
}
.equity-callout__amount {
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin: 12px 0 6px;
  white-space: nowrap;
}
.equity-callout__label {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.45;
}

/* --- INVESTMENTS — full lockup card, no border, industry + year caption --- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  margin: 32px auto 0;
  max-width: 820px;
}
.portfolio-logo-card {
  display: flex;
  flex-direction: column;
  background: transparent;
  transition: var(--t-base);
  overflow: hidden;
}
.portfolio-logo-card:hover {
  transform: translateY(-4px);
}
.portfolio-logo-card:hover .portfolio-logo-card__lockup {
  box-shadow: var(--shadow-lg);
}
.portfolio-logo-card__lockup {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  transition: var(--t-base);
}
.portfolio-logo-card__lockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.portfolio-logo-card__lockup--green,
.portfolio-logo-card__lockup--white { background: var(--white); border: 1px solid var(--gray-200); }
.portfolio-logo-card__lockup--green img,
.portfolio-logo-card__lockup--white img { object-fit: contain; padding: 36px 48px; }
.portfolio-logo-card__caption {
  padding: 22px 4px 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}
.portfolio-logo-card__tag {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}
.portfolio-logo-card__year {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gray-500);
}

/* --- STEWARDSHIP — large borderless logos, external links --- */
.steward-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 72px 48px;
  margin-top: 48px;
  align-items: center;
  justify-items: center;
}
.steward-logo {
  grid-column: span 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  width: 100%;
  min-height: 220px;
  padding: 8px;
  transition: var(--t-base);
}
.steward-logo:nth-child(7) { grid-column: 2 / span 2; }
.steward-logo:nth-child(8) { grid-column: 4 / span 2; }
.steward-logo:hover {
  transform: translateY(-3px);
}
.steward-logo:hover img {
  filter: brightness(0.85);
}
.steward-logo img {
  max-height: 220px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: filter var(--t-base);
}
/* SEO + Comp Sci High: slightly smaller per Nick's earlier note */
.steward-logo[aria-label="Sponsors for Educational Opportunity"] img,
.steward-logo[aria-label="Comp Sci High"] img { max-height: 170px; }

/* --- NEWS — square tiles, Mako logo + headline only --- */
.news-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.news-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: var(--t-base);
  text-decoration: none;
  color: inherit;
}
.news-card:hover {
  border-color: var(--blue-soft);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.news-card__logo {
  background: var(--gray-50);
  padding: 36px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--gray-200);
}
.news-card__logo img {
  height: 64px;
  width: auto;
}
.news-card__body {
  padding: 30px 32px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
}
.news-card__date {
  font-size: 0.8rem;
  color: var(--gray-500);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}
.news-card__headline {
  font-size: 1.25rem;
  line-height: 1.35;
  color: var(--navy);
  font-weight: 600;
}
.news-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--blue);
  margin-top: 8px;
}
.news-card:hover .news-card__link { color: var(--navy); }

/* --- CONTACT --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.contact-info p {
  font-size: 1.1rem;
  margin-bottom: 24px;
}
.contact-list {
  list-style: none;
  margin-top: 32px;
}
.contact-list li {
  padding: 16px 0;
  border-top: 1px solid var(--gray-200);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.contact-list li:last-child { border-bottom: 1px solid var(--gray-200); }
.contact-list__label {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-500);
  font-weight: 600;
}
.contact-list__value {
  font-weight: 600;
  color: var(--navy);
}
.contact-list__value:hover { color: var(--blue); }

.contact-card {
  background: var(--navy);
  color: var(--white);
  padding: 56px 48px;
}
.contact-card h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 18px;
}
.contact-card p {
  color: rgba(255,255,255,0.78);
  margin-bottom: 24px;
}
.contact-card .btn--primary {
  background: var(--white);
  color: var(--navy);
}
.contact-card .btn--primary:hover {
  background: var(--blue-pale);
}

/* --- FOOTER --- */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__logo img {
  height: 48px;
  margin-bottom: 16px;
}
.footer__tag {
  color: rgba(255,255,255,0.6);
  font-size: 0.92rem;
  line-height: 1.55;
}
.footer__col h5 {
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer__col a {
  display: block;
  padding: 6px 0;
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
  transition: var(--t-fast);
}
.footer__col a:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.footer__bottom a {
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--t-fast);
}
.footer__bottom a:hover { color: var(--white); }

/* Menu panel LinkedIn icon variant (icon only, no text) */
.menu-link--icon {
  display: inline-flex;
  align-items: center;
  padding: 8px 0;
}
.menu-link--icon svg {
  width: 22px;
  height: 22px;
  fill: var(--navy);
  transition: fill var(--t-fast);
}
.menu-link--icon:hover svg { fill: var(--blue); }

/* Standalone LinkedIn link helper (used on bio sub-pages) */
.linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color var(--t-fast);
}
.linkedin-link svg {
  width: 24px;
  height: 24px;
  fill: var(--blue);
  transition: fill var(--t-fast);
}
.linkedin-link:hover { color: var(--navy); }
.linkedin-link:hover svg { fill: var(--navy); }

/* Disclaimer block above the bottom row */
.footer__disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 36px 0 28px;
  margin-bottom: 24px;
}
.footer__disclaimer-title {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer__disclaimer p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
  line-height: 1.6;
  margin-bottom: 10px;
}
.footer__disclaimer p:last-child { margin-bottom: 0; }

/* LinkedIn icon link inside Connect column */
.footer__col a.footer__social-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
}
.footer__col a.footer__social-icon svg {
  width: 22px;
  height: 22px;
  fill: rgba(255, 255, 255, 0.65);
  transition: fill var(--t-fast);
}
.footer__col a.footer__social-icon:hover svg { fill: var(--white); }

/* --- BIO SUB-PAGE LAYOUT (one section: photo left, copy right) --- */
.bio-hero {
  padding-top: calc(var(--header-h) + 36px);
  padding-bottom: 80px;
  background: var(--blue-pale);
}
.bio-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 28px;
  transition: color var(--t-fast);
}
.bio-hero__back:hover { color: var(--navy); }
.bio-hero__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: stretch;
}
.bio-photo {
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 0;
}
.bio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  aspect-ratio: 4 / 5;
}
.bio-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 0;
}
.bio-name {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 8px 0 16px;
  flex-wrap: wrap;
}
.bio-name h1 { margin: 0; }
.bio-name .linkedin-link {
  margin: 0;
  padding-top: 6px;
}
.bio-name .linkedin-link svg {
  width: 22px;
  height: 22px;
}
.bio-body {
  margin-top: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--gray-300);
}
.bio-body p {
  margin-bottom: 12px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-700);
}
.bio-body p:last-child { margin-bottom: 0; }
@media (max-width: 900px) {
  .bio-hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .bio-photo img { aspect-ratio: 16/10; }
  .bio-content { justify-content: flex-start; }
}

/* --- SUB-PAGE LAYOUT (portfolio sub-pages, what-sets-us-apart sub-page) --- */
.subpage-hero {
  padding: calc(var(--header-h) + 100px) 0 80px;
  background: var(--blue-pale);
}
.subpage-hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.subpage-hero__back {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 28px;
  width: fit-content;
}
.subpage-hero__back:hover { color: var(--navy); }
.subpage-hero__tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.subpage-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 18px;
}
.subpage-hero__logo {
  background: var(--white);
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/3;
  border: 1px solid var(--gray-200);
}
.subpage-hero__logo img {
  max-height: 180px;
  max-width: 80%;
  width: auto;
  object-fit: contain;
}
.subpage-content {
  padding: 96px 0;
}
.subpage-content__inner {
  max-width: 820px;
  margin: 0 auto;
}
.subpage-content p {
  font-size: 1.12rem;
  margin-bottom: 22px;
}
.subpage-content h2 {
  font-size: 1.8rem;
  margin: 40px 0 18px;
}
.subpage-content__cta {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
}
.press-release__about-head {
  font-size: 1.05rem !important;
  color: var(--navy);
  font-weight: 700;
  margin: 40px 0 12px !important;
  letter-spacing: -0.005em;
}
.subpage-content__subhead {
  font-size: 1.02rem;
  color: var(--blue);
  font-weight: 700;
  letter-spacing: -0.005em;
  margin: 32px 0 14px;
}
.about-copy p strong { color: var(--navy); }

/* --- MISSION BLOCK (bottom of Values subpage) --- */
.mission-block {
  margin-top: 48px;
  padding: 36px 40px;
  background: var(--white);
  border-left: 4px solid var(--blue);
}
.mission-block__eyebrow {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 14px;
}
.mission-block__statement {
  font-size: 1.18rem !important;
  line-height: 1.55 !important;
  color: var(--navy) !important;
  font-weight: 500;
  margin: 0 !important;
  letter-spacing: -0.005em;
}
@media (max-width: 640px) {
  .mission-block { padding: 28px 24px; }
  .mission-block__statement { font-size: 1.05rem !important; }
}

/* --- VALUES LIST (05 Our Values subpage section) --- */
.values-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.values-list__item {
  padding: 22px 0;
  border-top: 1px solid var(--gray-200);
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 28px;
  align-items: start;
}
.values-list__item:first-child {
  border-top: 1px solid var(--gray-200);
}
.values-list__name {
  font-size: 1.08rem;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -0.005em;
  padding-top: 2px;
}
.values-list__desc {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.6;
  margin: 0 !important;
}
@media (max-width: 640px) {
  .values-list__item {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 18px 0;
  }
}

/* --- REVEAL ANIMATION --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal--in {
  opacity: 1;
  transform: translateY(0);
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-strip { grid-template-columns: repeat(2, 1fr); }
  .sectors-row, .criteria-row { grid-template-columns: 1fr; }
  .portfolio-grid, .news-row { grid-template-columns: 1fr; }
  .steward-grid { grid-template-columns: repeat(2, 1fr); }
  .steward-logo,
  .steward-logo:nth-child(7),
  .steward-logo:nth-child(8) { grid-column: auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .menu-panel__inner { grid-template-columns: repeat(2, 1fr); }
  .modal__inner { grid-template-columns: 1fr; }
  .modal__photo { aspect-ratio: 16/10; min-height: auto; }
  .subpage-hero .container { grid-template-columns: 1fr; gap: 40px; }
  .value-row { grid-template-columns: 60px 1fr 32px; gap: 20px; }
  .value-row__desc { grid-column: 2 / 4; }
}

@media (max-width: 640px) {
  :root { --header-h: 72px; }
  .header__inner { padding: 0 16px; }
  .header__logo img { height: 52px; max-width: none; }
  .header__actions { gap: 8px; }
  .lp-pill { padding: 7px 12px; font-size: 0.78rem; }
  .menu-btn { padding: 7px 10px; font-size: 0.78rem; }
  .menu-btn__icon { width: 18px; }
  body { font-size: 16px; }
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .team-grid, .proof-strip, .steward-grid { grid-template-columns: 1fr; }
  .steward-logo,
  .steward-logo:nth-child(7),
  .steward-logo:nth-child(8) { grid-column: auto; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 8px; align-items: flex-start; }
  .menu-panel__inner { grid-template-columns: 1fr; gap: 24px; padding: 28px 20px 36px; }
  .modal__body { padding: 32px 28px; }
  .contact-list li { flex-direction: column; align-items: flex-start; gap: 4px; }
  .hero { padding-top: calc(var(--header-h) + 32px); }
  .hero__statement { font-size: 1.7rem; line-height: 1.25; }
  .section-title { font-size: 1.55rem; }
  .section-lede { font-size: 1rem; }
  .value-row { grid-template-columns: 48px 1fr 24px; gap: 14px; padding: 24px 4px; }
  .value-row__title { font-size: 1.1rem; }
  .value-row__desc { font-size: 0.92rem; grid-column: 1 / 4; }
  .value-row__num { width: 44px; height: 44px; font-size: 0.85rem; }
  .proof-card__letter { font-size: 3.2rem; }
  .news-card__logo img { height: 44px; }
  .news-card__headline { font-size: 1.05rem; }
  .page-hero, .subpage-hero, .bio-hero { padding-top: calc(var(--header-h) + 28px); }
  .page-hero h1, .subpage-hero h1, .bio-hero h1 { font-size: 1.7rem; }
  .subpage-content { padding: 64px 0; }
  .subpage-content h2 { font-size: 1.45rem; }
  .subpage-content p { font-size: 1rem; }
  .bio-name h1 { font-size: 1.6rem; }
  .bio-body p { font-size: 0.95rem; }
  .portfolio-logo-card__lockup { aspect-ratio: 4/3; }
  .contact-card { padding: 28px 22px; }
  .approach-teaser h2 { font-size: 1.55rem; }
  .footer__tag { font-size: 0.92rem; }
}
@media (max-width: 380px) {
  .header__logo img { height: 46px; }
  .lp-pill { padding: 6px 10px; font-size: 0.72rem; }
  .menu-btn span:not(.menu-btn__icon):not(.menu-btn__icon span) { font-size: 0.72rem; }
}
