/* =============================================================
   726 CAPITAL — Design System
   Editorial Luxury · regal, warm, restrained
   Type: Fraunces (display serif) + Plus Jakarta Sans (body)
   ============================================================= */

/* ---------- Tokens ---------- */
:root {
  /* Brand */
  --purple-726: #7030A0;
  --purple-deep: #331456;
  --teal-petrol: #193035;
  --ivory: #F5F0E8;
  --charcoal: #242728;
  --black: #000000;

  /* Derived surfaces */
  --ivory-bright: #FBF8F2;
  --ivory-panel: #EFE8DC;
  --ivory-line: #E2D8C8;

  /* Ink */
  --ink: #242728;
  --ink-soft: #4a4d4f;
  --ink-mute: #6f7173;

  /* Accents */
  --lilac: #B488DA;
  --lilac-soft: #C9A8E8;
  --gold: #C8A24A;

  /* Hairlines on dark */
  --line-dark: rgba(245, 240, 232, 0.14);
  --line-dark-soft: rgba(245, 240, 232, 0.08);

  /* Gradients */
  --grad-purple: linear-gradient(135deg, #8a3fc0 0%, #7030A0 45%, #331456 100%);
  --grad-dark: linear-gradient(160deg, #2b2230 0%, #242728 55%, #1a1118 100%);
  --grad-deep: linear-gradient(155deg, #3a1a5e 0%, #2a1140 50%, #1a0e26 100%);

  /* Motion */
  --ease-lux: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);

  /* Layout */
  --maxw: 1200px;
  --maxw-narrow: 880px;
  --pad-x: clamp(1.25rem, 4vw, 3rem);

  /* Radii */
  --r-lg: 28px;
  --r-md: 20px;
  --r-sm: 14px;

  /* Shadows — diffused, never harsh */
  --shadow-soft: 0 1px 2px rgba(36, 39, 40, 0.04), 0 18px 40px -24px rgba(36, 39, 40, 0.18);
  --shadow-lift: 0 2px 6px rgba(36, 39, 40, 0.05), 0 40px 80px -40px rgba(51, 20, 86, 0.28);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
body {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  background-color: var(--ivory);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='paper'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0.42 0 0 0 0 0.34 0 0 0 0 0.26 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23paper)'/%3E%3C/svg%3E");
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* Film grain — fixed, pointer-events none (perf-safe) */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: "Sorts Mill Goudy", Georgia, serif;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.display {
  font-size: clamp(2.6rem, 6.4vw, 5.4rem);
  font-optical-sizing: auto;
  font-weight: 400;
}
h2.section-title { font-size: clamp(2rem, 4.4vw, 3.4rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.85rem); }
.lede {
  font-size: clamp(1.1rem, 1.9vw, 1.4rem);
  line-height: 1.5;
  color: var(--ink-soft);
  font-weight: 400;
}
p { color: var(--ink-soft); }
em { font-style: italic; }
.serif-italic { font-family: "Sorts Mill Goudy", serif; font-style: italic; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-x); }
.container--narrow { max-width: var(--maxw-narrow); }
section { padding: clamp(4.5rem, 9vw, 8.5rem) 0; position: relative; }
.section--tight { padding: clamp(3rem, 6vw, 5rem) 0; }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--purple-726);
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(112, 48, 160, 0.07);
  border: 1px solid rgba(112, 48, 160, 0.16);
  margin-bottom: 1.4rem;
}
.eyebrow::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--purple-726);
}
.eyebrow--light { color: var(--lilac-soft); background: rgba(180, 136, 218, 0.1); border-color: rgba(180, 136, 218, 0.2); }
.eyebrow--light::before { background: var(--lilac-soft); }

