@font-face {
  font-family: "Onest";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/onest/v9/gNMZW3F-SZuj7zOT0IfSjTS16cPh9R-ZtxFMQWXgSQ.woff2") format("woff2");
}

:root {
  --ink: #0b1f33;
  --ink-soft: #526174;
  --paper: #f4f7fa;
  --white: #fff;
  --line: #d5dee8;
  --accent: #4f86b8;
  --accent-dark: #2f628f;
  --shell: 1440px;
  --pad: 48px;
  --radius: 10px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Onest", sans-serif;
  margin: 0;
  overflow-x: hidden;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }

.site-nav {
  align-items: center;
  background: rgba(246, 243, 237, .94);
  border-bottom: 1px solid rgba(30, 36, 40, .08);
  display: flex;
  height: 86px;
  justify-content: space-between;
  left: 0;
  padding: 0 var(--pad);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  box-sizing: border-box;
}
.brand {
  align-items: center;
  display: inline-flex;
  text-decoration: none;
}
.brand img { height: 34px; object-fit: contain; width: auto; }
.nav-links { align-items: center; display: flex; gap: 30px; }
.nav-links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .07em;
  text-decoration: none;
  text-transform: uppercase;
  transition: opacity .25s ease;
}
.nav-links a:hover { opacity: .55; }
.nav-links .nav-cta,
.button {
  align-items: center;
  background: #d4a84f;
  border: 0;
  border-radius: 999px;
  color: #17211d;
  display: inline-flex;
  font-size: 12px;
  font-weight: 600;
  justify-content: center;
  letter-spacing: .08em;
  min-height: 52px;
  padding: 0 28px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .3s cubic-bezier(.25,.46,.45,.94), transform .3s cubic-bezier(.25,.46,.45,.94);
}
.nav-links .nav-cta:hover, .button:hover { background: #e1bd70; opacity: 1; transform: translateY(-2px); }
.menu-button { background: transparent; border: 0; cursor: pointer; display: none; padding: 8px 0 8px 12px; }
.menu-button span { background: var(--ink); display: block; height: 1px; margin: 5px 0; transition: transform .25s ease; width: 25px; }

.page-hero {
  min-height: 610px;
  padding: 96px var(--pad) 72px;
  position: relative;
}
.shell { margin: 0 auto; max-width: var(--shell); width: 100%; }
.eyebrow {
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .15em;
  line-height: 1.2;
  margin: 0 0 42px;
  text-transform: uppercase;
}
.page-hero h1,
.section-head h2,
.split-copy h2,
.cta-band h2 {
  font-weight: 500;
  letter-spacing: -.055em;
  margin: 0;
}
.page-hero h1 { font-size: clamp(66px, 8vw, 122px); line-height: .91; max-width: 1120px; }
.page-hero .lead { color: var(--ink-soft); font-size: 20px; line-height: 1.55; margin: 44px 0 0 auto; max-width: 610px; }
.jump-rail {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: flex;
  gap: 38px;
  overflow-x: auto;
  padding: 24px var(--pad);
  scrollbar-width: none;
}
.jump-rail::-webkit-scrollbar { display: none; }
.jump-rail a { flex: 0 0 auto; font-size: 11px; font-weight: 600; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; }

.section { padding: 128px var(--pad); }
.section--white { background: var(--white); }
.section--dark { background: var(--ink); color: var(--paper); }
.section-head { display: grid; gap: 54px; grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr); margin-bottom: 72px; }
.section-head h2, .split-copy h2, .cta-band h2 { font-size: clamp(50px, 5.4vw, 82px); line-height: .96; }
.section-head .intro, .split-copy p { color: var(--ink-soft); font-size: 18px; line-height: 1.62; margin: 0; max-width: 610px; }
.section--dark .section-head .intro, .section--dark .split-copy p { color: rgba(246,243,237,.64); }

