:root {
  --navy: #30384b;
  --indigo: #3a445d;
  --ink: #08090c;
  --sky: #cad8de;
  --platinum: #e8e9eb;
  --white: #ffffff;
  --paper: #f8f9fa;
  --muted: #6b7a8d;
  --coral: #e2725b;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  --shadow: 0 18px 55px rgba(48, 56, 75, 0.12);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--navy);
  font-family: var(--sans);
  background: var(--white);
  overflow-x: hidden;
}
body.menu-open {
  overflow: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  font: inherit;
}
.container {
  --w: min(1200px, calc(100% - 48px));
  width: var(--w);
  margin-right: auto;
  margin-left: max(8px, calc((100% - var(--w)) / 2 - 6vw));
}
.section {
  padding: 100px 0;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--indigo);
}
.heading {
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 12px 0 22px;
}
.section-heading {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 400;
  line-height: 1.12;
  margin: 10px 0 18px;
}
.copy {
  color: var(--muted);
  line-height: 1.8;
  font-size: 15px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  font-weight: 600;
  transition: 0.25s ease;
}
.btn-light {
  background: #fff;
  color: var(--navy);
}
.btn-light:hover {
  background: var(--sky);
}
.btn-outline {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}
.btn-outline:hover {
  background: #fff;
  color: var(--navy);
}
.btn-coral-line {
  border-color: var(--coral);
  color: var(--navy);
  background: #fff;
}
.btn-coral-line:hover {
  background: var(--coral);
  color: #fff;
}
.text-link {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 600;
  color: var(--indigo);
}
.text-link span {
  display: inline-block;
  margin-left: 8px;
  transition: 0.2s;
}
.text-link:hover span {
  transform: translateX(5px);
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition:
    transform 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}