/* ---------- Brand wordmark ---------- */
.brand { display: inline-flex; align-items: center; gap: 10px; line-height: 1; }
.brand-726 {
  font-family: "Sorts Mill Goudy", serif;
  font-weight: 600;
  font-size: 1.55rem;
  letter-spacing: -0.02em;
  background: var(--grad-purple);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand-divider { width: 1px; height: 20px; background: var(--ivory-line); }
.brand-cap {
  font-family: "Sorts Mill Goudy", serif;
  font-weight: 400;
  font-size: 0.92rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding-left: 2px;
}
.brand--light .brand-726 { background: linear-gradient(135deg, #d9b8f5 0%, #b488da 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.brand--light .brand-cap { color: rgba(245, 240, 232, 0.82); }
.brand--light .brand-divider { background: var(--line-dark); }
.brand--lg .brand-726 { font-size: 2.4rem; }
.brand--lg .brand-cap { font-size: 1.25rem; }
.brand--lg .brand-divider { height: 30px; }

/* ---------- Navigation (Fluid Island) ---------- */
.nav-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 18px var(--pad-x);
  transition: padding 0.4s var(--ease-lux);
}
.nav {
  width: 100%;
  max-width: var(--maxw);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 12px 14px 12px 22px;
  border-radius: 999px;
  background: rgba(251, 248, 242, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(36, 39, 40, 0.07);
  box-shadow: 0 1px 1px rgba(255, 255, 255, 0.5) inset, 0 10px 30px -18px rgba(36, 39, 40, 0.25);
  transition: box-shadow 0.5s var(--ease-lux), background 0.5s var(--ease-lux);
}
.nav-wrap.scrolled .nav {
  background: rgba(251, 248, 242, 0.92);
  box-shadow: 0 1px 1px rgba(255, 255, 255, 0.6) inset, 0 16px 40px -20px rgba(36, 39, 40, 0.32);
}
.nav-links { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.nav-link {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 8px 14px;
  border-radius: 999px;
  transition: color 0.3s var(--ease-lux), background 0.3s var(--ease-lux);
}
.nav-link:hover { color: var(--ink); background: rgba(112, 48, 160, 0.06); }
.nav-link.active { color: var(--purple-726); }
.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  padding: 13px 16px 13px 22px;
  border-radius: 999px;
  transition: transform 0.4s var(--ease-lux), background 0.4s var(--ease-lux), color 0.4s var(--ease-lux), box-shadow 0.4s var(--ease-lux), border-color 0.4s var(--ease-lux);
  white-space: nowrap;
}
.btn:active { transform: scale(0.975); }
.btn-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 999px;
  transition: transform 0.4s var(--ease-lux), background 0.4s var(--ease-lux);
}
.btn-ico svg { width: 13px; height: 13px; }
.btn:hover .btn-ico { transform: translate(3px, -1px) scale(1.05); }

.btn--primary { background: var(--grad-purple); color: var(--ivory-bright); box-shadow: var(--shadow-soft); }
.btn--primary .btn-ico { background: rgba(255, 255, 255, 0.16); }
.btn--primary:hover { box-shadow: var(--shadow-lift); transform: translateY(-1px); }
.btn--ghost { background: rgba(36, 39, 40, 0.04); color: var(--ink); border: 1px solid rgba(36, 39, 40, 0.1); padding: 12px 20px; }
.btn--ghost:hover { background: rgba(36, 39, 40, 0.07); border-color: rgba(36, 39, 40, 0.18); }
.btn--ghost .btn-ico { background: rgba(36, 39, 40, 0.07); }
.btn--light { background: var(--ivory-bright); color: var(--ink); }
.btn--light .btn-ico { background: rgba(112, 48, 160, 0.12); color: var(--purple-726); }
.btn--light:hover { transform: translateY(-1px); box-shadow: 0 30px 60px -30px rgba(0,0,0,0.5); }
.btn--outline-light { background: rgba(245, 240, 232, 0.04); color: var(--ivory); border: 1px solid var(--line-dark); padding: 12px 20px; }
.btn--outline-light:hover { background: rgba(245, 240, 232, 0.1); border-color: rgba(245, 240, 232, 0.3); }
.btn-sm { font-size: 13px; padding: 10px 14px 10px 18px; }
.btn-sm .btn-ico { width: 24px; height: 24px; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 600; font-size: 14px; color: var(--purple-726);
  transition: gap 0.4s var(--ease-lux);
}
.link-arrow svg { width: 14px; height: 14px; transition: transform 0.4s var(--ease-lux); }
.link-arrow:hover { gap: 11px; }
.link-arrow:hover svg { transform: translateX(2px); }

/* ---------- Double-Bezel Card ---------- */
.bezel {
  background: rgba(36, 39, 40, 0.03);
  border: 1px solid rgba(36, 39, 40, 0.06);
  border-radius: var(--r-lg);
  padding: 7px;
  transition: transform 0.6s var(--ease-lux), box-shadow 0.6s var(--ease-lux);
}
.bezel-core {
  background: var(--ivory-bright);
  border-radius: calc(var(--r-lg) - 7px);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.6);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  height: 100%;
}
.bezel:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.bezel--static:hover { transform: none; box-shadow: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92dvh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 60px;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 78% 12%, rgba(112, 48, 160, 0.13) 0%, rgba(112, 48, 160, 0) 55%),
    radial-gradient(90% 80% at 10% 90%, rgba(25, 48, 53, 0.1) 0%, rgba(25, 48, 53, 0) 50%),
    var(--ivory);
}
.hero-inner { max-width: 940px; }
.hero h1 { margin-bottom: 1.6rem; }
.hero .lede { max-width: 640px; margin-bottom: 2.4rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-mark {
  position: absolute;
  right: clamp(-120px, -4vw, -40px);
  top: 50%;
  transform: translateY(-50%);
  font-family: "Sorts Mill Goudy", serif;
  font-weight: 600;
  font-size: clamp(20rem, 42vw, 46rem);
  line-height: 0.8;
  letter-spacing: -0.04em;
  background: linear-gradient(160deg, rgba(112, 48, 160, 0.09) 0%, rgba(51, 20, 86, 0.04) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.hero-inner { position: relative; z-index: 1; }

/* ---------- Section header block ---------- */
.section-head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .lede { margin-top: 1.2rem; }

/* ---------- Dark sections ---------- */
.dark {
  background: var(--grad-dark);
  color: var(--ivory);
}
.dark h1, .dark h2, .dark h3, .dark h4 { color: var(--ivory); }
.dark p, .dark .lede { color: rgba(245, 240, 232, 0.72); }
.deep { background: var(--grad-deep); color: var(--ivory); }
.deep h1, .deep h2, .deep h3 { color: var(--ivory); }
.deep p, .deep .lede { color: rgba(245, 240, 232, 0.74); }
.dark .bezel, .deep .bezel { background: rgba(245, 240, 232, 0.04); border-color: var(--line-dark-soft); }
.dark .bezel-core, .deep .bezel-core { background: rgba(245, 240, 232, 0.03); box-shadow: inset 0 1px 1px rgba(255,255,255,0.06); }

/* ---------- Pedigree strip ---------- */
.pedigree { padding: clamp(2.5rem, 5vw, 3.5rem) 0; border-top: 1px solid var(--ivory-line); border-bottom: 1px solid var(--ivory-line); }
.pedigree-label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--ink-mute); text-align: center; margin-bottom: 1.8rem; }
.pedigree-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: clamp(1.4rem, 4vw, 3.2rem); }
.pedigree-row span {
  font-family: "Sorts Mill Goudy", serif;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  font-weight: 500;
  color: var(--ink);
  opacity: 0.62;
  letter-spacing: 0.01em;
  transition: opacity 0.4s var(--ease-lux);
}
.pedigree-row span:hover { opacity: 1; }