.card-grid { display: grid; gap: 20px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  min-height: 410px;
  overflow: hidden;
}
.section--dark .card { background: #132a42; border-color: rgba(246,243,237,.14); }
.card-image { aspect-ratio: 4 / 3; overflow: hidden; }
.card-image img { height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.22,1,.36,1); width: 100%; }
.card:hover .card-image img { transform: scale(1.035); }
.card-body { display: flex; flex: 1; flex-direction: column; padding: 30px; }
.card-kicker { color: var(--accent-dark); font-size: 10px; font-weight: 600; letter-spacing: .14em; margin: 0 0 20px; text-transform: uppercase; }
.section--dark .card-kicker { color: #c0c59a; }
.card h3 { font-size: 30px; font-weight: 500; letter-spacing: -.04em; line-height: 1.08; margin: 0 0 18px; }
.card p { color: var(--ink-soft); font-size: 15px; line-height: 1.62; margin: 0; }
.section--dark .card p { color: rgba(246,243,237,.64); }
.card .meta { border-top: 1px solid var(--line); font-size: 11px; font-weight: 600; letter-spacing: .08em; margin-top: auto; padding-top: 22px; text-transform: uppercase; }

.detail-list { border-top: 1px solid currentColor; }
.detail-row { align-items: start; border-bottom: 1px solid rgba(95,100,103,.3); display: grid; gap: 40px; grid-template-columns: 64px minmax(220px,.7fr) minmax(300px,1.3fr); padding: 44px 0; }
.section--dark .detail-row { border-color: rgba(246,243,237,.18); }
.detail-number { color: var(--accent-dark); font-size: 12px; font-weight: 600; letter-spacing: .1em; }
.section--dark .detail-number { color: #c0c59a; }
.detail-row h3 { font-size: 34px; font-weight: 500; letter-spacing: -.04em; line-height: 1.1; margin: 0; }
.detail-row p { color: var(--ink-soft); font-size: 16px; line-height: 1.62; margin: 0; }
.section--dark .detail-row p { color: rgba(246,243,237,.64); }

.split { align-items: stretch; display: grid; gap: 0; grid-template-columns: 1fr 1fr; }
.split-image { min-height: 680px; overflow: hidden; }
.split-image img { height: 100%; object-fit: cover; width: 100%; }
.split-copy { align-items: flex-start; display: flex; flex-direction: column; justify-content: center; padding: 96px clamp(42px,6vw,100px); }
.split-copy .eyebrow { margin-bottom: 34px; }
.split-copy h2 { margin-bottom: 32px; }
.fact-list { border-top: 1px solid var(--line); margin-top: 46px; width: 100%; }
.fact { align-items: center; border-bottom: 1px solid var(--line); display: flex; font-size: 14px; gap: 18px; justify-content: space-between; padding: 18px 0; }
.fact strong { font-size: 24px; font-weight: 500; letter-spacing: -.035em; }

.article-grid { display: grid; gap: 22px; grid-template-columns: repeat(3, minmax(0,1fr)); }
.article-card { background: var(--white); border-radius: var(--radius); color: var(--ink); min-height: 590px; overflow: hidden; }
.article-card .card-image { aspect-ratio: 1 / .92; }
.article-card .card-body { min-height: 270px; }
.article-card h3 { font-size: 28px; }

.question-list { border-top: 1px solid var(--line); }
.question { border-bottom: 1px solid var(--line); }
.question button { align-items: center; background: none; border: 0; color: inherit; cursor: pointer; display: flex; font-size: 21px; font-weight: 500; justify-content: space-between; letter-spacing: -.02em; padding: 28px 0; text-align: left; width: 100%; }
.question button span:last-child { color: var(--accent-dark); font-size: 26px; transition: transform .25s ease; }
.question p { color: var(--ink-soft); display: none; font-size: 16px; line-height: 1.65; margin: 0; max-width: 850px; padding: 0 58px 28px 0; }
.question.open p { display: block; }
.question.open button span:last-child { transform: rotate(45deg); }

.contact-grid { display: grid; gap: 70px; grid-template-columns: .8fr 1.2fr; }
.contact-aside h2 { font-size: 48px; font-weight: 500; letter-spacing: -.05em; line-height: 1; margin: 0 0 30px; }
.contact-aside p { color: var(--ink-soft); font-size: 16px; line-height: 1.65; }
.investor-application { scroll-margin-top: 88px; }
.ghl-form-shell { min-height: 0; overflow: hidden; width: 100%; }
.ghl-form-shell iframe { display: block; min-height: 0; }
.ghl-form-column { min-width: 0; }
.form-legal { color: var(--ink-soft); font-size: 12px; line-height: 1.55; margin: 12px 16px 0; text-align: center; }
.form-legal a { color: var(--ink); }
.form-boundary { border-top: 1px solid var(--line); font-size: 13px !important; margin-top: 28px; padding-top: 24px; }
.prototype-note { border-left: 3px solid var(--accent); margin-top: 38px; padding: 6px 0 6px 20px; }
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 42px; }
.field-grid { display: grid; gap: 24px; grid-template-columns: 1fr 1fr; }
.field { display: flex; flex-direction: column; gap: 9px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.field input, .field textarea, .field select { background: var(--paper); border: 1px solid var(--line); border-radius: 6px; color: var(--ink); min-height: 54px; padding: 14px 16px; width: 100%; }
.field textarea { min-height: 150px; resize: vertical; }
.form-actions { align-items: center; display: flex; gap: 20px; margin-top: 28px; }
.form-status { color: var(--ink-soft); font-size: 12px; line-height: 1.5; }

.cta-band { align-items: end; background: #d8e5f2; display: grid; gap: 40px; grid-template-columns: 1.25fr .75fr; padding: 110px var(--pad); }
.cta-band .eyebrow { color: #315c85; }
.cta-band p { font-size: 17px; line-height: 1.6; margin: 28px 0; max-width: 560px; }
.cta-band .button { background: var(--ink); color: var(--paper); }

.site-footer { background: #071725; color: var(--paper); padding: 72px var(--pad) 32px; }
.footer-logo { display: block; filter: brightness(0) invert(1); height: auto; max-width: 300px; width: min(300px, 72vw); }
.footer-brand { border-bottom: 1px solid rgba(246,243,237,.2); font-size: clamp(40px,5vw,72px); font-weight: 500; letter-spacing: -.05em; line-height: .95; padding-bottom: 54px; }
.footer-grid { display: grid; gap: 36px 28px; grid-template-columns: 1.25fr 1.25fr 1fr .8fr; padding: 52px 0; }
.footer-grid h3 { color: rgba(246,243,237,.5); font-size: 10px; letter-spacing: .13em; margin: 0 0 18px; text-transform: uppercase; }
.footer-grid a, .footer-grid span { display: block; font-size: 14px; line-height: 1.45; margin-bottom: 10px; text-decoration: none; }
.footer-grid a:hover { opacity: .6; }
.footer-legal { border-top: 1px solid rgba(246,243,237,.2); color: rgba(246,243,237,.58); font-size: 11px; line-height: 1.55; padding-top: 28px; }
.footer-legal p { margin: 0 0 18px; max-width: 1050px; }

[data-reveal] { opacity: 1; transform: none; }
[data-reveal].is-visible { animation: cynerge-enter .8s cubic-bezier(.22,1,.36,1); }
@keyframes cynerge-enter {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal].is-visible { animation: none; }
}

@media (max-width: 1180px) {
  :root { --pad: 32px; }
  .nav-links { gap: 18px; }
  .nav-links a { font-size: 9px; }
  .card-grid, .article-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .footer-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
}

@media (max-width: 809px) {
  :root { --pad: 20px; }
  .site-nav { height: 72px; }
  .menu-button { display: block; }
  .nav-links { background: var(--paper); border-bottom: 1px solid var(--line); display: none; flex-direction: column; gap: 0; left: 0; padding: 18px 20px 28px; position: absolute; right: 0; top: 72px; }
  .nav-links.open { display: flex; }
  .nav-links a { border-bottom: 1px solid var(--line); font-size: 11px; padding: 18px 0; width: 100%; }
  .nav-links .nav-cta { border: 0; margin-top: 18px; width: 100%; }
  .page-hero { min-height: 520px; padding-top: 72px; }
  .page-hero h1 { font-size: clamp(52px,15vw,82px); }
  .page-hero .lead { font-size: 17px; margin-top: 34px; }
  .jump-rail { gap: 26px; }
  .section { padding-bottom: 84px; padding-top: 84px; }
  .section-head { gap: 28px; grid-template-columns: 1fr; margin-bottom: 46px; }
  .section-head h2, .split-copy h2, .cta-band h2 { font-size: clamp(44px,12vw,64px); }
  .card-grid, .article-grid { grid-template-columns: 1fr; }
  .detail-row { gap: 16px; grid-template-columns: 44px 1fr; }
  .detail-row p { grid-column: 2; }
  .split { grid-template-columns: 1fr; }
  .split-image { min-height: 480px; }
  .split-copy { padding: 72px 20px; }
  .contact-grid { gap: 44px; grid-template-columns: 1fr; }
  .ghl-form-shell, .ghl-form-shell iframe { min-height: 0; }
  .form-card { padding: 28px 20px; }
  .field-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .form-actions { align-items: stretch; flex-direction: column; }
  .cta-band { align-items: start; grid-template-columns: 1fr; padding-bottom: 84px; padding-top: 84px; }
  .footer-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

/* September refinement: blue accent, stronger actions, tighter page heroes. */
.button,
.nav-links .nav-cta {
  background: #4f86b8;
  color: #fff;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .055em;
  height: 58px;
  min-height: 58px;
  padding: 0 34px;
}

.nav-links .nav-cta { font-size: 11px; min-height: 50px; padding: 0 25px; }
.site-nav .nav-links .nav-cta { font-size: 11px !important; min-height: 50px !important; padding: 0 25px !important; }
.button:hover,
.nav-links .nav-cta:hover { background: #376f9f; color: #fff; }
.button.dark,
.button.light,
.button.outline,
.cta-band .button,
.section--dark .button { background: #4f86b8; border-color: #4f86b8; color: #fff; }

.page-hero h1,
.hero--investments h1 {
  font-size: clamp(42px, 4vw, 58px);
  letter-spacing: -.04em;
  line-height: 1.02;
  max-width: 1000px;
  text-wrap: balance;
}

.investor-strategy-section .section-head {
  display: block;
  margin-bottom: 52px;
  max-width: 980px;
}

.investor-strategy-section .section-head h2 { max-width: 940px; }
.investor-strategy-section .section-head .intro {
  margin-top: 24px;
  max-width: 760px;
}

.next-step-section { padding-bottom: 96px; padding-top: 96px; }
.next-step-section .section-head {
  display: block;
  margin-bottom: 36px;
  max-width: 980px;
}
.next-step-section .section-head h2 { max-width: 900px; }
.next-step-section .section-head .intro {
  color: rgba(255,255,255,.74);
  margin-top: 26px;
  max-width: 780px;
}

.approach-strategy-head h2 {
  max-width: none;
  white-space: nowrap;
}

.about-letter-intro { padding-bottom: 84px; padding-top: 130px; }
.about-letter-intro__grid {
  align-items: center;
  display: grid;
  gap: clamp(44px, 7vw, 100px);
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
}
.about-letter-intro__grid figure {
  aspect-ratio: 1.18 / 1;
  border-radius: 14px;
  margin: 0;
  overflow: hidden;
}
.about-letter-intro__grid figure img {
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
  width: 100%;
}
.about-letter-intro__grid h1 { font-size: clamp(48px, 5.1vw, 72px); }

.footer-brand { display: none; }
.footer-grid { padding-top: 18px; }
.footer-grid > div:first-child .footer-logo {
  filter: brightness(0) invert(1);
  height: auto;
  margin: 0 0 30px;
  max-width: 148px;
  width: 148px;
}
.footer-grid > div:first-child h3 { margin-top: 0; }

@media (max-width: 809px) {
  .button,
  .nav-links .nav-cta { font-size: 13px; height: 58px; min-height: 58px; padding: 0 26px; }
  .page-hero h1,
  .hero--investments h1 { font-size: clamp(36px, 10vw, 44px); }
  .next-step-section { padding-bottom: 76px; padding-top: 76px; }
  .approach-strategy-head h2 { white-space: normal; }
  .about-letter-intro__grid { gap: 38px; grid-template-columns: 1fr; }
  .about-letter-intro__grid figure { aspect-ratio: 1.12 / 1; }
}

/* Article template: faithful translation of the approved clean editorial reference. */
.article-page {
  background: #e8f0f8;
}

.article-page .site-nav {
  background: #fff;
  border: 0;
  color: var(--ink);
  height: 76px;
  margin: 28px auto 0;
  max-width: 1280px;
  padding: 0 42px;
  position: relative;
}

.article-page .site-nav .brand img { filter: none; height: 30px; }
.article-page .site-nav .nav-links a { color: var(--ink); font-size: 10px !important; }
.article-page .site-nav .nav-links { gap: 23px; }
.article-page .site-nav .nav-cta {
  background: var(--accent);
  border: 1px solid var(--accent);
  color: #fff;
  font-size: 10px !important;
  min-height: 40px;
  padding: 0 17px;
}
.article-page .site-nav .nav-cta:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: #fff; }
.article-page .site-nav .menu-button span { background: var(--ink); }

.article-detail {
  background: #fff;
  margin: 0 auto 28px;
  max-width: 1280px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 318px;
}

.article-main { min-width: 0; padding: 58px 58px 98px; }

.article-page .article-hero {
  background: none;
  color: var(--ink);
  min-height: 0;
  padding: 0;
}

.article-page .article-breadcrumbs {
  color: #687789;
  font-size: 11px;
  gap: 10px;
  justify-content: flex-start;
  letter-spacing: .02em;
  margin: 0 0 27px;
  text-transform: none;
}

.article-page .article-breadcrumbs a:hover,
.article-page .article-breadcrumbs a:focus-visible { color: var(--accent-dark); }

.article-page .article-hero h1 {
  color: #111c27;
  font-size: clamp(41px, 4vw, 57px);
  font-weight: 520;
  letter-spacing: -.055em;
  line-height: 1.02;
  margin: 0;
  max-width: 850px;
  text-wrap: balance;
}

.article-meta {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.article-meta__author,
.article-meta__pill {
  align-items: center;
  background: #f2f5f7;
  border: 1px solid #e6ebef;
  border-radius: 999px;
  color: #3f4b57;
  display: inline-flex;
  font-size: 11px;
  font-weight: 560;
  min-height: 38px;
  padding: 0 15px;
  text-decoration: none;
  white-space: nowrap;
}

.article-meta__author { gap: 9px; padding: 3px 15px 3px 4px; }
.article-meta__author img { border-radius: 50%; height: 30px; object-fit: cover; object-position: center 18%; width: 30px; }
.article-meta__author:hover { border-color: #b9cad9; }

.article-feature {
  border-radius: 12px;
  margin: 42px 0 52px;
  overflow: hidden;
}
.article-feature img { height: auto; width: 100%; }

.article-page .article-body { background: transparent; padding: 0; }
.article-page .article-body__inner { margin: 0; max-width: 760px; }
.article-page .article-body p { color: #344b61; font-size: 17px; line-height: 1.72; margin-bottom: 23px; }
.article-page .article-body h2 { font-size: clamp(28px, 3vw, 39px); margin: 57px 0 21px; }
.article-page .article-answer {
  background: #edf4fa;
  border-left: 3px solid var(--accent);
  border-radius: 0 10px 10px 0;
  font-size: 17px !important;
  margin-bottom: 42px !important;
  padding: 25px 27px;
}
.article-page .article-body .article-back { margin-top: 58px; }

.article-sidebar {
  background: #f5f7f8;
  border-left: 1px solid #e6eaed;
  padding: 59px 30px 70px;
}
.article-sidebar__sticky { position: sticky; top: 28px; }
.article-sidebar__section { border-bottom: 1px solid #dce2e6; padding: 0 0 29px; }
.article-sidebar__section + .article-sidebar__section { padding-top: 29px; }
.article-sidebar__section h2 {
  color: #1b2631;
  font-size: 15px;
  font-weight: 650;
  letter-spacing: -.01em;
  margin: 0 0 18px;
  text-transform: none;
}

.article-share { display: flex; flex-wrap: wrap; gap: 9px; }
.article-share a,
.article-share button {
  align-items: center;
  background: #fff;
  border: 1px solid #d9e0e5;
  border-radius: 50%;
  color: #1b344b;
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  height: 36px;
  justify-content: center;
  padding: 0;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, transform .2s ease;
  width: 36px;
}
.article-share button { cursor: pointer; }
.article-share a:hover,
.article-share button:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }
.article-share svg { fill: currentColor; height: 16px; width: 16px; }
.article-share__status {
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  clip: rect(0 0 0 0);
}

.article-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.article-tags span {
  background: #e7eef3;
  border-radius: 999px;
  color: #3e556a;
  font-size: 10px;
  line-height: 1.3;
  padding: 8px 11px;
}

.related-blogs { display: grid; gap: 17px; }
.related-blogs a {
  align-items: center;
  color: #1a2a38;
  display: grid;
  gap: 12px;
  grid-template-columns: 76px minmax(0, 1fr);
  text-decoration: none;
}
.related-blogs img { border-radius: 7px; height: 62px; object-fit: cover; width: 76px; }
.related-blogs span { font-size: 12px; font-weight: 590; line-height: 1.34; }
.related-blogs small { color: #708093; display: block; font-size: 8px; font-weight: 520; letter-spacing: .035em; margin-bottom: 6px; text-transform: uppercase; }
.related-blogs a:hover span { color: var(--accent-dark); }

.article-author-card {
  align-items: center;
  display: grid;
  gap: 13px;
  grid-template-columns: 53px 1fr;
  padding-top: 30px;
}
.article-author-card > img { border-radius: 50%; height: 53px; object-fit: cover; object-position: center 18%; width: 53px; }
.article-author-card span { color: #738192; display: block; font-size: 9px; letter-spacing: .07em; margin-bottom: 3px; text-transform: uppercase; }
.article-author-card strong { display: block; font-size: 13px; font-weight: 650; }
.article-author-card nav { display: flex; gap: 10px; margin-top: 6px; }
.article-author-card nav a { color: var(--accent-dark); font-size: 10px; font-weight: 600; }

@media (max-width: 1050px) {
  .article-page .site-nav { margin-top: 18px; }
  .article-page .site-nav .nav-links {
    background: #fff;
    border-bottom-color: #dfe5ea;
    top: 72px;
  }
  .article-page .site-nav .nav-links a { border-bottom-color: #e6eaed; color: var(--ink); }
  .article-page .site-nav .nav-links .nav-cta { background: var(--accent); border: 1px solid var(--accent); color: #fff; }
  .article-layout { grid-template-columns: minmax(0, 1fr) 280px; }
  .article-main { padding: 50px 42px 84px; }
  .article-sidebar { padding-left: 24px; padding-right: 24px; }
}

@media (max-width: 980px) {
  .article-page .site-nav { margin: 0; max-width: none; padding: 0 20px; }
  .article-detail { margin: 0; }
  .article-layout { display: block; }
  .article-main { padding: 40px 20px 68px; }
  .article-page .article-hero { padding: 0; }
  .article-page .article-hero h1 { font-size: clamp(35px, 9.5vw, 46px); line-height: 1.03; }
  .article-page .article-breadcrumbs { margin-bottom: 22px; }
  .article-meta { align-items: center; display: flex; margin-top: 25px; }
  .article-meta__author,
  .article-meta__pill { justify-content: center; min-width: 0; padding-left: 10px; padding-right: 10px; white-space: normal; }
  .article-meta__author { justify-content: flex-start; }
  .article-feature { margin: 32px 0 42px; }
  .article-page .article-body p { font-size: 16px; line-height: 1.7; }
  .article-page .article-body h2 { font-size: clamp(27px, 8vw, 35px); margin-top: 48px; }
  .article-page .article-answer { font-size: 16px !important; padding: 21px 20px; }
  .article-sidebar { border-left: 0; border-top: 1px solid #e2e7ea; padding: 42px 20px 54px; }
  .article-sidebar__sticky { display: grid; gap: 0 28px; grid-template-columns: repeat(2, minmax(0,1fr)); position: static; }
  .article-sidebar__section:nth-child(3) { grid-column: 1 / -1; }
  .article-author-card { align-self: start; }
  .related-blogs { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .related-blogs a { align-items: start; display: block; }
  .related-blogs img { aspect-ratio: 1.35 / 1; height: auto; margin-bottom: 10px; width: 100%; }
}

@media (max-width: 560px) {
  .article-meta { align-items: stretch; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); }
  .article-meta__author { grid-column: 1 / -1; justify-content: center; }
  .article-meta time { grid-column: 1 / -1; }
  .article-sidebar__sticky { display: block; }
  .article-sidebar__section + .article-sidebar__section { padding-top: 26px; }
  .article-author-card { padding-top: 28px; }
  .related-blogs { grid-template-columns: 1fr; }
  .related-blogs a { align-items: center; display: grid; }
  .related-blogs img { height: 72px; margin: 0; width: 92px; }
  .related-blogs a { grid-template-columns: 92px minmax(0,1fr); }
}

/* About now follows the shared page hierarchy; the founder portrait belongs to the story. */
.about-page-hero {
  background: #0b1f33;
  min-height: 510px;
}

.about-page-hero::before {
  display: none;
}

.about-page-hero .lead {
  max-width: 680px;
}

.about-letter__layout {
  align-items: start;
  display: grid;
  gap: clamp(48px, 7vw, 96px);
  grid-template-columns: minmax(330px, .82fr) minmax(0, 1.18fr);
}

.about-letter__layout figure {
  aspect-ratio: .92 / 1;
  border-radius: 14px;
  margin: 0;
  overflow: hidden;
}

.about-letter__layout figure img {
  height: 100%;
  object-fit: cover;
  object-position: center top;
  width: 100%;
}

.about-letter__layout .about-letter__copy {
  margin: 0;
  max-width: 760px;
}

/* Article detail pages use a restrained editorial column and keep review copy easy to scan. */
.article-card__link {
  color: inherit;
  display: block;
  height: 100%;
  text-decoration: none;
}

.article-card__link .text-link {
  display: inline-block;
  margin-top: 22px;
}

.article-hero {
  background-color: #0b1f33;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  min-height: 610px;
  padding: 148px var(--pad) 96px;
  position: relative;
}

.article-hero .shell {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 366px;
  max-width: 980px;
  position: relative;
  text-align: center;
  z-index: 1;
}

.article-breadcrumbs {
  align-items: center;
  color: rgba(255,255,255,.72);
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  gap: 9px;
  justify-content: center;
  letter-spacing: .08em;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.article-breadcrumbs a {
  color: inherit;
  text-decoration: none;
}

.article-breadcrumbs a:hover,
.article-breadcrumbs a:focus-visible {
  color: #fff;
}

.article-hero .eyebrow {
  color: #d8dbb5;
}

.article-hero h1 {
  font-size: clamp(40px, 4.7vw, 58px);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1.02;
  margin: 24px auto 0;
  max-width: 900px;
  text-wrap: balance;
}

.article-hero .article-deck {
  color: rgba(255,255,255,.82);
  font-size: 17px;
  line-height: 1.6;
  margin: 30px auto 0;
  max-width: 700px;
  text-wrap: pretty;
}

.article-hero--recurring {
  background-image: linear-gradient(90deg, rgba(5,17,29,.84), rgba(5,17,29,.62)), url("./assets/article-recurring-revenue-4k.png");
}

.article-hero--first-100 {
  background-image: linear-gradient(90deg, rgba(5,17,29,.86), rgba(5,17,29,.58)), url("./assets/article-first-100-days-4k.png");
}

.article-hero--concentration {
  background-image: linear-gradient(90deg, rgba(5,17,29,.86), rgba(5,17,29,.6)), url("./assets/article-concentration-risk-4k.png");
}

.article-body {
  background: #fff;
  padding: 88px var(--pad) 112px;
}

.article-body__inner {
  margin: 0 auto;
  max-width: 760px;
}

.article-answer {
  background: #edf4fb;
  border-radius: 14px;
  color: var(--ink) !important;
  font-size: 19px !important;
  margin-bottom: 44px !important;
  padding: 28px 30px;
}

.article-answer strong {
  font-weight: 600;
}

.article-related-link {
  border-top: 1px solid var(--line);
  font-size: 16px !important;
  margin: 34px 0 !important;
  padding-top: 18px;
}

.article-related-link a {
  color: var(--blue-deep);
  font-weight: 600;
}

.section-head--centered {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 900px;
  text-align: center;
}

.section-head--centered .intro {
  margin: 26px auto 0;
  max-width: 760px;
}

.article-body p {
  color: #334f69;
  font-size: 18px;
  line-height: 1.75;
  margin: 0 0 26px;
}

.article-body h2 {
  color: var(--ink);
  font-size: clamp(32px, 3.3vw, 44px);
  font-weight: 550;
  letter-spacing: -.04em;
  line-height: 1.08;
  margin: 64px 0 24px;
}

.article-body .article-back {
  border-top: 1px solid var(--line);
  display: block;
  margin-top: 72px;
  padding-top: 28px;
}

@media (max-width: 809px) {
  .about-page-hero {
    min-height: 470px;
  }

  .about-letter__layout {
    gap: 42px;
    grid-template-columns: 1fr;
  }

  .about-letter__layout figure {
    aspect-ratio: 1.12 / 1;
  }

  .article-hero {
    min-height: 540px;
    padding: 118px 20px 68px;
  }

  .article-hero h1 {
    font-size: clamp(36px, 9.4vw, 44px);
    line-height: 1.04;
  }

  .article-hero .article-deck {
    font-size: 17px;
  }

  .article-hero .shell {
    min-height: 350px;
  }

  .article-body {
    padding: 66px 20px 84px;
  }

  .article-body p {
    font-size: 17px;
  }

  .article-answer {
    font-size: 17px !important;
    padding: 22px;
  }
}

/* Centered, compact responsive system for the September review. */
.page-hero .shell {
  text-align: center;
}

.page-hero h1,
.page-hero .lead {
  margin-left: auto;
  margin-right: auto;
}

.page-hero .hero-button {
  margin-left: auto;
  margin-right: auto;
}

.cta-band {
  display: block;
  padding-bottom: 94px;
  padding-top: 94px;
  text-align: center;
}

.cta-band > div {
  margin-left: auto;
  margin-right: auto;
  max-width: 780px;
}

.cta-band > div + div {
  margin-top: 26px;
  max-width: 620px;
}

.cta-band h2 {
  font-size: clamp(36px, 4vw, 50px);
  margin-left: auto;
  margin-right: auto;
}

.cta-band p {
  margin: 0 auto 28px;
  max-width: 620px;
}

.section-head {
  display: block;
  margin: 0 auto 52px;
  max-width: 900px;
  text-align: center;
}

.section-head h2,
.section-head .intro {
  margin-left: auto;
  margin-right: auto;
}

.section-head .intro {
  margin-top: 22px;
  max-width: 620px;
}

.about-letter-intro__grid figure img {
  object-position: center top;
}

@media (min-width: 810px) and (max-width: 1180px) {
  .article-grid {
    gap: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .article-card {
    min-height: 430px;
  }

  .article-card .card-image {
    aspect-ratio: 1.15 / 1;
  }

  .article-card .card-body {
    min-height: 210px;
    padding: 20px;
  }

  .article-card h3 {
    font-size: 20px;
    line-height: 1.12;
  }

  .article-card p {
    font-size: 13px;
    line-height: 1.5;
  }

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

  .strategy-grid .card {
    min-height: 240px;
  }

  .strategy-grid .card-body {
    padding: 22px;
  }

  .strategy-grid .card h3 {
    font-size: 21px;
  }

  .about-letter-intro__grid {
    gap: 34px;
    grid-template-columns: minmax(0, .92fr) minmax(330px, 1.08fr);
  }

  .about-letter-intro__grid figure {
    aspect-ratio: 1.28 / 1;
  }
}

@media (max-width: 809px) {
  .cta-band {
    padding-bottom: 76px;
    padding-top: 76px;
  }

  .cta-band h2 {
    font-size: clamp(32px, 9vw, 40px);
  }

  .about-letter-intro__grid figure img {
    object-position: center 8%;
  }
}

/* Our Approach: tighter evaluation shell and scannable phase icons. */
#underwriting{padding-bottom:96px;padding-top:96px}
#underwriting>.shell{max-width:1000px}
#underwriting .section-head{gap:64px;grid-template-columns:minmax(0,1.35fr) minmax(280px,.65fr);margin-bottom:56px}
#underwriting .section-head h2{font-size:clamp(36px,3.55vw,46px);letter-spacing:-.04em;line-height:1.04;max-width:600px;text-wrap:balance}
#underwriting .section-head .intro{font-size:17px;max-width:360px}
#underwriting .detail-row{grid-template-columns:52px minmax(220px,.75fr) minmax(320px,1.25fr);padding:36px 0}
#underwriting .detail-row h3{font-size:30px}
.phase-icon{color:var(--accent);display:block;height:34px;margin-bottom:28px;width:34px}
.phase-icon svg{fill:none;height:100%;stroke:currentColor;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.7;width:100%}
.approach-phases .phase{padding:32px}
.approach-phases .phase h3{font-size:29px;margin-bottom:14px}
@media(max-width:809px){
  #underwriting{padding-bottom:76px;padding-top:76px}
  #underwriting .section-head{gap:24px;grid-template-columns:1fr;margin-bottom:42px}
  #underwriting .section-head h2{font-size:clamp(34px,9vw,42px)}
  #underwriting .detail-row{grid-template-columns:38px 1fr;padding:30px 0}
  #underwriting .detail-row p{grid-column:2}
  .approach-phases .phase{padding:28px}
}

@media (max-width: 359px) {
  .page-hero h1 { font-size: 48px; }
  .section-head h2, .split-copy h2, .cta-band h2 { font-size: 42px; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* 2026-09-01 client review pass: restore the compact, image-led Norfolk subpage rhythm. */
:root { --shell: 1180px; --pad: clamp(24px, 4.5vw, 72px); }
.site-nav {
  background: transparent;
  border-bottom-color: rgba(255,255,255,.18);
  color: #fff;
  height: 78px;
  position: absolute;
  backdrop-filter: none;
}
.site-nav .brand img { filter: brightness(0) invert(1); height: 32px; }
.site-nav .nav-links a { color: #fff; font-size: 11px; }
.site-nav .nav-links .nav-cta { color: #0b1f33; min-height: 46px; padding: 0 23px; }
.site-nav .menu-button span { background: #fff; }
.page-hero {
  align-items: center;
  background-color: #171c1f;
  background-position: center;
  background-size: cover;
  color: #fff;
  display: flex;
  min-height: 500px;
  overflow: hidden;
  padding-bottom: 76px;
  padding-top: 126px;
}
.page-hero::before {
  background: linear-gradient(90deg, rgba(8,12,14,.78) 0%, rgba(8,12,14,.56) 50%, rgba(8,12,14,.5) 100%);
  content: "";
  inset: 0;
  position: absolute;
}
.page-hero .shell { position: relative; z-index: 1; }
.page-hero .eyebrow { color: #d8dbb5; margin-bottom: 22px; }
.page-hero h1 { font-size: clamp(48px, 5.4vw, 76px); line-height: .98; max-width: 820px; }
.page-hero .lead { color: rgba(255,255,255,.76); font-size: 17px; line-height: 1.55; margin: 28px auto 0; max-width: 600px; text-align: center; }
.hero-button { margin-top: 30px; }
.hero--investments { background-image: url("assets/sector-healthcare-4k.png"); background-position: center 45%; }
.hero--approach { background-image: url("assets/cynerge-approach-conversation-4k-v1.jpg"); background-position: center 48%; }
.hero--articles { background-image: url("assets/article-recurring-revenue-4k.png"); background-position: center 48%; }
.hero--investors { background-image: url("assets/investor-fit-conversation-hero.png"); background-position: center 42%; }
.hero--about { background-image: url("assets/alonzo-office-window-wide.png"); background-position: center 32%; }
.hero--contact { background-image: url("assets/contact-fit-call-hero.png"); background-position: center 46%; }
.jump-rail { background: #fff; gap: clamp(24px,4vw,64px); justify-content: center; padding-bottom: 27px; padding-top: 27px; }
.jump-rail a { font-size: 12px; letter-spacing: .08em; scroll-margin-top: 30px; }
.section { padding-bottom: 104px; padding-top: 104px; }
.section-head { align-items: start; gap: 72px; grid-template-columns: minmax(0,1.08fr) minmax(320px,.72fr); margin-bottom: 62px; }
.section-head .eyebrow { margin-bottom: 24px; }
.section-head h2, .split-copy h2, .cta-band h2 { font-size: clamp(42px,4.3vw,60px); line-height: 1; }
.section-head .intro, .split-copy p { font-size: 17px; }
.section-title-single-line { font-size: clamp(36px,3.25vw,44px) !important; letter-spacing: -.06em !important; white-space: nowrap; }
.editorial-list { border-top: 1px solid var(--line); }
.editorial-row {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: clamp(36px,6vw,82px);
  grid-template-columns: minmax(0,.9fr) minmax(360px,1.1fr);
  padding: 44px 0;
  scroll-margin-top: 24px;
}
.editorial-row:nth-child(even) .editorial-media { order: 2; }
.editorial-media { aspect-ratio: 1.28 / 1; overflow: hidden; }
.editorial-media img { height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.22,1,.36,1); width: 100%; }
.editorial-row:hover .editorial-media img { transform: scale(1.025); }
.editorial-copy .eyebrow { margin-bottom: 20px; }
.editorial-copy h3 { font-size: clamp(34px,3.4vw,48px); font-weight: 500; letter-spacing: -.045em; line-height: 1.02; margin: 0 0 22px; }
.editorial-copy p { color: var(--ink-soft); font-size: 16px; line-height: 1.65; margin: 0 0 24px; }
.text-link { border-bottom: 1px solid currentColor; font-size: 11px; font-weight: 600; letter-spacing: .1em; padding-bottom: 5px; text-decoration: none; text-transform: uppercase; }
.decision-section .section-head { align-items: center; }
.decision-section .section-head h2 { max-width: 690px; }
.decision-section .section-head .intro { justify-self: end; max-width: 450px; }
.decision-grid { display: grid; gap: 24px; grid-template-columns: repeat(3,minmax(0,1fr)); }
.decision-card { border: 1px solid rgba(246,243,237,.16); min-height: 310px; padding: 40px 36px; }
.decision-card .card-kicker { margin-bottom: 18px; }
.decision-card h3 { font-size: clamp(27px,2.2vw,35px); font-weight: 500; letter-spacing: -.04em; line-height: 1.08; margin: 0 0 22px; }
.decision-card p { color: rgba(246,243,237,.64); font-size: 15px; line-height: 1.62; margin: 0; }
.approach-phases { display: grid; gap: 1px; grid-template-columns: repeat(3,minmax(0,1fr)); margin-top: 52px; }
.phase { background: #fff; min-height: 230px; padding: 30px; }
.phase h3 { font-size: 31px; font-weight: 500; letter-spacing: -.04em; margin: 0 0 16px; }
.phase p { color: var(--ink-soft); font-size: 15px; line-height: 1.6; margin: 0; }
.split-image { min-height: 560px; }
.split-copy { padding-bottom: 72px; padding-top: 72px; }
.card-grid { gap: 24px; }
.card { min-height: 340px; }
.card-body { padding: 32px; }
.card h3 { font-size: 28px; }
.cta-band { padding-bottom: 88px; padding-top: 88px; }

@media (max-width: 1180px) {
  .site-nav .nav-links { gap: 17px; }
  .section-title-single-line { white-space: normal; }
}

@media (max-width: 1340px) and (min-width: 1051px) {
  .site-nav { padding-left: 30px; padding-right: 30px; }
  .site-nav .brand img { height: 28px; }
  .site-nav .nav-links { gap: 14px; }
  .site-nav .nav-links a { font-size: 9px; letter-spacing: .045em; }
  .site-nav .nav-links .nav-cta { min-height: 42px; padding: 0 18px; }
}

@media (max-width: 1050px) and (min-width: 810px) {
  .site-nav { height: 72px; }
  .site-nav .brand img { height: 29px; }
  .menu-button { display: block; }
  .nav-links {
    align-items: stretch;
    background: #071725;
    border-bottom: 1px solid rgba(255,255,255,.18);
    display: none;
    flex-direction: column;
    gap: 0;
    left: 0;
    padding: 18px 32px 28px;
    position: absolute;
    right: 0;
    top: 72px;
  }
  .nav-links.open { display: flex; }
  .site-nav .nav-links a { border-bottom: 1px solid rgba(255,255,255,.16); color: #fff; font-size: 11px; padding: 18px 0; width: 100%; }
  .site-nav .nav-links .nav-cta { border: 0; color: #0b1f33; margin-top: 18px; width: 100%; }
}
@media (max-width: 809px) {
  .site-nav { height: 70px; }
  .site-nav .brand img { height: 27px; }
  .site-nav .nav-links { background: #071725; border-bottom-color: rgba(255,255,255,.18); top: 70px; }
  .site-nav .nav-links a { border-bottom-color: rgba(255,255,255,.16); color: #fff; }
  .page-hero { min-height: 470px; padding-bottom: 58px; padding-top: 116px; }
  .page-hero h1 { font-size: clamp(43px,12vw,62px); }
  .page-hero .lead { font-size: 16px; }
  .page-hero::before { background: rgba(8,12,14,.66); }
  .jump-rail { justify-content: flex-start; padding-left: 20px; padding-right: 20px; }
  .section { padding-bottom: 76px; padding-top: 76px; }
  .section-head { gap: 24px; margin-bottom: 42px; }
  .section-head h2, .split-copy h2, .cta-band h2 { font-size: clamp(38px,10vw,52px); }
  .editorial-row { gap: 28px; grid-template-columns: 1fr; padding: 34px 0 48px; }
  .editorial-row:nth-child(even) .editorial-media { order: 0; }
  .editorial-media { aspect-ratio: 1.22 / 1; }
  .decision-grid, .approach-phases { grid-template-columns: 1fr; }
  .decision-card { min-height: 0; padding: 28px; }
  .phase { min-height: 0; }
  .section-head { grid-template-columns: minmax(0,1fr); }
  .section-head .intro { justify-self: start; }
  .page-hero h1 {
    font-size: clamp(38px, 10.5vw, 48px);
    letter-spacing: -.05em;
    max-width: 100%;
    overflow-wrap: break-word;
    white-space: normal;
    width: 100%;
  }
  .page-hero .shell, .section .shell { box-sizing: border-box; min-width: 0; width: 100%; }
  .section-head h2, .split-copy h2, .cta-band h2 { font-size: clamp(34px, 9.1vw, 42px); }
}

@media (max-width: 359px) {
  .page-hero h1 { font-size: 38px; }
  .section-head h2, .split-copy h2, .cta-band h2 { font-size: 34px; }
}

/* Final hierarchy and density pass. Keep one predictable heading scale site-wide. */
.section-head h2,
.split-copy h2 {
  font-size: clamp(40px, 3.8vw, 56px);
  line-height: 1.02;
}

.cta-band {
  padding-left: max(var(--pad), calc((100vw - 1180px) / 2));
  padding-right: max(var(--pad), calc((100vw - 1180px) / 2));
}

.cta-band h2 {
  font-size: clamp(38px, 3.55vw, 52px);
  line-height: 1.02;
  max-width: 720px;
}

.hero--investments h1 {
  font-size: clamp(44px, 4.35vw, 62px);
  line-height: 1.01;
  max-width: 1040px;
}

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

.criteria-grid .card,
.strategy-grid .card {
  min-height: 260px;
}

.criteria-grid .card-body,
.strategy-grid .card-body {
  justify-content: flex-start;
  padding: 28px;
}

.criteria-grid .card-kicker,
.strategy-grid .card-kicker {
  margin-bottom: 14px;
}

.criteria-grid .card h3,
.strategy-grid .card h3 {
  font-size: clamp(24px, 2vw, 29px);
  line-height: 1.12;
  margin-bottom: 16px;
}

.criteria-grid .card p,
.strategy-grid .card p {
  line-height: 1.56;
}

.editorial-copy h3 {
  font-size: clamp(36px, 3.1vw, 46px);
}

.section--dark .eyebrow { color: #d4a84f; }
.next-step-section { background: #0b1f33; }

.about-letter-intro {
  background: #0b1f33;
  color: #fff;
  padding: 150px var(--pad) 92px;
}

.about-letter-intro .eyebrow { color: #d4a84f; margin-bottom: 26px; }
.about-letter-intro h1 {
  font-size: clamp(54px, 6vw, 84px);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: .98;
  margin: 0;
}

.about-letter-intro p:last-child {
  color: rgba(255,255,255,.72);
  font-size: 19px;
  line-height: 1.6;
  margin: 30px 0 0;
  max-width: 680px;
}

.about-letter {
  background: #fff;
  padding: 104px var(--pad) 120px;
}

.about-letter__copy { margin: 0 auto; max-width: 820px; }
.about-letter__copy > p {
  color: #26384a;
  font-size: clamp(18px, 1.45vw, 21px);
  line-height: 1.78;
  margin: 0 0 30px;
}

.about-signoff {
  border-top: 1px solid var(--line);
  margin-top: 54px;
  padding-top: 38px;
}

.about-signoff span {
  color: #0b1f33;
  font-family: "Snell Roundhand", "Segoe Script", "Bradley Hand", cursive;
  font-size: clamp(42px, 4.5vw, 62px);
  line-height: 1;
}

@media (max-width: 809px) {
  .section-head h2,
  .split-copy h2,
  .cta-band h2 { font-size: clamp(34px, 9.1vw, 42px); }
  .criteria-grid { grid-template-columns: 1fr; }
  .criteria-grid .card,
  .strategy-grid .card { min-height: 0; }
  .cta-band { padding-left: 20px; padding-right: 20px; }
  .about-letter-intro { padding: 124px 20px 72px; }
  .about-letter-intro h1 { font-size: clamp(48px, 14vw, 66px); }
  .about-letter { padding: 76px 20px 88px; }
  .about-letter__copy > p { font-size: 18px; line-height: 1.7; }
}

/* Authoritative final overrides for this review pass. */
.eyebrow,
.section--dark .eyebrow,
.about-letter-intro .eyebrow { color: #4f86b8; }

.button,
.nav-links .nav-cta {
  background: #4f86b8;
  border: 1px solid #4f86b8;
  border-radius: 9px;
  color: #fff;
  display: inline-flex;
  font-size: 13px;
  font-weight: 750;
  justify-content: center;
  letter-spacing: .055em;
  min-height: 58px;
  min-width: 190px;
  padding: 0 34px;
}
.nav-links .nav-cta { font-size: 12px; min-height: 50px; min-width: 0; padding: 0 25px; }
.button:hover,
.nav-links .nav-cta:hover { background: #376f9f; color: #fff; }

@media (min-width: 810px) {
  .site-nav .nav-links > a:not(.nav-cta) {
    font-size: 13px !important;
    font-weight: 650 !important;
    letter-spacing: .02em !important;
  }
}

.page-hero h1,
.hero--investments h1 {
  font-size: clamp(42px, 4vw, 58px);
  letter-spacing: -.04em;
  line-height: 1.02;
  max-width: 1000px;
}

.investor-strategy-section .section-head { display: block; margin-bottom: 52px; max-width: 980px; }
.investor-strategy-section .section-head h2 { max-width: 940px; }
.investor-strategy-section .section-head .intro { margin-top: 24px; max-width: 760px; }
.next-step-section { padding-bottom: 96px; padding-top: 96px; }
.next-step-section .section-head { display: block; margin-bottom: 36px; max-width: 980px; }
.next-step-section .section-head h2 { max-width: 900px; }
.next-step-section .section-head .intro { color: rgba(255,255,255,.74); margin-top: 26px; max-width: 780px; }
.approach-strategy-head h2 { max-width: none; white-space: nowrap; }

.about-letter-intro { padding-bottom: 84px; padding-top: 130px; }
.about-letter-intro__grid { align-items: center; display: grid; gap: clamp(44px,7vw,100px); grid-template-columns: minmax(0,.95fr) minmax(420px,1.05fr); }
.about-letter-intro__grid figure { aspect-ratio: 1.18 / 1; border-radius: 14px; margin: 0; overflow: hidden; }
.about-letter-intro__grid figure img { height: 100%; object-fit: cover; object-position: center 32%; width: 100%; }
.about-letter-intro__grid h1 { font-size: clamp(48px,5.1vw,72px); }

.footer-brand { display: none; }
.footer-grid { padding-top: 18px; }
.footer-grid > div:first-child .footer-logo { filter: brightness(0) invert(1); height: auto; margin: 0 0 30px; max-width: 148px; width: 148px; }

@media (max-width: 809px) {
  .button,
  .nav-links .nav-cta { font-size: 12px; min-height: 54px; padding: 0 26px; }
  .page-hero h1,
  .hero--investments h1 { font-size: clamp(36px,10vw,44px); }
  .next-step-section { padding-bottom: 76px; padding-top: 76px; }
  .approach-strategy-head h2 { white-space: normal; }
  .about-letter-intro__grid { gap: 38px; grid-template-columns: 1fr; }
  .about-letter-intro__grid figure { aspect-ratio: 1.12 / 1; }
}

/* Sitewide primary-action contract: the hero button is the visual authority. */
.button,
.site-nav .nav-links .nav-cta {
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 9px;
  color: #fff;
  font-weight: 750;
  min-height: 54px;
}

.site-nav .nav-links .nav-cta {
  color: #fff !important;
  font-size: 14px !important;
  letter-spacing: .035em;
  min-height: 50px !important;
  padding: 0 24px !important;
}

/* Article navigation previously overrode the shared CTA with 10px dark link text. */
.article-page .site-nav .nav-links a.nav-cta {
  color: #fff !important;
  font-size: 14px !important;
}

.button:hover,
.site-nav .nav-links .nav-cta:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
  opacity: 1;
  transform: translateY(-2px);
}

.button:active,
.site-nav .nav-links .nav-cta:active {
  transform: translateY(0);
}

.button:focus-visible,
.site-nav .nav-links .nav-cta:focus-visible {
  outline: 3px solid rgba(79, 134, 184, .38);
  outline-offset: 3px;
}

/* 2026-09-12 final responsive polish: one legible scale across every public route. */
.next-step-section {
  text-align: center;
}

.next-step-section .section-head,
.next-step-section .section-head h2,
.next-step-section .section-head .intro {
  margin-left: auto;
  margin-right: auto;
}

.next-step-section .button {
  margin-left: auto;
  margin-right: auto;
}

.hero--articles + .section .shell {
  max-width: 1440px;
}

.hero--articles + .section .article-grid {
  gap: clamp(18px, 1.8vw, 28px);
}

.hero--articles + .section .article-card {
  min-height: 0;
}

.hero--articles + .section .article-card .card-image {
  aspect-ratio: 16 / 9;
  background: #dce7f0;
  position: relative;
}

.hero--articles + .section .article-card .card-image::after {
  background: rgba(11, 31, 51, .035);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hero--articles + .section .article-card .card-image img {
  object-fit: cover;
  object-position: center;
}

.hero--articles + .section .article-card .card-body {
  min-height: 260px;
}

@media (max-width: 809px) {
  .site-nav .nav-links {
    padding: 12px 20px 24px;
  }

  .site-nav .nav-links > a:not(.nav-cta),
  .article-page .site-nav .nav-links > a:not(.nav-cta) {
    font-size: 15px !important;
    font-weight: 650;
    letter-spacing: .025em;
    line-height: 1.25;
    min-height: 56px;
    padding: 18px 0;
  }

  .site-nav .nav-links .nav-cta,
  .article-page .site-nav .nav-links .nav-cta {
    font-size: 15px !important;
    height: 60px;
    letter-spacing: .025em;
    min-height: 60px !important;
    padding: 0 24px !important;
  }

  .button {
    font-size: 15px;
    height: 60px;
    letter-spacing: .035em;
    min-height: 60px;
    padding: 0 28px;
  }

  .page-hero {
    min-height: 440px;
    padding-bottom: 54px;
    padding-top: 108px;
  }

  .page-hero h1,
  .hero--investments h1 {
    font-size: clamp(31px, 8.6vw, 38px);
    letter-spacing: -.035em;
    line-height: 1.06;
  }

  .page-hero .lead {
    font-size: 17px;
    line-height: 1.58;
    margin-top: 24px;
  }

  .section {
    padding-bottom: 68px;
    padding-top: 68px;
  }

  .section-head {
    gap: 20px;
    margin-bottom: 36px;
  }

  .section-head h2,
  .split-copy h2,
  .cta-band h2,
  #underwriting .section-head h2 {
    font-size: clamp(29px, 7.8vw, 35px);
    letter-spacing: -.035em;
    line-height: 1.08;
  }

  .editorial-copy h3 {
    font-size: clamp(27px, 7.1vw, 32px);
    line-height: 1.08;
  }

  .next-step-section {
    padding-bottom: 68px;
    padding-top: 68px;
  }

  .next-step-section .section-head {
    margin-bottom: 28px;
  }

  .about-letter {
    padding: 68px 20px 78px;
  }

  .about-letter__layout {
    gap: 34px;
  }

  .about-letter__copy > p {
    font-size: 17px;
    line-height: 1.68;
    margin-bottom: 25px;
  }

  .article-page .article-hero h1 {
    font-size: clamp(31px, 8.4vw, 38px);
    letter-spacing: -.035em;
    line-height: 1.06;
  }

  .article-page .article-body h2 {
    font-size: clamp(26px, 7vw, 32px);
    line-height: 1.12;
  }

  .hero--articles + .section .article-card .card-body {
    min-height: 0;
  }
}

@media (max-width: 359px) {
  .page-hero h1,
  .hero--investments h1,
  .article-page .article-hero h1 {
    font-size: 31px;
  }
}
.schedule-section {
  padding-top: clamp(56px, 7vw, 104px);
}

.schedule-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: start;
}

.schedule-aside {
  position: sticky;
  top: 120px;
}

.schedule-aside h2 {
  margin: 14px 0 22px;
}

.ghl-calendar-column {
  min-width: 0;
}

.ghl-calendar-shell {
  width: 100%;
  min-height: 760px;
  overflow: hidden;
  border: 1px solid #d7e0e8;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 60px rgba(11, 31, 51, 0.08);
}

.ghl-calendar-shell iframe {
  display: block;
  min-height: 760px;
}

.calendar-fallback {
  margin: 18px 0 0;
  color: #506279;
  font-size: 15px;
}

.calendar-fallback a {
  color: #0b1f33;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Inner pages retain the authentic logo supplied in their footer markup. */
.site-footer .footer-brand {
  display: block;
  border: 0;
  padding-bottom: 30px;
}
.site-footer .footer-brand .footer-logo {
  width: 148px;
  max-width: 100%;
}
.legal-reading { max-width: 760px; }
.legal-reading h2 { font-size: clamp(26px, 4vw, 34px); margin: 44px 0 18px; }
.legal-reading p { font-size: 17px; line-height: 1.7; margin: 0 0 22px; }
.legal-reading a { text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 820px) {
  .schedule-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .schedule-aside {
    position: static;
  }

  .ghl-calendar-shell,
  .ghl-calendar-shell iframe {
    min-height: 720px;
  }
}

@media (max-width: 480px) {
  .schedule-hero h1 {
    font-size: clamp(38px, 11vw, 48px);
  }

  .ghl-calendar-shell {
    border-radius: 12px;
  }
}
