:root {
  --ink: #101318;
  --paper: #f3f1eb;
  --paper-bright: #faf9f6;
  --black: #07090c;
  --black-soft: #0d1117;
  --navy: #111925;
  --line: rgba(18, 22, 28, .16);
  --line-dark: rgba(221, 226, 233, .16);
  --text: #49515c;
  --text-dark: #b4bbc5;
  --white: #f8f8f6;
  --gold: #c5a86a;
  --gold-dark: #80693d;
  --silver: #9ca4af;
  --serif: "Cormorant Garamond", "Iowan Old Style", "Baskerville", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --nav-h: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--black); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img, video { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
::selection { color: var(--white); background: rgba(128, 105, 61, .72); }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.02em;
}
h2 {
  margin-bottom: 0;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: .98;
}
h2 em, h1 em {
  color: var(--gold-dark);
  font-weight: 400;
}
.on-dark h2 em, .on-dark h1 em { color: var(--gold); }

.shell {
  width: min(100% - 88px, 1240px);
  margin-inline: auto;
}
.section { padding: clamp(96px, 10vw, 156px) 0; }
.on-dark { color: var(--white); }
[id] { scroll-margin-top: calc(var(--nav-h) + 16px); }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 15px;
  color: var(--black);
  background: var(--gold);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

.eyebrow, .kicker {
  margin: 0 0 25px;
  color: var(--gold-dark);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .24em;
  line-height: 1.3;
  text-transform: uppercase;
}
.on-dark .eyebrow, .on-dark .kicker { color: var(--gold); }
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  margin: 0 13px 3px 0;
  background: currentColor;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-h);
  color: var(--white);
  background: rgba(7, 9, 12, .78);
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: background .4s, border-color .4s, box-shadow .4s;
}
.site-header.scrolled {
  background: rgba(7, 9, 12, .96);
  border-color: rgba(197, 168, 106, .2);
  box-shadow: 0 10px 35px rgba(0, 0, 0, .14);
}
.nav-shell {
  width: min(100% - 64px, 1320px);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  position: relative;
  flex: 0 0 auto;
  display: inline-flex;
  width: 216px;
  height: 39px;
  align-items: center;
  text-decoration: none;
}
.brand img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand-text {
  visibility: hidden;
  display: flex;
  width: 100%;
  align-items: baseline;
  gap: 12px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: .16em;
  line-height: 1;
  white-space: nowrap;
}
.brand.image-failed .brand-text { visibility: visible; }
.brand-text span:last-child { color: var(--silver); }
.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(16px, 1.8vw, 30px);
}
.nav-menu a {
  position: relative;
  color: #bec4cd;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .16em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .25s;
  white-space: nowrap;
}
.nav-menu a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--gold);
  transition: right .35s var(--ease);
}
.nav-menu a:hover { color: var(--white); }
.nav-menu a:hover::after, .nav-menu a.active::after { right: 0; }
.nav-menu a.active { color: var(--white); }
.nav-menu .login-link { color: var(--white); }
.nav-menu .login-link span { color: var(--gold); }
.nav-menu .nav-cta {
  padding: 14px 18px;
  color: var(--black);
  background: var(--gold);
  transition: background .25s, transform .25s;
}
.nav-menu .nav-cta:hover { background: #dbc48e; transform: translateY(-1px); }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 0;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 7px auto;
  background: currentColor;
  transition: transform .35s var(--ease);
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: #0b1016 url("media/hero-poster.webp") center/cover no-repeat;
}
.hero-media, .hero-shade { position: absolute; inset: 0; }
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: grayscale(1) contrast(1.08);
  transform: scale(1.025);
  transition: opacity 1.2s ease;
}
.hero.video-ready .hero-video { opacity: .72; }
.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 7, 10, .94) 0%, rgba(5, 7, 10, .74) 49%, rgba(5, 7, 10, .38) 100%),
    linear-gradient(180deg, rgba(5, 7, 10, .5) 0%, rgba(5, 7, 10, .08) 45%, rgba(5, 7, 10, .96) 100%);
}
.hero-shade::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .26;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 100% 7px;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  min-height: 100svh;
  padding-top: calc(var(--nav-h) + 42px);
  padding-bottom: 42px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-meta {
  display: flex;
  justify-content: space-between;
  color: #c7ccd3;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .17em;
  line-height: 1.3;
  text-transform: uppercase;
}
.hero-meta span:first-child { display: flex; align-items: center; gap: 9px; }
.hero-meta i {
  width: 5px;
  height: 5px;
  background: #6da187;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(109, 161, 135, .13);
}
.hero-meta b, .contact-details b { margin: 0 7px; color: var(--gold); font-weight: 400; }
.hero-copy { max-width: 980px; padding: clamp(65px, 9vh, 120px) 0 55px; }
.hero .kicker { margin-bottom: 20px; }
.hero h1 {
  margin: 0;
  font-size: clamp(3.25rem, 6.4vw, 6.5rem);
  line-height: .87;
}
.title-line { display: block; overflow: hidden; padding-bottom: .08em; }
.title-line > span { display: block; }
.js .hero:not(.entered) .title-line > span { transform: translateY(110%); }
.hero.entered .title-line > span { transform: none; transition: transform 1.05s var(--ease); }
.hero.entered .title-line:nth-child(2) > span { transition-delay: .13s; }
.hero-dek {
  max-width: 720px;
  margin: 30px 0 0;
  color: #d0d4da;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.8;
}
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.button {
  position: relative;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 15px 25px;
  border: 1px solid transparent;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .16em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .3s, background .3s, border-color .3s, transform .3s var(--ease);
}
.button:hover { transform: translateY(-2px); }
.button-gold { color: var(--black); background: var(--gold); }
.button-gold:hover { background: #dbc48e; }
.button-outline { color: var(--white); border-color: rgba(255, 255, 255, .42); background: rgba(7, 9, 12, .1); }
.button-outline:hover { border-color: var(--white); background: rgba(255, 255, 255, .07); }
.hero-principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .2);
}
.hero-principles div {
  min-height: 82px;
  padding: 18px 26px 0 0;
  border-right: 1px solid rgba(255, 255, 255, .13);
}
.hero-principles div:not(:first-child) { padding-left: 26px; }
.hero-principles div:last-child { border-right: 0; }
.hero-principles strong {
  display: block;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.1;
}
.hero-principles span {
  display: block;
  margin-top: 8px;
  color: #9ea6b0;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: .16em;
  line-height: 1.3;
  text-transform: uppercase;
}
.scroll-cue {
  position: absolute;
  right: 2.5vw;
  bottom: 36px;
  z-index: 4;
  display: grid;
  width: 36px;
  height: 54px;
  place-items: center;
}
.scroll-cue::before { content: ""; width: 1px; height: 54px; background: rgba(255,255,255,.22); }
.scroll-cue span { position: absolute; top: 0; width: 1px; height: 18px; background: var(--gold); animation: scroll-cue 2.6s ease-in-out infinite; }
@keyframes scroll-cue { 0% { transform: translateY(0); opacity: 0; } 30% { opacity: 1; } 100% { transform: translateY(36px); opacity: 0; } }