/* ---------- Generic grids ---------- */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Value cards ---------- */
.value-card .v-num { font-family: "Sorts Mill Goudy", serif; font-size: 0.95rem; color: var(--purple-726); letter-spacing: 0.1em; margin-bottom: 1rem; display: block; }
.value-card h3 { margin-bottom: 0.7rem; }
.value-card p { font-size: 0.97rem; }

/* ---------- Sector cards ---------- */
.sector-card { position: relative; overflow: hidden; }
.sector-card .bezel-core { border: 1px solid rgba(25, 48, 53, 0.14); position: relative; }
.sector-tag { font-family: "Sorts Mill Goudy", serif; font-size: 2.6rem; color: rgba(112, 48, 160, 0.16); position: absolute; top: 1.2rem; right: 1.6rem; line-height: 1; }
.sector-card .eyebrow { margin-bottom: 1rem; }
.sector-card h3 { margin-bottom: 0.8rem; max-width: 80%; }
.sector-card .alloc { font-size: 13px; font-weight: 600; color: var(--teal-petrol); margin-top: 1.4rem; display: inline-flex; align-items: center; gap: 8px; }
.sector-card .alloc::before { content: ""; width: 26px; height: 1px; background: var(--teal-petrol); opacity: 0.5; }
.sector-list { margin-top: 1.2rem; display: flex; flex-wrap: wrap; gap: 8px; }
.sector-list li { font-size: 12.5px; padding: 5px 12px; border-radius: 999px; background: rgba(25, 48, 53, 0.06); color: var(--teal-petrol); border: 1px solid rgba(25,48,53,0.1); }

/* ---------- Stat / numbers ---------- */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-dark-soft); border: 1px solid var(--line-dark-soft); border-radius: var(--r-md); overflow: hidden; }
.stat { padding: clamp(1.6rem, 3vw, 2.4rem); background: rgba(245, 240, 232, 0.02); }
.stat .num { font-family: "Sorts Mill Goudy", serif; font-size: clamp(1.9rem, 2.9vw, 2.4rem); color: var(--ivory); line-height: 1; margin-bottom: 0.5rem; white-space: nowrap; }
.stat .num span { color: inherit; }
.stat .lbl { font-size: 13px; color: rgba(245, 240, 232, 0.6); letter-spacing: 0.02em; }

/* ---------- How we partner / steps ---------- */
.step-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step .s-num { font-family: "Sorts Mill Goudy", serif; font-size: 1.1rem; color: var(--purple-726); display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(112,48,160,0.2); background: rgba(112,48,160,0.05); margin-bottom: 1.3rem; }
.step h3 { font-size: 1.3rem; margin-bottom: 0.6rem; }
.step p { font-size: 0.97rem; }