.site-header.at-top {
  background: transparent;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 30px rgba(48, 56, 75, 0.08);
  backdrop-filter: blur(14px);
}
.site-header.hidden {
  transform: translateY(-110%);
}
.header-inner {
  --w: min(1200px, calc(100% - 48px));
  width: var(--w);
  height: 82px;
  margin-right: auto;
  margin-left: max(8px, calc((100% - var(--w)) / 2 - 6vw));
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img {
  width: 215px;
  height: auto;
}
.at-top .logo img {
  filter: brightness(0) invert(1);
}
.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  transform: translateX(6vw);
}
@media (min-width: 1131px) and (max-width: 1295px) {
  .nav {
    transform: translateX(32px);
  }
}
.nav a {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--navy);
}
.at-top .nav a {
  color: #fff;
}
.nav a:not(.nav-cta) {
  position: relative;
}
.nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--coral);
  transition: 0.25s;
}
.nav a:not(.nav-cta):hover::after {
  right: 0;
}
.nav-cta {
  padding: 13px 20px;
  border: 1px solid var(--coral);
  background: rgba(255, 255, 255, 0.96) !important;
  color: var(--navy) !important;
}
.nav-cta:hover {
  background: var(--coral) !important;
  color: #fff !important;
}
.mobile-toggle {
  display: none;
  border: 0;
  background: none;
  width: 42px;
  height: 42px;
  padding: 8px;
}
.mobile-toggle span {
  display: block;
  height: 1px;
  background: currentColor;
  margin: 6px 0;
}
.at-top .mobile-toggle {
  color: #fff;
}
.mobile-panel {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: var(--navy);
  padding: 110px 28px 35px;
  transform: translateX(100%);
  transition: 0.4s ease;
}
.mobile-panel.open {
  transform: none;
}
.mobile-panel nav {
  display: grid;
}
.mobile-panel a {
  font-family: var(--serif);
  font-size: 30px;
  color: #fff;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.hero {
  min-height: 860px;
  position: relative;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  left: 0;
  right: 0;
  top: -60px;
  height: calc(100% + 120px);
  will-change: transform;
  background:
    linear-gradient(
      90deg,
      rgba(22, 35, 54, 0.98) 0%,
      rgba(22, 35, 54, 0.91) 42%,
      rgba(22, 35, 54, 0.42) 76%,
      rgba(22, 35, 54, 0.18) 100%
    ),
    url("assets/hero-office.png") right center/cover no-repeat;
}
.hero-mark {
  position: absolute;
  right: 14%;
  top: 50%;
  transform: translateY(-50%);
  width: 440px;
  opacity: 0.09;
  filter: brightness(0) invert(1);
}
.hero-mark img {
  width: 100%;
}
.hero-line {
  position: absolute;
  right: 44%;
  top: -15%;
  width: 1px;
  height: 130%;
  background: rgba(202, 216, 222, 0.15);
  transform: rotate(-18deg);
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 90px;
}
.hero-copy {
  max-width: 960px;
}
.hero .eyebrow {
  color: var(--sky);
}
.hero .heading {
  font-size: clamp(52px, 6.2vw, 88px);
  max-width: 960px;
}
.hero .heading em {
  font-style: italic;
  color: var(--sky);
}
.hero p {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  gap: 13px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hero-curve {
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: -46px;
  height: 94px;
  background: #fff;
  border-radius: 50% 50% 0 0/75% 75% 0 0;
}
.page-hero,
.service-hero,
.insight-hero {
  padding: 180px 0 105px;
  background: var(--navy);
  color: #fff;
}
.page-hero p,
.service-hero p,
.insight-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.68);
}
@media (max-width: 720px) {
  .page-hero,
  .service-hero,
  .insight-hero {
    padding: 130px 0 80px;
  }
}
.about-preview {
  background: #fff;
}
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  align-items: center;
}
.about-title {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 1.12;
  font-weight: 400;
  margin: 10px 0;
}
.about-title em {
  color: var(--indigo);
}
.about-copy {
  border-left: 1px solid var(--sky);
  padding-left: 42px;
}
.capabilities {
  background: var(--paper);
  border-top: 1px solid var(--platinum);
  border-bottom: 1px solid var(--platinum);
}
.cap-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}
.cap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--platinum);
  background: #fff;
}
.cap-card {
  padding: 36px 28px;
  border-right: 1px solid var(--platinum);
  position: relative;
  transition: 0.25s ease;
}
.cap-card:last-child {
  border-right: 0;
}
.cap-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  z-index: 2;
}
.cap-icon {
  width: 46px;
  height: 46px;
  border: 1px solid var(--sky);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--indigo);
  font-size: 20px;
}
.cap-card:nth-child(2) .cap-icon {
  border-color: var(--coral);
}
.cap-card h3 {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
  margin: 0 0 12px;
}
.cap-list {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 17px;
}
.cap-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}
.cap-link {
  margin-top: 20px;
}
.cap-footer {
  text-align: center;
  margin-top: 32px;
}
.industries {
  background: #fff;
}
.industry-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--platinum);
  border-bottom: 1px solid var(--platinum);
}
.industry {
  padding: 30px 18px;
  text-align: center;
  border-right: 1px solid var(--platinum);
}
.industry:last-child {
  border-right: 0;
}
.industry-icon {
  font-size: 28px;
  color: var(--indigo);
  margin-bottom: 12px;
}
.industry h4 {
  font-size: 13px;
  line-height: 1.4;
  margin: 0;
}
.approach {
  background: linear-gradient(90deg, #f5f7f9, #fff);
}
.approach-grid {
  display: grid;
  grid-template-columns: 0.8fr 2.2fr;
  gap: 70px;
  align-items: center;
}
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
}
.steps:before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 28px;
  border-top: 1px dotted var(--sky);
}
.steps-fill {
  position: absolute;
  left: 8%;
  top: 28px;
  width: 84%;
  border-top: 2px solid var(--coral);
  transform-origin: left center;
  transform: scaleX(0);
  pointer-events: none;
}
.step {
  text-align: center;
  position: relative;
  padding: 0 10px;
}
.step-num {
  width: 56px;
  height: 56px;
  border: 1px solid var(--sky);
  background: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 17px;
  font-family: var(--serif);
  font-size: 20px;
  position: relative;
  z-index: 2;
  transition:
    border-color 0.35s ease,
    background 0.35s ease,
    color 0.35s ease,
    transform 0.35s ease;
}
.step-num.active {
  border-color: var(--coral);
  background: var(--coral);
  color: #fff;
  transform: scale(1.1);
}
.step h4 {
  font-size: 13px;
  margin: 0 0 8px;
}
.step p {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}
.leadership {
  background: var(--navy);
  color: #fff;
  padding: 75px 0;
}
.lead-grid {
  display: grid;
  grid-template-columns: 1.15fr 2.85fr;
  gap: 60px;
  align-items: center;
}
.leadership .eyebrow {
  color: var(--sky);
}
.leadership .section-heading {
  margin-bottom: 14px;
}
.leadership .section-heading em {
  color: var(--sky);
}
.leaders {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.leader {
  text-align: center;
  padding: 10px 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}
.initials {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(202, 216, 222, 0.6);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 15px;
  font-family: var(--serif);
  font-size: 20px;
}
.leader:nth-child(1) .initials {
  border-color: var(--coral);
}
.leader strong {
  display: block;
  font-size: 13px;
}
.leader span {
  display: block;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 6px;
  line-height: 1.4;
}
.insights {
  background: #fff;
}
.insights-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 35px;
}
.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.insight {
  border: 1px solid var(--platinum);
  background: #fff;
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 180px;
}
.insight-image {
  background: url("assets/index_article_operations.jpg") center/cover;
}
.insight:nth-child(2) .insight-image {
  background: url("assets/index_article_fund.jpg") center/cover;
}
.insight:nth-child(3) .insight-image {
  background: url("assets/index_article_tax.jpg") center/cover;
}
.insight-copy {
  padding: 22px;
}
.insight-tag {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--coral);
  font-weight: 600;
}
.insight h3 {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.3;
  font-weight: 400;
  margin: 9px 0 15px;
}
.cta {
  background: var(--sky);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.cta:after {
  content: "";
  position: absolute;
  right: -30px;
  top: -60px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(48, 56, 75, 0.15);
  border-radius: 50%;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 50px;
  align-items: center;
}
.cta h2 {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 400;
  margin: 0;
}
.cta p {
  font-size: 13px;
  color: var(--indigo);
  line-height: 1.7;
}
.footer {
  background: #172436;
  color: #fff;
  padding: 55px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 38px;
}
.footer-logo img {
  width: 200px;
  filter: brightness(0) invert(1);
  margin-bottom: 20px;
}
.footer p,
.footer a {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.7;
}
.footer h4 {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 14px;
}
.footer-col {
  display: grid;
  align-content: start;
  gap: 6px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 35px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.35);
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 1130px) {
  .nav {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .cap-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cap-card:nth-child(2) {
    border-right: 0;
  }
  .cap-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--platinum);
  }
  .industry-row {
    grid-template-columns: repeat(3, 1fr);
  }
  .approach-grid,
  .lead-grid {
    grid-template-columns: 1fr;
  }
  .leaders {
    margin-top: 25px;
  }
  .insight-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 720px) {
  .container {
    width: calc(100% - 32px);
    margin-left: max(6px, calc(16px - 6vw));
  }
  .header-inner {
    width: calc(100% - 32px);
    height: 70px;
    margin-left: max(6px, calc(16px - 6vw));
  }
  .logo img {
    width: 175px;
  }
  .hero {
    min-height: 760px;
  }
  .hero .heading {
    font-size: 50px;
  }
  .hero-mark {
    right: -20%;
    width: 360px;
  }
  .hero-inner {
    padding-bottom: 110px;
  }
  .about-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }
  .about-copy {
    border-left: 0;
    border-top: 1px solid var(--sky);
    padding: 28px 0 0;
  }
  .cap-grid {
    grid-template-columns: 1fr;
  }
  .cap-card {
    border-right: 0;
    border-bottom: 1px solid var(--platinum);
  }
  .industry-row {
    grid-template-columns: 1fr 1fr;
  }
  .industry {
    border-bottom: 1px solid var(--platinum);
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .steps:before {
    display: none;
  }
  .steps-fill {
    display: none;
  }
  .step {
    display: grid;
    grid-template-columns: 56px 1fr;
    text-align: left;
    gap: 16px;
  }
  .step-num {
    margin: 0;
  }
  .step p {
    max-width: 260px;
  }
  .leaders {
    grid-template-columns: 1fr 1fr;
  }
  .leader {
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 22px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-logo {
    grid-column: 1/-1;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
  .section {
    padding: 75px 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}

/* Stack Adam & Susan on mobile */
@media (max-width: 760px) {
  .bio-side-by-side {
    grid-template-columns: 1fr !important;
  }
}