.market {
  position: relative;
  min-height: 780px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black-soft);
}
.market-image {
  position: absolute;
  inset: 0;
  opacity: .48;
  background:
    linear-gradient(90deg, #090b0f 0%, rgba(9,11,15,.94) 46%, rgba(9,11,15,.46) 100%),
    url("media/market-architecture.webp") center/cover no-repeat;
}
.market-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--black) 0%, transparent 17%, transparent 82%, var(--black-soft) 100%);
}
.market-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 11vw;
  align-items: start;
}
.market h2 { font-size: clamp(2.8rem, 5.2vw, 5rem); }
.market-copy { max-width: 620px; }
.market-copy > p { color: #c8cdd4; font-size: 14px; }
.editorial-list { margin: 34px 0 0; padding: 0; border-bottom: 1px solid var(--line-dark); list-style: none; }
.editorial-list li {
  display: flex;
  min-height: 59px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line-dark);
  color: var(--white);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.3;
}
.editorial-list small {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.advisory { background: var(--paper-bright); }
.advisory-lead {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11vw;
  align-items: end;
}
.lead-copy { max-width: 560px; color: var(--text); }
.lead-copy p:last-child { margin-bottom: 0; }
.principle-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 78px;
  border-block: 1px solid var(--line);
}
.principle-strip span {
  min-height: 80px;
  padding: 0 20px;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  color: #545b64;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .12em;
  line-height: 1.45;
  text-align: center;
  text-transform: uppercase;
}
.principle-strip span:last-child { border-right: 0; }
.serve-heading { margin: clamp(110px, 12vw, 168px) 0 48px; }
.serve-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.serve-card { position: relative; padding: clamp(35px, 5vw, 64px); background: var(--paper); overflow: hidden; }
.serve-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--gold-dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .6s var(--ease);
}
.serve-card:hover::after { transform: scaleX(1); }
.card-index { color: var(--gold-dark); font-size: 10px; font-weight: 600; letter-spacing: .18em; }
.card-label { margin: 32px 0 12px; color: #6a7078; font-size: 9px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.serve-card h3 { margin-bottom: 28px; font-size: clamp(1.65rem, 2.5vw, 2.35rem); line-height: 1.05; }
.serve-card ul { margin: 0; padding: 0; list-style: none; }
.serve-card li { position: relative; padding: 11px 0 11px 20px; border-top: 1px solid var(--line); color: #444b54; font-size: 13px; }
.serve-card li::before { content: "›"; position: absolute; left: 0; color: var(--gold-dark); font-size: 20px; line-height: 1; }
.card-note { margin: 26px 0 0; color: #767c84; font-family: var(--serif); font-size: 16px; font-style: italic; line-height: 1.5; }

.mandates { padding-top: clamp(90px, 9vw, 130px); background: var(--black); }
.mandates-heading { padding-bottom: 58px; }
.mandates-heading h2 { font-size: clamp(2.4rem, 4.4vw, 4rem); }
.mandate-grid { display: grid; grid-template-columns: 1fr 1fr; }
.mandate {
  position: relative;
  min-height: 670px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  background-position: center;
  background-size: cover;
}
.mandate::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -2%;
  background: inherit;
  transition: transform 1.2s var(--ease);
}
.mandate:hover::before { transform: scale(1.035); }
.mandate::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,9,12,.05) 20%, rgba(7,9,12,.94) 100%);
}
.mandate-seekers { background-image: url("media/capital-seekers.webp"); background-position: center 36%; }
.mandate-allocators { background-image: url("media/capital-allocators.webp"); background-position: center 42%; }
.mandate + .mandate { border-left: 1px solid rgba(255,255,255,.22); }
.mandate-content { max-width: 570px; padding: clamp(38px, 6vw, 76px); }
.mandate-content > span { color: var(--gold); font-size: 9px; font-weight: 600; letter-spacing: .19em; text-transform: uppercase; }
.mandate-content h3 { margin: 17px 0; color: var(--white); font-size: clamp(2rem, 3.5vw, 3.2rem); line-height: 1; }
.mandate-content p { margin-bottom: 0; color: #c4c9d0; font-size: 13px; }

.structuring { background: var(--paper); }
.structuring-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 11vw; }
.structuring-copy > p { color: var(--text); }
.structure-image { height: 245px; margin-top: 42px; background: #11151b url("media/structuring-detail.webp") center 40%/cover no-repeat; }
.structure-types {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 86px;
  border: 1px solid var(--line);
  background: var(--line);
  gap: 1px;
}
.structure-types article { min-height: 250px; padding: 30px; background: var(--paper-bright); transition: background .3s; }
.structure-types article:hover { background: #edeae2; }
.structure-types span, .process-rail span, .why-grid span, .sector-grid span {
  color: var(--gold-dark);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .16em;
}
.structure-types h3 { margin: 45px 0 12px; font-size: 22px; line-height: 1.1; }
.structure-types p { margin: 0; color: #6e747c; font-size: 12px; line-height: 1.65; }
.process-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 84px;
  padding-top: 1px;
}
.process-rail::before { content: ""; position: absolute; top: 6px; right: 0; left: 0; height: 1px; background: #ccc7bb; }
.process-rail article { position: relative; padding: 32px 24px 0 0; }
.process-rail article::before { content: ""; position: absolute; top: 0; left: 0; width: 11px; height: 11px; background: var(--paper); border: 1px solid var(--gold-dark); border-radius: 50%; }
.process-rail h3 { margin: 9px 0 7px; font-size: 17px; line-height: 1.05; }
.process-rail p { margin: 0; color: #737981; font-size: 10px; line-height: 1.55; }
.legal-note { margin: 46px 0 0; color: #858a90; font-size: 9px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; }

.sectors { background: var(--black-soft); }
.sector-intro { display: grid; grid-template-columns: 1.3fr .7fr; gap: 8vw; align-items: end; }
.sector-intro > p { max-width: 390px; margin: 0; color: var(--text-dark); font-size: 13px; }
.sector-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 68px;
  border: 1px solid var(--line-dark);
}
.sector-grid article {
  position: relative;
  min-height: 175px;
  padding: 24px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, .015);
  transition: background .3s;
}
.sector-grid article:nth-child(5n) { border-right: 0; }
.sector-grid article:nth-child(n+6) { border-bottom: 0; }
.sector-grid article:hover { background: var(--navy); }
.sector-grid span { color: var(--gold); }
.sector-grid h3 { position: absolute; right: 24px; bottom: 24px; left: 24px; margin: 0; color: var(--white); font-size: 19px; line-height: 1.15; }

.process { background: var(--paper-bright); }
.process-heading { margin-bottom: 62px; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.process-grid article { position: relative; min-height: 360px; padding: 34px 34px 30px 0; border-right: 1px solid var(--line); }
.process-grid article:not(:first-child) { padding-left: 34px; }
.process-grid article:last-child { border-right: 0; }
.process-grid article > span { color: var(--gold-dark); font-size: 9px; font-weight: 600; letter-spacing: .17em; text-transform: uppercase; }
.phase-number { position: absolute; top: 13px; right: 28px; color: rgba(16,19,24,.06); font-family: var(--serif); font-size: 104px; line-height: 1; }
.process-grid h3 { margin: 100px 0 16px; font-size: 29px; line-height: 1.05; }
.process-grid p { margin: 0; color: #666d76; font-size: 12px; }
.process-close { margin: 52px 0 0; color: #727881; font-family: var(--serif); font-size: 23px; font-style: italic; }
.process-close strong { color: var(--gold-dark); font-weight: 500; font-style: normal; }

.why { background: var(--navy); }
.why-heading { margin-bottom: 65px; }
.why-grid { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid rgba(197,168,106,.35); }
.why-grid article { min-height: 220px; padding: 30px 25px 0 0; border-right: 1px solid var(--line-dark); }
.why-grid article:not(:first-child) { padding-left: 25px; }
.why-grid article:last-child { border-right: 0; }
.why-grid span { color: var(--gold); }
.why-grid h3 { margin: 43px 0 12px; color: var(--gold); font-size: 23px; }
.why-grid p { margin: 0; color: #adb4bf; font-size: 11px; line-height: 1.65; }

.contact {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
  text-align: center;
}
.contact-bg {
  position: absolute;
  inset: 0;
  opacity: .5;
  background:
    linear-gradient(180deg, rgba(7,9,12,.94), rgba(7,9,12,.68) 45%, rgba(7,9,12,.96)),
    url("media/contact-skyline.webp") center/cover no-repeat;
}
.contact-inner { position: relative; z-index: 1; padding: 105px 0; }
.contact .eyebrow::before { display: none; }
.contact h2 { font-size: clamp(3.3rem, 6.6vw, 6.6rem); }
.contact-copy { max-width: 690px; margin: 30px auto 0; color: #c5cad1; font-size: 14px; }
.contact .button-row { justify-content: center; }
.contact-details { display: flex; margin-top: 54px; align-items: center; justify-content: center; gap: 40px; color: #d6d9de; font-size: 10px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; }
.contact-details a { text-decoration-color: rgba(197,168,106,.5); text-underline-offset: 6px; }

.site-footer { padding: 70px 0 36px; color: #89919c; background: #050609; }
.footer-top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 42px; border-bottom: 1px solid var(--line-dark); }
.footer-brand { width: 224px; height: 40px; }
.footer-top > p { margin: 0; font-size: 9px; font-weight: 500; letter-spacing: .16em; line-height: 1.8; text-align: right; text-transform: uppercase; }
.footer-top > p span { margin: 0 5px; color: var(--gold); }
.disclaimer { max-width: 1100px; margin: 35px 0 0; color: #6d747e; font-size: 8px; font-weight: 400; letter-spacing: .08em; line-height: 1.8; text-transform: uppercase; }
.footer-bottom { display: flex; margin-top: 45px; align-items: center; justify-content: space-between; color: #737b86; font-size: 8px; font-weight: 500; letter-spacing: .13em; text-transform: uppercase; }
.footer-bottom p { margin: 0; }
.footer-bottom a { color: #a9afb8; text-decoration: none; }

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1120px) {
  .nav-menu { gap: 16px; }
  .nav-menu a { font-size: 9px; }
  .brand { width: 190px; height: 34px; }
  .shell { width: min(100% - 64px, 1240px); }
  .market-grid, .advisory-lead, .structuring-intro { gap: 7vw; }
  .structure-types article { padding: 24px; }
  .sector-grid article { padding: 20px; }
}

@media (max-width: 920px) {
  :root { --nav-h: 70px; }
  .nav-shell { width: min(100% - 40px, 1320px); }
  .menu-toggle { display: block; position: relative; z-index: 3; }
  body.menu-open .site-header {
    height: 100vh;
    height: 100svh;
    background: #07090c;
    border-color: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  body.menu-open .nav-shell { height: var(--nav-h); }
  body.menu-open .brand { z-index: 3; }
  .js .nav-menu {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    padding: 105px 28px 42px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    visibility: hidden;
    opacity: 0;
    background: rgba(7, 9, 12, .985);
    transform: translateY(-16px);
    transition: opacity .35s, visibility .35s, transform .45s var(--ease);
  }
  .js .nav-menu.open { visibility: visible; opacity: 1; transform: none; }
  .js .nav-menu a {
    width: 100%;
    max-width: 520px;
    margin-inline: auto;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
  }
  .js .nav-menu a::after { display: none; }
  .js .nav-menu .nav-cta { margin-top: 22px; padding: 17px 20px; color: var(--black); font-family: var(--sans); font-size: 10px; font-weight: 600; letter-spacing: .16em; text-align: center; text-transform: uppercase; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  html:not(.js) .nav-shell { height: auto; min-height: var(--nav-h); flex-wrap: wrap; }
  html:not(.js) .site-header { height: auto; position: absolute; }
  html:not(.js) .nav-menu { width: 100%; padding: 8px 0 12px; display: flex; gap: 14px; flex-wrap: wrap; }
  html:not(.js) .nav-menu a { font-size: 8px; }
  html:not(.js) .nav-menu .nav-cta { padding: 8px 10px; }

  .hero-inner { padding-bottom: 28px; }
  .hero-copy { padding-top: 85px; }
  .hero-principles { grid-template-columns: 1fr 1fr; }
  .hero-principles div { min-height: 66px; padding-top: 14px; border-bottom: 1px solid rgba(255,255,255,.13); }
  .hero-principles div:nth-child(2) { border-right: 0; }
  .hero-principles div:nth-child(n+3) { border-bottom: 0; }
  .scroll-cue { display: none; }
  .market-grid, .advisory-lead, .structuring-intro { grid-template-columns: 1fr; }
  .market-grid { gap: 55px; }
  .market-copy { margin-left: 12vw; }
  .advisory-lead, .structuring-intro { gap: 45px; }
  .principle-strip { grid-template-columns: 1fr 1fr; }
  .principle-strip span:nth-child(2) { border-right: 0; }
  .principle-strip span:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .mandate { min-height: 600px; }
  .structure-types { grid-template-columns: 1fr 1fr; }
  .process-rail { grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
  .process-rail::before { display: none; }
  .process-rail article { border-top: 1px solid #ccc7bb; }
  .process-rail article::before { top: -6px; }
  .sector-grid { grid-template-columns: repeat(2, 1fr); }
  .sector-grid article, .sector-grid article:nth-child(5n), .sector-grid article:nth-child(n+6) { border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
  .sector-grid article:nth-child(2n) { border-right: 0; }
  .sector-grid article:nth-last-child(-n+2) { border-bottom: 0; }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid article:nth-child(3) { border-right: 0; }
  .why-grid article:nth-child(n+4) { border-top: 1px solid var(--line-dark); }
}

@media (max-width: 700px) {
  .shell { width: min(100% - 40px, 1240px); }
  .section { padding: 88px 0; }
  h2 { font-size: clamp(2.55rem, 12vw, 3.7rem); }
  .eyebrow { margin-bottom: 18px; font-size: 9px; }
  .brand { width: 177px; height: 31px; }
  .hero { background-position: 58% center; }
  .hero-video { display: none; }
  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5,7,10,.92), rgba(5,7,10,.5)),
      linear-gradient(180deg, rgba(5,7,10,.44), rgba(5,7,10,.15) 42%, rgba(5,7,10,.97));
  }
  .hero-inner { padding-top: calc(var(--nav-h) + 26px); }
  .hero-meta span:first-child { max-width: 160px; }
  .hero-meta span:last-child { text-align: right; }
  .hero-copy { padding: 78px 0 44px; }
  .hero h1 { font-size: clamp(3rem, 15.2vw, 4.65rem); line-height: .88; }
  .hero-dek { margin-top: 24px; font-size: 13px; line-height: 1.7; }
  .button-row { width: 100%; margin-top: 28px; }
  .button { flex: 1 1 100%; width: 100%; }
  .hero-principles div { padding-right: 12px; }
  .hero-principles div:not(:first-child) { padding-left: 14px; }
  .hero-principles strong { font-size: 16px; }
  .hero-principles span { margin-top: 5px; font-size: 7px; letter-spacing: .12em; }
  .market { min-height: 0; }
  .market-image { opacity: .3; background-position: 68% center; }
  .market-grid { gap: 44px; }
  .market-copy { margin-left: 0; }
  .market-copy > p { font-size: 13px; }
  .editorial-list li { align-items: flex-start; flex-direction: column; gap: 4px; padding: 13px 0; font-size: 17px; }
  .serve-heading { margin: 92px 0 36px; }
  .serve-grid { grid-template-columns: 1fr; }
  .serve-card { padding: 34px 26px; }
  .mandates { padding-top: 80px; }
  .mandates-heading { padding-bottom: 40px; }
  .mandate-grid { grid-template-columns: 1fr; }
  .mandate { min-height: 540px; }
  .mandate + .mandate { border-top: 1px solid rgba(255,255,255,.22); border-left: 0; }
  .mandate-content { padding: 34px 20px; }
  .mandate-content h3 { font-size: 2.45rem; }
  .structure-types { grid-template-columns: 1fr; }
  .structure-types article { min-height: 0; padding: 26px; }
  .structure-types h3 { margin-top: 32px; }
  .process-rail { grid-template-columns: 1fr 1fr; }
  .sector-intro { grid-template-columns: 1fr; gap: 30px; }
  .sector-grid { margin-top: 48px; }
  .sector-grid article { min-height: 145px; padding: 18px; }
  .sector-grid h3 { right: 18px; bottom: 18px; left: 18px; font-size: 17px; }
  .process-heading { margin-bottom: 42px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid article, .process-grid article:not(:first-child) { min-height: 280px; padding: 30px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .process-grid article:last-child { border-bottom: 0; }
  .process-grid h3 { margin-top: 70px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .why-grid article, .why-grid article:not(:first-child) { min-height: 195px; padding: 25px 18px 0; border-right: 1px solid var(--line-dark); border-top: 1px solid var(--line-dark); }
  .why-grid article:nth-child(odd) { padding-left: 0; }
  .why-grid article:nth-child(even) { border-right: 0; }
  .why-grid article:first-child, .why-grid article:nth-child(2) { border-top: 0; }
  .why-grid article:nth-child(3) { border-right: 1px solid var(--line-dark); }
  .why-grid h3 { margin-top: 29px; }
  .contact { min-height: 690px; }
  .contact-inner { padding: 88px 0; }
  .contact-copy { font-size: 13px; }
  .contact-details { align-items: center; flex-direction: column; gap: 12px; font-size: 9px; }
  .footer-top { align-items: flex-start; flex-direction: column; gap: 28px; }
  .footer-top > p { text-align: left; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 18px; }
}

@media (max-width: 400px) {
  .shell { width: min(100% - 32px, 1240px); }
  .nav-shell { width: calc(100% - 28px); }
  .brand { width: 164px; height: 29px; }
  .hero-meta { font-size: 8px; letter-spacing: .12em; }
  .hero h1 { font-size: clamp(2.8rem, 14.7vw, 3.7rem); }
  .hero-copy { padding-top: 66px; }
  .hero-principles div { min-height: 61px; }
  .hero-principles strong { font-size: 15px; }
  .process-rail { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-grid article, .why-grid article:not(:first-child) { min-height: 0; padding: 24px 0; border-right: 0; border-top: 1px solid var(--line-dark); }
  .why-grid article:first-child { border-top: 0; }
  .why-grid article:nth-child(2) { border-top: 1px solid var(--line-dark); }
  .why-grid article:nth-child(3) { border-right: 0; }
  .why-grid h3 { margin-top: 18px; }
}

@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;
  }
  .hero-video { display: none; }
  .js .reveal { opacity: 1; transform: none; }
  .js .hero:not(.entered) .title-line > span { transform: none; }
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .site-header { background: rgba(7, 9, 12, .96); }
}