/* ---------- Split (two-column feature) ---------- */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split--reverse .split-media { order: -1; }
.story-card {
  background: var(--grad-deep);
  border-radius: var(--r-lg);
  padding: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.story-card .big726 { font-family: "Sorts Mill Goudy", serif; font-size: clamp(6rem, 16vw, 11rem); line-height: 0.82; background: linear-gradient(135deg,#d9b8f5,#9a5fd0); -webkit-background-clip: text; background-clip: text; color: transparent; letter-spacing: -0.03em; }
.story-card .big726-sub { color: rgba(245,240,232,0.7); font-size: 1.05rem; margin-top: 1rem; max-width: 360px; }

/* ---------- Pull quote ---------- */
.pullquote { text-align: center; max-width: 880px; margin: 0 auto; }
.pullquote blockquote { font-family: "Sorts Mill Goudy", serif; font-style: italic; font-size: clamp(1.6rem, 3.6vw, 2.7rem); line-height: 1.25; color: var(--ink); letter-spacing: -0.01em; }
.dark .pullquote blockquote, .deep .pullquote blockquote { color: var(--ivory); }
.pullquote cite { display: block; margin-top: 1.6rem; font-style: normal; font-size: 14px; letter-spacing: 0.05em; color: var(--ink-mute); text-transform: uppercase; }
.deep .pullquote cite { color: rgba(245,240,232,0.6); }

/* ---------- Team grid ---------- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.team-grid--core { grid-template-columns: repeat(4, 1fr); }
.member { text-align: left; width: 100%; display: block; }
.member-photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--r-md);
  background: linear-gradient(155deg, var(--ivory-panel), var(--ivory-bright));
  border: 1px solid var(--ivory-line);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.6s var(--ease-lux), box-shadow 0.6s var(--ease-lux);
}
.member-photo .monogram { font-family: "Sorts Mill Goudy", serif; font-size: clamp(2.4rem, 5vw, 3.4rem); background: var(--grad-purple); -webkit-background-clip: text; background-clip: text; color: transparent; }
.member-photo::after { content: "View bio"; position: absolute; bottom: 0; left: 0; right: 0; padding: 0.7rem; font-size: 12px; font-weight: 600; letter-spacing: 0.04em; color: var(--ivory-bright); background: linear-gradient(transparent, rgba(51,20,86,0.85)); opacity: 0; transform: translateY(8px); transition: opacity 0.4s var(--ease-lux), transform 0.4s var(--ease-lux); }
.member:hover .member-photo { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.member:hover .member-photo::after { opacity: 1; transform: translateY(0); }
.member-name { font-family: "Sorts Mill Goudy", serif; font-size: 1.15rem; color: var(--ink); margin-bottom: 0.2rem; }
.member-role { font-size: 13px; color: var(--purple-726); font-weight: 600; }
.member-org { font-size: 12.5px; color: var(--ink-mute); margin-top: 0.3rem; }
.team-sub-title { font-family: "Sorts Mill Goudy", serif; font-size: 1.3rem; margin: 3.5rem 0 1.6rem; padding-top: 2rem; border-top: 1px solid var(--ivory-line); }
.team-grid--ext { grid-template-columns: repeat(4, 1fr); gap: 14px; }
.team-grid--ext .member-photo { aspect-ratio: 1 / 1; }
.team-grid--ext .member-photo .monogram { font-size: 2rem; }

/* ---------- Bio drawer ---------- */
.drawer-overlay {
  position: fixed; inset: 0; z-index: 120;
  background: rgba(26, 14, 24, 0.55);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  opacity: 0; visibility: hidden;
  transition: opacity 0.5s var(--ease-lux), visibility 0.5s var(--ease-lux);
}
.drawer-overlay.open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 121;
  width: min(520px, 92vw);
  background: var(--ivory-bright);
  box-shadow: -40px 0 80px -40px rgba(0,0,0,0.5);
  transform: translateX(100%);
  transition: transform 0.6s var(--ease-lux);
  overflow-y: auto;
  padding: clamp(2rem, 5vw, 3.4rem);
}
.drawer.open { transform: translateX(0); }
.drawer-close { position: absolute; top: 1.4rem; right: 1.4rem; width: 40px; height: 40px; border-radius: 50%; background: rgba(36,39,40,0.05); display: inline-flex; align-items: center; justify-content: center; transition: background 0.3s var(--ease-lux), transform 0.3s var(--ease-lux); }
.drawer-close:hover { background: rgba(36,39,40,0.1); transform: rotate(90deg); }
.drawer-close svg { width: 16px; height: 16px; }
.drawer-mono { width: 72px; height: 72px; border-radius: 18px; background: linear-gradient(155deg, var(--ivory-panel), #fff); border: 1px solid var(--ivory-line); display: flex; align-items: center; justify-content: center; font-family: "Sorts Mill Goudy", serif; font-size: 1.8rem; background-clip: padding-box; margin-bottom: 1.4rem; }
.drawer-mono span { background: var(--grad-purple); -webkit-background-clip: text; background-clip: text; color: transparent; }
.drawer h3 { font-size: 1.8rem; margin-bottom: 0.3rem; }
.drawer .d-role { color: var(--purple-726); font-weight: 600; font-size: 14px; margin-bottom: 1.6rem; }
.drawer .d-bio p { font-size: 1rem; margin-bottom: 1rem; }
.drawer .d-track { margin-top: 1.8rem; padding-top: 1.6rem; border-top: 1px solid var(--ivory-line); }
.drawer .d-track h4 { font-family: "Plus Jakarta Sans"; font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--ink-mute); margin-bottom: 0.9rem; }
.drawer .d-track ul { display: flex; flex-wrap: wrap; gap: 8px; }
.drawer .d-track li { font-size: 12.5px; padding: 5px 12px; border-radius: 999px; background: rgba(112,48,160,0.06); border: 1px solid rgba(112,48,160,0.12); color: var(--purple-deep); }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 600; color: var(--ink); letter-spacing: 0.01em; }
.field label .req { color: var(--purple-726); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 15px; color: var(--ink);
  padding: 14px 16px;
  background: var(--ivory-bright);
  border: 1px solid var(--ivory-line);
  border-radius: var(--r-sm);
  transition: border-color 0.3s var(--ease-lux), box-shadow 0.3s var(--ease-lux), background 0.3s var(--ease-lux);
  width: 100%;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-mute); opacity: 0.7; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--purple-726);
  box-shadow: 0 0 0 4px rgba(112, 48, 160, 0.1);
  background: #fff;
}
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #b4452f; box-shadow: 0 0 0 4px rgba(180,69,47,0.08); }
.field-error { font-size: 12px; color: #b4452f; display: none; }
.field.invalid .field-error { display: block; }
.form-note { font-size: 13px; color: var(--ink-mute); margin-top: 0.5rem; display: inline-flex; align-items: center; gap: 8px; }
.form-note svg { width: 15px; height: 15px; color: var(--purple-726); flex-shrink: 0; }
.form-success {
  display: none;
  text-align: center;
  padding: clamp(2rem, 5vw, 3rem);
}
.form-success.show { display: block; }
.form-success .check { width: 64px; height: 64px; border-radius: 50%; background: var(--grad-purple); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 1.4rem; }
.form-success .check svg { width: 28px; height: 28px; color: #fff; }
.form-success h3 { font-size: 1.8rem; margin-bottom: 0.6rem; }

/* ---------- Contact blocks ---------- */
.contact-card .c-label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--ink-mute); margin-bottom: 0.6rem; }
.contact-card .c-value { font-family: "Sorts Mill Goudy", serif; font-size: 1.35rem; color: var(--ink); }
.contact-card .c-value a:hover { color: var(--purple-726); }
.contact-card p { margin-top: 0.4rem; font-size: 0.95rem; }

/* ---------- Empty state (events / portfolio) ---------- */
.empty-state { text-align: center; padding: clamp(3rem, 7vw, 5rem) clamp(1.5rem, 4vw, 3rem); border: 1px dashed var(--ivory-line); border-radius: var(--r-lg); background: rgba(255,255,255,0.4); }
.empty-state .es-icon { width: 56px; height: 56px; border-radius: 16px; background: rgba(112,48,160,0.06); border: 1px solid rgba(112,48,160,0.12); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 1.4rem; }
.empty-state .es-icon svg { width: 24px; height: 24px; color: var(--purple-726); }
.empty-state h3 { font-size: 1.6rem; margin-bottom: 0.6rem; }
.empty-state p { max-width: 460px; margin: 0 auto 1.6rem; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band .display { margin-bottom: 1.4rem; }
.cta-band .lede { max-width: 560px; margin: 0 auto 2.2rem; }
.cta-band .hero-ctas { justify-content: center; }

/* ---------- Footer ---------- */
.footer { background: var(--grad-deep); color: var(--ivory); padding: clamp(3.5rem, 7vw, 5.5rem) 0 2.5rem; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid var(--line-dark); }
.footer-brand p { color: rgba(245,240,232,0.62); font-size: 0.95rem; margin-top: 1.2rem; max-width: 320px; }
.footer-col h4 { font-family: "Plus Jakarta Sans"; font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; color: rgba(245,240,232,0.5); margin-bottom: 1.1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a { font-size: 0.95rem; color: rgba(245,240,232,0.78); transition: color 0.3s var(--ease-lux); }
.footer-col a:hover { color: var(--ivory); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding-top: 2rem; font-size: 13px; color: rgba(245,240,232,0.5); }
.footer-bottom a:hover { color: var(--ivory); }

/* ---------- ideaaiincome credit ---------- */
.iai-credit-wrap {
  --iai-credit-bg: #1a0e26;
  --iai-credit-fg: #f0e8f5;
  --iai-credit-btn-bg: rgba(245, 240, 232, 0.06);
  --iai-credit-btn-hover: rgba(245, 240, 232, 0.12);
  --iai-credit-border: rgba(245, 240, 232, 0.14);
  --iai-credit-border-hover: rgba(245, 240, 232, 0.26);
  --iai-credit-accent: #C9A8E8;
  width: 100%; display: flex; justify-content: center;
  padding: 8px 10px; background: var(--iai-credit-bg);
}
.iai-credit-btn { display: inline-flex; align-items: center; gap: 3px; padding: 5px 12px; border-radius: 999px; font-family: inherit; font-size: 10px; font-weight: 500; letter-spacing: 0; color: var(--iai-credit-fg); background: var(--iai-credit-btn-bg); border: 1px solid var(--iai-credit-border); text-decoration: none; transition: background 200ms ease, transform 200ms ease, border-color 200ms ease; }
.iai-credit-btn:hover { background: var(--iai-credit-btn-hover); border-color: var(--iai-credit-border-hover); transform: translateY(-1px); }
.iai-credit-highlight { color: var(--iai-credit-accent); font-weight: 700; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(32px); filter: blur(6px); transition: opacity 0.9s var(--ease-soft), transform 0.9s var(--ease-soft), filter 0.9s var(--ease-soft); }
.reveal.in { opacity: 1; transform: translateY(0); filter: blur(0); }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero { padding-top: 150px; padding-bottom: clamp(2.5rem, 5vw, 4rem); }
.page-hero .display { font-size: clamp(2.4rem, 5.6vw, 4.4rem); }
.page-hero .lede { max-width: 620px; margin-top: 1.4rem; }

/* ---------- Mobile nav overlay ---------- */
.nav-overlay {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(245, 240, 232, 0.86);
  backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px);
  display: flex; flex-direction: column; justify-content: center;
  padding: 2rem var(--pad-x);
  opacity: 0; visibility: hidden;
  transition: opacity 0.5s var(--ease-lux), visibility 0.5s var(--ease-lux);
}
.nav-overlay.open { opacity: 1; visibility: visible; }
.nav-overlay a { font-family: "Sorts Mill Goudy", serif; font-size: clamp(2rem, 8vw, 3rem); color: var(--ink); padding: 0.5rem 0; opacity: 0; transform: translateY(24px); transition: opacity 0.6s var(--ease-lux), transform 0.6s var(--ease-lux); }
.nav-overlay.open a { opacity: 1; transform: translateY(0); }
.nav-overlay.open a:nth-child(1) { transition-delay: 0.1s; }
.nav-overlay.open a:nth-child(2) { transition-delay: 0.16s; }
.nav-overlay.open a:nth-child(3) { transition-delay: 0.22s; }
.nav-overlay.open a:nth-child(4) { transition-delay: 0.28s; }
.nav-overlay.open a:nth-child(5) { transition-delay: 0.34s; }
.nav-overlay.open a:nth-child(6) { transition-delay: 0.4s; }
.nav-overlay .btn { margin-top: 1.5rem; align-self: flex-start; font-size: 15px; }

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .team-grid, .team-grid--core, .team-grid--ext { grid-template-columns: repeat(3, 1fr); }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  body { font-size: 16px; }
  .nav-links { display: none; }
  .nav-right .btn { display: none; }
  .nav-toggle {
    display: inline-flex; flex-direction: column; gap: 5px;
    width: 44px; height: 44px; align-items: center; justify-content: center;
    border-radius: 50%; background: rgba(36,39,40,0.05);
  }
  .nav-toggle span { width: 20px; height: 1.6px; background: var(--ink); border-radius: 2px; transition: transform 0.5s var(--ease-lux), opacity 0.3s var(--ease-lux); }
  .nav-toggle.open span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 2.2rem; }
  .split--reverse .split-media { order: 0; }
  .step-row { grid-template-columns: 1fr; }
  .team-grid, .team-grid--core, .team-grid--ext { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { min-height: auto; padding-top: 130px; }
  .hero-mark { font-size: 26rem; right: -90px; opacity: 0.6; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 460px) {
  .team-grid--ext { grid-template-columns: repeat(2, 1fr); }
  .pedigree-row { gap: 1rem 1.6rem; }
  .hero-ctas .btn { width: 100%; justify-content: space-between; }
}

/* =============================================================
   ROUND 1 REVISION ADDITIONS
   ============================================================= */

/* Goudy runs lighter than Fraunces — refine display rhythm */
.display, h2.section-title { letter-spacing: -0.005em; }
.brand-726 { font-weight: 400; }

/* Logo image in nav / footer / hero */
.brand-logo { height: 42px; width: auto; display: block; }
.footer .brand-logo, .brand--light .brand-logo { filter: brightness(0) invert(1); opacity: 0.92; }
.hero-logo { height: clamp(96px, 12vw, 140px); width: auto; margin-bottom: 2rem; }

/* Home tagline hero */
.tagline-hero { text-align: left; }
.tagline-hero .display { line-height: 1.08; }
.tagline-hero .display .accent { color: var(--purple-726); }

/* Media images (rounded, cover) */
.media-img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: var(--r-md);
  display: block;
}
.media-frame {
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  background: var(--ivory-panel);
}
.media-frame--about { aspect-ratio: 4 / 3; }
.media-frame--sector { aspect-ratio: 4 / 3; }

/* About: alternating text/image rows */
.about-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.about-row:last-child { margin-bottom: 0; }
.about-row--reverse .about-row-media { order: -1; }
.about-row p { font-size: 1.06rem; }

/* Investments sector rows */
.sector-row { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.sector-row--reverse .sector-row-media { order: -1; }
.sector-row h2 { margin-bottom: 1rem; }
.sector-row .sector-figures { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 1.4rem; }
.sector-row .sector-figures li { font-size: 12.5px; font-weight: 600; padding: 6px 14px; border-radius: 999px; background: rgba(112,48,160,0.06); border: 1px solid rgba(112,48,160,0.14); color: var(--purple-deep); }
.dark .sector-row .sector-figures li, .deep .sector-row .sector-figures li { background: rgba(245,240,232,0.06); border-color: var(--line-dark); color: var(--lilac-soft); }

/* Values — short cards (home) */
.vshort-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.vshort { padding: 1.6rem 1.3rem; border-radius: var(--r-md); background: rgba(245,240,232,0.04); border: 1px solid var(--line-dark-soft); height: 100%; }
.vshort .vnum { font-family: "Sorts Mill Goudy", serif; font-size: 1.5rem; color: var(--lilac-soft); display: block; margin-bottom: 0.7rem; }
.vshort h3 { font-size: 1.15rem; margin-bottom: 0.6rem; color: var(--ivory); }
.vshort p { font-size: 0.9rem; color: rgba(245,240,232,0.68); line-height: 1.5; }

/* Values page — full value blocks */
.value-full { padding: clamp(1.8rem, 3.5vw, 2.6rem); border-radius: var(--r-lg); border: 1px solid var(--ivory-line); background: var(--ivory-bright); }
.value-full .vf-head { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 1.1rem; }
.value-full .vf-num { font-family: "Sorts Mill Goudy", serif; font-size: 2rem; color: var(--purple-726); line-height: 1; }
.value-full h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
.value-full p { font-size: 1.02rem; }
.value-full .vf-short { margin-top: 1.2rem; padding-top: 1.2rem; border-top: 1px solid var(--ivory-line); font-style: italic; font-family: "Sorts Mill Goudy", serif; font-size: 1.1rem; color: var(--ink); }
.dark .value-full, .deep .value-full { background: rgba(245,240,232,0.03); border-color: var(--line-dark-soft); }
.dark .value-full .vf-short, .deep .value-full .vf-short { color: var(--ivory); border-color: var(--line-dark); }

/* Giving Back cards */
.giving-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.giving-card { display: flex; flex-direction: column; padding: clamp(1.6rem, 3vw, 2.2rem); border-radius: var(--r-lg); border: 1px solid var(--ivory-line); background: var(--ivory-bright); transition: transform 0.5s var(--ease-lux), box-shadow 0.5s var(--ease-lux); }
.giving-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.dark .giving-card, .deep .giving-card { background: rgba(245,240,232,0.04); border-color: var(--line-dark-soft); }
.giving-card .g-cat { font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--purple-726); margin-bottom: 0.7rem; }
.deep .giving-card .g-cat, .dark .giving-card .g-cat { color: var(--lilac-soft); }
.giving-card h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.giving-card p { font-size: 0.92rem; margin-bottom: 1.4rem; }
.giving-card .link-arrow { margin-top: auto; }
.deep .giving-card .link-arrow, .dark .giving-card .link-arrow { color: var(--lilac-soft); }

/* Education logos placeholder row (team) */
.edu-row { margin-top: 0.7rem; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.edu-row .edu-label { font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-mute); }
.edu-chip { width: 26px; height: 26px; border-radius: 50%; background: rgba(112,48,160,0.07); border: 1px dashed rgba(112,48,160,0.25); }
.dark .edu-row .edu-label { color: rgba(245,240,232,0.5); }
.dark .edu-chip { background: rgba(245,240,232,0.05); border-color: rgba(245,240,232,0.2); }

/* Investments teaser (home) */
.teaser-card { position: relative; border-radius: var(--r-lg); overflow: hidden; min-height: 340px; display: flex; align-items: flex-end; padding: clamp(1.8rem, 4vw, 2.8rem); }
.teaser-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.teaser-card .teaser-veil { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(26,14,24,0.15) 0%, rgba(26,14,24,0.82) 100%); }
.teaser-card .teaser-body { position: relative; z-index: 2; color: var(--ivory); max-width: 420px; }
.teaser-card .teaser-body h3 { color: var(--ivory); font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 0.6rem; }
.teaser-card .teaser-body p { color: rgba(245,240,232,0.82); margin-bottom: 1.4rem; }

/* Team cards without bios/photos yet (round 1) */
.member.no-bio { cursor: default; }
.member.no-bio .member-photo::after { content: none; }
.member.no-bio:hover .member-photo { transform: none; box-shadow: none; }
.team-leaders { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 700px; }
.team-vps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 700px; }

/* 7-item nav breathing room on mid screens */
@media (max-width: 1120px) and (min-width: 769px) {
  .nav-link { padding: 8px 10px; font-size: 13px; }
  .nav { padding-left: 16px; }
}

@media (max-width: 980px) {
  .vshort-grid { grid-template-columns: repeat(2, 1fr); }
  .giving-grid { grid-template-columns: 1fr; }
  .team-leaders, .team-vps { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .team-leaders, .team-vps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .about-row, .sector-row { grid-template-columns: 1fr; gap: 1.8rem; }
  .about-row--reverse .about-row-media, .sector-row--reverse .sector-row-media { order: 0; }
  .vshort-grid { grid-template-columns: 1fr; }
}

/* =============================================================
   ROUND 2 REVISION ADDITIONS (Monica — 7/4/26 doc)
   ============================================================= */

/* Founder bio folded into her Team card */
.member-bio { font-size: 12.5px; color: var(--ink-soft); margin-top: 0.6rem; line-height: 1.55; }

/* Pitch textarea character counter */
.char-count { font-size: 12px; color: var(--ink-mute); white-space: nowrap; margin-left: auto; }
.dark .char-count, .deep .char-count { color: rgba(245, 240, 232, 0.5); }

/* Legibility: form labels sit on dark panels (pitch + contact forms) */
.dark .field label, .deep .field label { color: rgba(245, 240, 232, 0.92); }

/* =============================================================
   ROUND 4 REVISION ADDITIONS (Monica — 7/17/26 email)
   ============================================================= */

/* Stat numbers stay on one line — extra step-down for small phones */
@media (max-width: 768px) {
  .stat .num { font-size: clamp(1.4rem, 6.5vw, 2.2rem); }
}

/* Giving Back — photo slot (branded placeholder until client photos arrive).
   Drop an <img> inside .giving-media later: it auto-covers and hides the mark. */
.giving-media {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: var(--r-sm);
  overflow: hidden;
  margin-bottom: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-dark-soft);
  background:
    radial-gradient(120% 90% at 85% 0%, rgba(180, 136, 218, 0.18) 0%, rgba(112, 48, 160, 0.06) 45%, rgba(0, 0, 0, 0) 100%),
    linear-gradient(150deg, rgba(112, 48, 160, 0.16) 0%, rgba(51, 20, 86, 0.34) 100%);
}
.giving-media .gm-mark {
  font-family: "Sorts Mill Goudy", serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1;
  color: var(--lilac-soft);
  opacity: 0.5;
  user-select: none;
}
.giving-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.giving-media:has(img) .gm-mark { display: none; }

/* =============================================================
   ROUND 5 REVISION ADDITIONS (Monica — 7/20/26 "Part I" + "Part II")
   ============================================================= */

/* Home: firm-intro section flipped to dark — links take the light accent */
.dark .link-arrow { color: var(--lilac-soft); }

/* Home: values section flipped to cream — cards + type inverted to ink */
.values-home .vshort { background: var(--ivory-bright); border-color: var(--ivory-line); }
.values-home .vshort h3 { color: var(--purple-726); }
.values-home .vshort p { color: var(--ink-soft); }

/* Faint 726 numerals behind the home team section (mirrors the hero mark) */
.section-mark {
  position: absolute;
  right: clamp(-90px, -3vw, -30px);
  top: 50%;
  transform: translateY(-50%);
  font-family: "Sorts Mill Goudy", serif;
  font-weight: 600;
  font-size: clamp(13rem, 26vw, 28rem);
  line-height: 0.8;
  letter-spacing: -0.04em;
  background: linear-gradient(160deg, rgba(112, 48, 160, 0.09) 0%, rgba(51, 20, 86, 0.04) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
#team { overflow: hidden; }
#team .container { position: relative; z-index: 1; }

/* Solid white chip — "Where we invest" on the sector banner */
.eyebrow--solid { color: var(--purple-726); background: var(--ivory-bright); border-color: var(--ivory-bright); }
.eyebrow--solid::before { background: var(--purple-726); }

/* Giving Back grid at two cards (Dream Machine removed for now) */
@media (min-width: 981px) {
  .giving-grid--two { grid-template-columns: repeat(2, 1fr); max-width: 860px; }
}

/* Contact: compact hero so the lanes sit inside the first screen */
.hero--compact { min-height: auto; padding-bottom: 0; }

/* Footer: headings, copyright, verse and address in white per Monica */
.footer-col h4 { color: var(--ivory); }
.footer-bottom { color: var(--ivory); }

/* =============================================================
   ROUND 6 REVISION ADDITIONS (Monica — 7/28/26 "Website Part 1/2")
   ============================================================= */

/* Faint 726 marks: home values section + pitch "attention" section */
.values-home, #attention { overflow: hidden; }
.values-home .container, #attention .container { position: relative; z-index: 1; }

/* Pitch page: A/B/C circles removed, step headers purple */
.step h3 { color: var(--purple-726); }

/* Team cards: real headshot fills the photo frame, monogram hides */
.member-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.member-photo:has(img) .monogram { display: none; }

/* Round 6 follow-ups (7/30): purple value names on About/Values, LinkedIn icons */
.value-full .vf-head h3 { color: var(--purple-726); }
.li-link { display: inline-flex; margin-top: 0.45rem; color: var(--purple-726); opacity: 0.85; transition: opacity 0.3s var(--ease-lux); }
.li-link:hover { opacity: 1; }
.li-link svg { width: 16px; height: 16px; }

/* =============================================================
   ROUND 8 (post-Zoom 7/30): team layout + name bio links
   ============================================================= */
.team-leaders { grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1080px; }
.team-vps { grid-template-columns: repeat(5, 1fr); gap: 16px; max-width: none; }
.member-name a { color: inherit; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; text-decoration-color: rgba(90, 42, 122, 0.5); transition: color 0.3s var(--ease-lux); }
.member-name a:hover { color: var(--purple-726); }
@media (max-width: 980px) {
  .team-leaders { grid-template-columns: repeat(2, 1fr); }
  .team-vps { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .team-leaders, .team-vps { grid-template-columns: repeat(2, 1fr); }
}
.bio-hero .display { font-size: clamp(2.2rem, 5vw, 3.6rem); }
.bio-body p { margin-bottom: 1.2rem; }
.invest-lines { font-size: 0.92rem; white-space: nowrap; letter-spacing: 0.005em; }
@media (max-width: 1180px) { .invest-lines { white-space: normal; } }

/* Round 8b: bio page layout — natural-proportion photo beside bio, overflow below */
.bio-grid { display: grid; grid-template-columns: minmax(260px, 360px) 1fr; gap: clamp(2rem, 4.5vw, 4rem); align-items: start; }
.bio-photo img { width: 100%; height: auto; display: block; border-radius: var(--r-md); border: 1px solid var(--ivory-line); box-shadow: var(--shadow-soft, 0 10px 30px rgba(51,20,86,0.08)); }
.bio-body p, .bio-more p { margin-bottom: 1.2rem; line-height: 1.75; }
.bio-more { margin-top: 1.4rem; }
@media (max-width: 768px) {
  .bio-grid { grid-template-columns: 1fr; }
  .bio-photo { max-width: 340px; }
}
.ext-team-head .eyebrow { }
