:root {
  --paper: #f3f7f8;
  --paper-deep: #e4ecef;
  --ink: #16252c;
  --ink-soft: #50636c;
  --pine: #315f74;
  --pine-deep: #214556;
  --sage: #dcebea;
  --rust: #39739d;
  --rust-dark: #245c82;
  --white: #fbfdfd;
  --line: rgba(22, 37, 44, 0.2);
  --line-light: rgba(251, 253, 253, 0.24);
  --shell: min(1280px, calc(100% - 64px));
  --sans: "Helvetica Neue", "Arial Nova", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--rust);
  outline-offset: 4px;
}

h1,
h2,
h3,
p,
figure,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  margin-bottom: 0;
  font-weight: 500;
  hyphens: auto;
  letter-spacing: -0.045em;
  overflow-wrap: break-word;
}

h1 {
  max-width: 930px;
  font-size: clamp(58px, 7.1vw, 105px);
  line-height: 0.93;
}

h2 {
  font-size: clamp(46px, 5.2vw, 76px);
  line-height: 0.98;
}

h3 {
  font-size: clamp(28px, 3vw, 43px);
  line-height: 1.06;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  transform: translateY(-160%);
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(243, 247, 248, 0.95);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: baseline;
  text-decoration: none;
}

.brand-name {
  padding-right: 18px;
  font-size: 19px;
  font-weight: 750;
  letter-spacing: -0.025em;
}

.brand-role {
  padding-left: 18px;
  border-left: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  gap: 27px;
  align-items: center;
}

.main-nav a {
  position: relative;
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}

.main-nav a:not(.nav-contact)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--rust);
  content: "";
  transition: transform 180ms ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.main-nav .nav-contact {
  padding: 9px 14px;
  border: 1px solid var(--ink);
  transition: background 180ms ease, color 180ms ease;
}

.main-nav .nav-contact:hover {
  background: var(--ink);
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 6px auto;
  background: var(--ink);
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  display: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  grid-template-rows: auto auto;
  gap: 42px clamp(56px, 7vw, 104px);
  align-items: start;
  padding-block: clamp(62px, 7vw, 94px) 28px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding-top: 10px;
}

.eyebrow {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 24px;
  color: var(--rust-dark);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.105em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  flex: 0 0 auto;
  background: currentColor;
  content: "";
}

.hero h1 span {
  position: relative;
  z-index: 0;
}

.hero h1 span::after {
  position: absolute;
  z-index: -1;
  right: -0.02em;
  bottom: 0.04em;
  left: -0.02em;
  height: 0.14em;
  background: var(--rust);
  content: "";
}

.hero-lead {
  max-width: 770px;
  margin: 32px 0 34px;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 52px;
  gap: 26px;
  align-items: center;
  justify-content: space-between;
  padding: 13px 18px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  min-width: 222px;
  background: var(--rust);
  color: var(--white);
}

.button-primary:hover {
  background: var(--rust-dark);
}

.text-link {
  font-size: 13px;
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

.text-link span {
  display: inline-block;
  margin-left: 5px;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(2px, -2px);
}

.portrait {
  position: relative;
  z-index: 1;
  width: 240px;
  margin: 0;
  justify-self: end;
  box-shadow: 12px 12px 0 var(--rust);
}

.portrait img {
  position: relative;
  width: 100%;
  height: auto;
  filter: saturate(0.86) contrast(1.02);
}

.availability {
  z-index: 2;
  min-width: 0;
  max-width: 100%;
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.065em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.hero-grid > *,
.profile-grid > *,
.section-intro > *,
.service-row > *,
.work-process > *,
.situations-grid > *,
.case-list > *,
.background-grid > *,
.contact-grid > * {
  min-width: 0;
}

.section {
  position: relative;
  padding: clamp(96px, 11vw, 156px) 0;
}

.section-index {
  color: rgba(23, 33, 30, 0.18);
  font-size: clamp(66px, 7vw, 100px);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.8;
}

.section-heading h2 {
  max-width: 830px;
}

.profile-section {
  background: var(--sage);
  color: var(--ink);
}

.profile-grid {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 52px;
  align-items: start;
}

.profile-section .section-heading {
  grid-column: 2;
}

.profile-section .section-heading h2 {
  max-width: 1120px;
  font-size: clamp(44px, 4.4vw, 68px);
  hyphens: auto;
}

.profile-section .section-index {
  color: rgba(22, 37, 44, 0.16);
}

.profile-section .eyebrow {
  color: var(--rust-dark);
}

.profile-copy {
  display: grid;
  max-width: none;
  grid-column: 2;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 46px 64px;
  color: var(--ink-soft);
}

.profile-lead {
  min-width: 0;
}

.section-graphic {
  width: min(100%, 390px);
  margin-top: 44px;
  color: var(--rust-dark);
}

.section-graphic svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.section-graphic svg * {
  vector-effect: non-scaling-stroke;
}

.section-graphic circle {
  fill: var(--paper);
}

.section-graphic .graphic-focus {
  fill: var(--sage);
  stroke-width: 2;
}

.graphic-labels {
  display: grid;
  gap: 10px;
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.075em;
  line-height: 1.35;
  text-transform: uppercase;
}

.graphic-labels strong {
  color: var(--rust-dark);
  font: inherit;
}

.profile-graphic-labels {
  grid-template-columns: repeat(3, auto) 1fr;
}

.profile-graphic-labels strong {
  justify-self: end;
  text-align: right;
}

.lead-copy {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(27px, 3vw, 41px);
  font-weight: 450;
  letter-spacing: -0.035em;
  line-height: 1.18;
}

.body-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.body-columns p {
  margin-bottom: 0;
}

blockquote {
  grid-column: 1 / -1;
  position: relative;
  margin: 44px 0 0;
  padding: 28px 0 0 48px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: clamp(24px, 2.4vw, 35px);
  font-weight: 450;
  letter-spacing: -0.035em;
  line-height: 1.25;
}

blockquote::before {
  position: absolute;
  margin-left: -48px;
  color: var(--rust-dark);
  content: "↳";
}

.services-section {
  background: var(--paper);
}

.section-intro {
  display: grid;
  grid-template-columns: 110px minmax(300px, 1.2fr) minmax(250px, 0.65fr);
  gap: 52px;
  align-items: end;
  margin-bottom: 74px;
}

.intro-copy {
  max-width: 420px;
  margin-bottom: 3px;
  color: var(--ink-soft);
  font-size: 19px;
}

.service-list {
  border-bottom: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: 110px minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 52px;
  align-items: start;
  padding: 36px 0 40px;
  border-top: 1px solid var(--line);
  transition: background 180ms ease, padding 180ms ease;
}

.service-row:hover {
  padding-right: 22px;
  padding-left: 22px;
  background: rgba(220, 235, 234, 0.82);
}

.service-marker {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

.item-number {
  padding-top: 7px;
  color: var(--rust-dark);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.service-graphic {
  width: 78px;
  height: auto;
  overflow: visible;
  color: var(--rust-dark);
  fill: var(--paper);
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
  vector-effect: non-scaling-stroke;
}

.service-graphic path {
  fill: none;
}

.service-graphic .graphic-soft {
  opacity: 0.45;
}

.service-row h3 {
  max-width: 480px;
}

.service-copy p {
  max-width: 600px;
  margin-bottom: 18px;
  color: var(--ink-soft);
}

.service-copy .service-topics {
  margin-bottom: 0;
  color: var(--rust-dark);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-process {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(52px, 7vw, 96px);
  align-items: start;
  margin-top: 96px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}

.work-process-heading h3 {
  max-width: 500px;
  font-size: clamp(34px, 3.2vw, 49px);
}

.work-process-heading > p:last-child {
  max-width: 390px;
  margin: 24px 0 0;
  color: var(--ink-soft);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.process-step {
  position: relative;
  min-height: 240px;
  padding: 28px 24px 30px;
  border-left: 1px solid var(--line);
}

.process-step:first-child {
  border-left: 0;
}

.process-step:not(:last-child)::after {
  position: absolute;
  z-index: 1;
  top: 25px;
  right: -11px;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  background: var(--paper);
  color: var(--rust-dark);
  content: "→";
  font-size: 14px;
  font-weight: 750;
}

.process-number {
  display: block;
  margin-bottom: 42px;
  color: var(--rust-dark);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.process-step strong {
  display: block;
  margin-bottom: 13px;
  color: var(--ink);
  font-size: clamp(19px, 1.7vw, 25px);
  font-weight: 650;
  letter-spacing: -0.025em;
}

.process-step p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.5;
}

.situations-section {
  background: var(--sage);
}

.situations-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(420px, 1.22fr);
  gap: clamp(70px, 10vw, 160px);
}

.situation-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.situation-list p {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  margin: 0;
  padding: 20px 0 22px;
  border-bottom: 1px solid var(--line);
  font-size: clamp(18px, 1.75vw, 24px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.situation-list p:nth-child(odd) {
  padding-right: 28px;
}

.situation-list p:nth-child(even) {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.situation-list span {
  padding-top: 4px;
  color: var(--rust-dark);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.practice-section {
  background: var(--paper-deep);
}

.case-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.case-item {
  padding: 38px 34px 42px;
  border-left: 1px solid var(--line);
}

.case-item:nth-child(2) {
  border-left: 0;
}

.case-featured {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 0.72fr 1.05fr 1fr;
  gap: 46px;
  align-items: start;
  padding: 48px 0 54px;
  border-bottom: 1px solid var(--line);
  border-left: 0;
}

.case-featured h3 {
  font-size: clamp(39px, 4.2vw, 62px);
}

.case-item h3 {
  margin-bottom: 24px;
}

.case-item > p:not(.case-tag):not(.case-focus) {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.case-tag {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 26px;
  color: var(--rust-dark);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.case-tag-text {
  min-width: 0;
}

.case-map {
  display: grid;
  width: 23px;
  flex: 0 0 23px;
  grid-template-columns: repeat(2, 7px);
  gap: 5px;
  padding-top: 1px;
}

.case-map > span {
  width: 7px;
  height: 7px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.42;
}

.case-map-1 > span:nth-child(1),
.case-map-2 > span:nth-child(2),
.case-map-3 > span:nth-child(3),
.case-map-4 > span:nth-child(4) {
  background: currentColor;
  opacity: 1;
}

.case-featured .case-tag {
  padding-top: 7px;
}

.case-focus {
  align-self: end;
  margin: 32px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.case-focus span {
  display: block;
  margin-bottom: 7px;
  color: var(--rust-dark);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.insights-section {
  background: var(--pine);
  color: var(--white);
}

.insights-intro {
  display: grid;
  grid-template-columns: 110px minmax(300px, 1.2fr) minmax(260px, 0.65fr);
  gap: 52px;
  align-items: end;
  margin-bottom: 74px;
}

.insights-section .section-index {
  color: rgba(251, 253, 253, 0.17);
}

.insights-section .eyebrow,
.insights-page .eyebrow,
.article-page .eyebrow {
  color: #a6d8e0;
}

.insights-intro-copy {
  max-width: 460px;
  color: rgba(251, 253, 253, 0.76);
}

.insights-intro-copy p {
  margin-bottom: 22px;
}

.insights-intro-copy .text-link {
  color: var(--white);
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.insight-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 42px 46px 46px 0;
}

.insight-card:nth-child(even) {
  padding-right: 0;
  padding-left: 46px;
  border-left: 1px solid var(--line-light);
}

.insight-card:nth-child(-n + 2) {
  border-bottom: 1px solid var(--line-light);
}

.insight-meta {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 38px;
  color: rgba(251, 253, 253, 0.62);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.085em;
  text-transform: uppercase;
}

.insight-meta span {
  color: #a6d8e0;
}

.insight-topic-mark {
  width: 76px;
  height: 32px;
  flex: 0 0 76px;
  margin-left: auto;
  overflow: visible;
  fill: var(--pine);
  stroke: rgba(189, 229, 235, 0.68);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.insight-topic-mark path {
  fill: none;
  opacity: 0.65;
}

.insight-topic-mark circle {
  vector-effect: non-scaling-stroke;
}

.insight-topic-mark .is-active {
  fill: #bde5eb;
  stroke: #bde5eb;
}

.insight-card h3 {
  max-width: 570px;
  margin-bottom: 26px;
  font-size: clamp(31px, 3.2vw, 47px);
}

.insight-card h3 a {
  text-decoration: none;
}

.insight-card h3 a:hover {
  color: #bde5eb;
}

.insight-card > p:not(.insight-meta) {
  max-width: 570px;
  margin-bottom: 36px;
  color: rgba(251, 253, 253, 0.72);
}

.card-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  align-self: flex-start;
  margin-top: auto;
  color: var(--white);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.035em;
  text-decoration-color: rgba(251, 253, 253, 0.46);
  text-underline-offset: 6px;
}

.card-link span {
  transition: transform 180ms ease;
}

.card-link:hover span {
  transform: translateX(4px);
}

.insights-page,
.article-page {
  background: var(--paper);
}

.insights-main,
.article-main {
  min-height: 70vh;
}

.insights-hero {
  padding: clamp(74px, 9vw, 128px) 0 clamp(62px, 8vw, 104px);
  border-bottom: 1px solid var(--line);
  background: var(--pine);
  color: var(--white);
}

.insights-hero-grid {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 52px;
  align-items: start;
}

.insights-hero .section-index {
  color: rgba(251, 253, 253, 0.17);
}

.insights-hero h1 {
  max-width: 1000px;
  margin-bottom: 32px;
  font-size: clamp(58px, 7vw, 98px);
}

.insights-hero-copy > p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(251, 253, 253, 0.76);
  font-size: clamp(18px, 1.8vw, 23px);
}

.insights-library {
  padding: clamp(78px, 9vw, 126px) 0;
}

.insights-library .insights-grid {
  border-color: var(--line);
}

.insights-library .insight-card {
  min-height: 390px;
}

.insights-library .insight-card:nth-child(even) {
  border-color: var(--line);
}

.insights-library .insight-card:nth-child(-n + 2) {
  border-color: var(--line);
}

.insights-library .insight-meta,
.insights-library .insight-card > p:not(.insight-meta) {
  color: var(--ink-soft);
}

.insights-library .insight-meta span {
  color: var(--rust-dark);
}

.insights-library .insight-card h2 {
  max-width: 570px;
  margin-bottom: 26px;
  font-size: clamp(31px, 3.2vw, 47px);
  line-height: 1.06;
}

.insights-library .insight-card h2 a {
  text-decoration: none;
}

.insights-library .insight-card h2 a:hover {
  color: var(--rust-dark);
}

.insights-library .card-link {
  color: var(--ink);
  text-decoration-color: rgba(23, 33, 30, 0.42);
}

.editorial-note {
  display: grid;
  grid-template-columns: 110px minmax(0, 760px);
  gap: 52px;
  padding-top: 54px;
  color: var(--ink-soft);
}

.editorial-note strong {
  color: var(--ink);
}

.editorial-note p {
  margin: 0;
}

.article-hero {
  padding: clamp(68px, 8vw, 116px) 0 clamp(62px, 8vw, 104px);
  border-bottom: 1px solid var(--line);
}

.article-hero-grid {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 52px;
}

.article-index {
  color: rgba(23, 33, 30, 0.18);
  font-size: clamp(66px, 7vw, 100px);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.8;
}

.article-header {
  max-width: 1060px;
}

.article-header h1 {
  max-width: 1050px;
  margin-bottom: 34px;
  font-size: clamp(54px, 6.7vw, 96px);
  line-height: 0.96;
}

.article-deck {
  max-width: 790px;
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.42;
}

.article-meta {
  margin-bottom: 0;
  color: var(--rust-dark);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.article-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 760px);
  gap: clamp(54px, 8vw, 118px);
  justify-content: center;
  padding: clamp(72px, 9vw, 128px) 0;
}

.article-aside {
  position: sticky;
  top: 116px;
  align-self: start;
  padding-top: 8px;
}

.article-aside p {
  margin-bottom: 22px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.55;
}

.article-aside strong {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 10px;
  letter-spacing: 0.085em;
  text-transform: uppercase;
}

.article-aside .text-link {
  color: var(--rust-dark);
  font-size: 12px;
}

.article-body {
  min-width: 0;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.72;
}

.article-body > p:first-child {
  color: var(--ink);
  font-size: 24px;
  line-height: 1.55;
}

.article-body h2 {
  margin: 68px 0 24px;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.04;
}

.article-body h3 {
  margin: 42px 0 16px;
  color: var(--ink);
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.article-body p {
  margin-bottom: 24px;
}

.article-body ul,
.article-body ol {
  display: grid;
  gap: 12px;
  margin: 0 0 30px;
  padding-left: 24px;
}

.article-body li::marker {
  color: var(--rust-dark);
  font-weight: 700;
}

.article-callout {
  margin: 48px 0;
  padding: 28px 30px;
  border-left: 5px solid var(--rust);
  background: var(--sage);
  color: var(--ink);
  font-size: clamp(22px, 2.5vw, 31px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.article-callout p {
  margin: 0;
}

.concept-list {
  margin: 42px 0 48px;
  border-top: 1px solid var(--line);
}

.concept-list > div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 28px;
  padding: 22px 0 24px;
  border-bottom: 1px solid var(--line);
}

.concept-list dt {
  color: var(--rust-dark);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.concept-list dd {
  margin: 0;
}

.article-questions {
  margin-top: 64px;
  padding: 34px 36px;
  background: var(--pine);
  color: rgba(251, 253, 253, 0.78);
}

.article-questions h2 {
  margin-top: 0;
  color: var(--white);
}

.article-questions li::marker {
  color: #a6d8e0;
}

.article-navigation {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  background: var(--white);
}

.article-navigation a {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  justify-content: space-between;
  padding: 38px max(32px, calc((100vw - 1280px) / 2));
  text-decoration: none;
}

.article-navigation a + a {
  border-left: 1px solid var(--line);
}

.article-navigation span {
  color: var(--rust-dark);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.article-navigation strong {
  max-width: 520px;
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.article-navigation a:hover strong {
  color: var(--rust-dark);
}

.background-section {
  background: var(--white);
}

.background-grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.8fr) minmax(430px, 1.2fr);
  gap: clamp(70px, 10vw, 160px);
}

.background-intro {
  position: sticky;
  top: 122px;
  align-self: start;
}

.background-intro .section-index {
  margin-bottom: 50px;
}

.background-intro h2 {
  margin-bottom: 28px;
}

.background-intro > p:not(.eyebrow) {
  max-width: 480px;
  color: var(--ink-soft);
  font-size: 19px;
}

.background-graphic {
  width: min(100%, 360px);
  margin-top: 46px;
}

.background-graphic circle {
  fill: var(--white);
}

.background-graphic .graphic-focus {
  fill: var(--sage);
}

.background-graphic-labels {
  grid-template-columns: 1fr 1fr auto;
}

.background-graphic-labels span:nth-child(2) {
  text-align: center;
}

.background-graphic-labels strong {
  justify-self: end;
  text-align: right;
}

.timeline {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 30px;
  padding: 28px 0 31px;
  border-bottom: 1px solid var(--line);
}

.timeline-years {
  padding-top: 5px;
  color: var(--rust-dark);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.07em;
}

.timeline h3 {
  margin-bottom: 10px;
  font-size: clamp(23px, 2vw, 31px);
}

.timeline p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.credentials-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 0;
  margin-top: 88px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.credential-block {
  display: grid;
  grid-template-columns: 125px 1fr;
  gap: 30px;
  padding: 38px 34px 42px 0;
}

.credential-block + .credential-block {
  padding-right: 0;
  padding-left: 40px;
  border-left: 1px solid var(--line);
}

.credential-label {
  margin: 4px 0 0;
  color: var(--rust-dark);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.credential-block ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.credential-block li {
  color: var(--ink-soft);
}

.contact-section {
  padding: clamp(88px, 11vw, 148px) 0;
  background: var(--rust);
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 110px minmax(340px, 1.2fr) minmax(300px, 0.8fr);
  gap: 52px;
  align-items: start;
}

.contact-grid .eyebrow {
  color: var(--white);
}

.contact-grid .eyebrow::before {
  background: var(--white);
}

.contact-grid h2 {
  max-width: 820px;
}

.contact-grid > p:not(.eyebrow) {
  max-width: 480px;
  color: rgba(251, 253, 253, 0.82);
  font-size: 19px;
}

.contact-graphic {
  display: grid;
  width: min(100%, 650px);
  grid-column: 2 / -1;
  grid-template-columns: minmax(84px, 1fr) 34px minmax(84px, 1fr) 34px minmax(104px, 1fr);
  gap: 12px;
  align-items: start;
  margin-top: 10px;
  padding: 26px 0 22px;
  border-top: 1px solid rgba(251, 253, 253, 0.32);
  border-bottom: 1px solid rgba(251, 253, 253, 0.32);
}

.contact-stage {
  display: grid;
  gap: 9px;
  justify-items: center;
  color: rgba(251, 253, 253, 0.88);
  text-align: center;
}

.contact-stage svg {
  display: block;
  width: 80px;
  max-width: 100%;
  height: 58px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.contact-stage svg * {
  vector-effect: non-scaling-stroke;
}

.contact-stage span {
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.075em;
  line-height: 1.35;
  text-transform: uppercase;
}

.contact-arrow {
  align-self: center;
  margin-top: -17px;
  color: rgba(251, 253, 253, 0.68);
  font-size: 18px;
  text-align: center;
}

.contact-actions {
  display: flex;
  grid-column: 2 / -1;
  gap: 28px;
  align-items: center;
  margin-top: 8px;
}

.button-dark {
  min-width: 310px;
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover {
  background: var(--pine-deep);
}

.site-footer {
  padding: 28px 0;
  background: var(--ink);
  color: rgba(251, 253, 253, 0.64);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  align-items: center;
}

.footer-inner p {
  margin: 0;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
}

.footer-editorial {
  justify-self: center;
  color: var(--white);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.075em;
  text-decoration-color: rgba(251, 253, 253, 0.42);
  text-underline-offset: 5px;
  text-transform: uppercase;
}

.footer-links a {
  color: var(--white);
  font-size: 11px;
  font-weight: 650;
  text-decoration-color: rgba(251, 253, 253, 0.42);
  text-underline-offset: 5px;
}

.legal-page {
  background: var(--white);
}

.legal-main {
  min-height: 70vh;
  padding: clamp(72px, 8vw, 112px) 0 clamp(92px, 10vw, 148px);
}

.legal-shell {
  width: min(920px, calc(100% - 64px));
  margin-inline: auto;
}

.legal-main h1 {
  max-width: none;
  margin-bottom: 30px;
  font-size: clamp(54px, 7vw, 88px);
}

.legal-intro {
  max-width: 760px;
  margin-bottom: 64px;
  color: var(--ink-soft);
  font-size: 20px;
}

.legal-content {
  max-width: 800px;
}

.legal-content section {
  padding: 34px 0 38px;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin-bottom: 20px;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.08;
}

.legal-content h3 {
  margin: 28px 0 12px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.legal-content p,
.legal-content li {
  color: var(--ink-soft);
}

.legal-content p:last-child {
  margin-bottom: 0;
}

.legal-content ul {
  display: grid;
  gap: 8px;
  padding-left: 20px;
}

.legal-content a {
  color: var(--rust-dark);
  overflow-wrap: anywhere;
  text-underline-offset: 4px;
}

.legal-contact {
  color: var(--ink);
  font-size: 19px;
  line-height: 1.7;
}

.legal-note {
  margin: 18px 0 0;
  padding: 20px 22px;
  border-left: 4px solid var(--rust);
  background: var(--sage);
}

.legal-note strong {
  color: var(--ink);
}

.legal-updated {
  margin-top: 44px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal[data-delay="1"] {
  transition-delay: 90ms;
}

.reveal[data-delay="2"] {
  transition-delay: 160ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .brand-role {
    display: none;
  }

  .main-nav {
    gap: 20px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 44px;
  }

  .portrait {
    width: 220px;
  }

  .profile-grid {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 38px;
  }

  .profile-copy {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .profile-copy .body-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
  }

  .section-intro,
  .insights-intro,
  .service-row,
  .contact-grid {
    grid-template-columns: 82px minmax(0, 1fr) minmax(300px, 0.9fr);
    gap: 38px;
  }

  .case-featured {
    grid-template-columns: 0.7fr 1fr 0.9fr;
    gap: 32px;
  }

  .credentials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .credential-block {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 880px) {
  :root {
    --shell: min(100% - 40px, 760px);
  }

  .header-inner {
    min-height: 68px;
  }

  .site-header {
    background: var(--paper);
    backdrop-filter: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav-toggle[aria-expanded="true"] span:not(.sr-only):nth-of-type(2) {
    transform: translateY(4px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:not(.sr-only):nth-of-type(3) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    z-index: 1000;
    top: 68px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    width: 100%;
    height: calc(100vh - 68px);
    height: calc(100dvh - 68px);
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    padding: 34px 20px 48px;
    overflow-y: auto;
    background: var(--paper);
    box-shadow: inset 0 1px 0 var(--line);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a,
  .main-nav .nav-contact {
    flex: 0 0 auto;
    padding: 19px 4px;
    border: 0;
    border-bottom: 1px solid var(--line);
    font-size: 23px;
    line-height: 1.15;
  }

  .hero-grid {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto;
    gap: 54px;
    padding-block: 74px 26px;
  }

  .portrait {
    width: min(64%, 210px);
    justify-self: center;
  }

  .availability {
    grid-column: 1;
  }

  .profile-grid {
    grid-template-columns: 70px 1fr;
  }

  .profile-copy {
    grid-column: 2;
    display: block;
    margin-top: 12px;
  }

  .profile-copy .body-columns {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 30px;
  }

  .section-intro {
    grid-template-columns: 70px 1fr;
  }

  .insights-intro,
  .insights-hero-grid,
  .article-hero-grid {
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 38px;
  }

  .insights-intro-copy {
    grid-column: 2;
  }

  .insight-card {
    min-height: 390px;
  }

  .article-layout {
    grid-template-columns: minmax(0, 760px);
  }

  .article-aside {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--line);
  }

  .section-intro .intro-copy {
    grid-column: 2;
    margin-top: -8px;
  }

  .service-row {
    grid-template-columns: 72px 1fr;
    gap: 24px;
  }

  .service-copy {
    grid-column: 2;
  }

  .work-process {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-step:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .process-step:nth-child(3) {
    border-left: 0;
  }

  .process-step::after {
    display: none !important;
  }

  .situations-grid,
  .background-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .case-list {
    grid-template-columns: 1fr;
  }

  .case-item,
  .case-item:nth-child(2) {
    padding: 34px 0 38px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .case-featured {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 42px 0 48px;
    border-top: 0;
  }

  .background-intro {
    position: static;
  }

  .credentials-grid {
    grid-template-columns: 1fr;
  }

  .credential-block + .credential-block {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .contact-grid {
    grid-template-columns: 70px 1fr;
  }

  .contact-grid > p:not(.eyebrow) {
    grid-column: 2;
  }

  .contact-graphic {
    grid-column: 2;
  }

  .contact-actions {
    grid-column: 2;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 30px);
  }

  body {
    font-size: 16px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(42px, 12.5vw, 50px);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(40px, 12vw, 58px);
    line-height: 1.03;
  }

  .brand-name {
    font-size: 17px;
  }

  .hero {
    overflow: hidden;
  }

  .hero-grid {
    gap: 46px;
    padding-top: 50px;
  }

  .hero-lead {
    max-width: 100%;
    font-size: 17px;
    line-height: 1.55;
  }

  .hero .eyebrow {
    gap: 9px;
    font-size: 9px;
    letter-spacing: 0.075em;
  }

  .hero .eyebrow::before {
    width: 22px;
  }

  .hero-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    max-width: 100%;
  }

  .button-primary,
  .button-dark {
    width: 100%;
    min-width: 0;
  }

  .portrait {
    width: min(62%, 190px);
  }

  .section {
    padding: 86px 0;
  }

  .section-index {
    margin-bottom: 32px;
  }

  .profile-grid,
  .section-intro,
  .insights-intro,
  .insights-hero-grid,
  .article-hero-grid,
  .contact-grid {
    display: block;
  }

  .insights-intro .section-index,
  .insights-hero .section-index,
  .article-index {
    margin-bottom: 42px;
  }

  .insights-intro-copy {
    margin-top: 34px;
  }

  .insights-grid {
    grid-template-columns: 1fr;
  }

  .insight-card,
  .insight-card:nth-child(even) {
    min-height: 0;
    padding: 34px 0 38px;
    border-bottom: 1px solid var(--line-light);
    border-left: 0;
  }

  .insights-library .insight-card,
  .insights-library .insight-card:nth-child(even) {
    border-bottom-color: var(--line);
  }

  .insight-card:last-child {
    border-bottom: 0;
  }

  .insight-meta {
    gap: 10px;
    margin-bottom: 26px;
  }

  .insight-topic-mark {
    width: 58px;
    flex-basis: 58px;
  }

  .insight-card h3,
  .insights-library .insight-card h2 {
    font-size: 34px;
  }

  .editorial-note {
    display: block;
    padding-top: 42px;
  }

  .editorial-note .item-number {
    display: block;
    margin-bottom: 16px;
  }

  .article-header h1 {
    font-size: clamp(42px, 12vw, 56px);
  }

  .article-deck {
    font-size: 19px;
  }

  .article-layout {
    gap: 46px;
    padding-top: 62px;
  }

  .article-aside {
    grid-template-columns: 1fr;
    gap: 4px;
  }

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

  .article-body > p:first-child {
    font-size: 20px;
  }

  .concept-list > div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .article-callout,
  .article-questions {
    margin-right: -15px;
    margin-left: -15px;
  }

  .article-questions {
    padding: 30px 24px;
  }

  .article-navigation {
    grid-template-columns: 1fr;
  }

  .article-navigation a {
    min-height: 150px;
    padding: 30px 15px;
  }

  .article-navigation a + a {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .profile-copy {
    margin-top: 48px;
  }

  .section-graphic {
    margin-top: 34px;
  }

  .profile-graphic-labels {
    grid-template-columns: repeat(3, 1fr);
  }

  .profile-graphic-labels strong {
    grid-column: 1 / -1;
  }

  .lead-copy {
    font-size: 28px;
  }

  blockquote {
    padding-left: 38px;
  }

  blockquote::before {
    margin-left: -38px;
  }

  .section-intro {
    margin-bottom: 48px;
  }

  .section-intro .intro-copy {
    margin-top: 34px;
  }

  .availability {
    font-size: 9px;
    letter-spacing: 0.045em;
    line-height: 1.55;
  }

  .service-row {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 16px;
    padding: 28px 0 32px;
  }

  .service-marker {
    gap: 14px;
  }

  .service-graphic {
    width: 48px;
    stroke-width: 2;
  }

  .service-row:hover {
    padding-right: 0;
    padding-left: 0;
    background: transparent;
  }

  .service-copy {
    grid-column: 2;
  }

  .work-process {
    gap: 34px;
    margin-top: 64px;
    padding-top: 38px;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-step,
  .process-step:nth-child(3) {
    min-height: 0;
    padding: 25px 0 27px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .process-step:first-child {
    border-top: 0;
  }

  .process-number {
    margin-bottom: 20px;
  }

  .situation-list {
    grid-template-columns: 1fr;
  }

  .situation-list p:nth-child(odd),
  .situation-list p:nth-child(even) {
    padding-right: 0;
    padding-left: 0;
    border-left: 0;
  }

  .situation-list p {
    grid-template-columns: 32px 1fr;
    gap: 12px;
  }

  .case-featured h3 {
    font-size: 40px;
  }

  .timeline li {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .background-graphic-labels {
    grid-template-columns: 1fr 1fr;
  }

  .background-graphic-labels strong {
    grid-column: 1 / -1;
  }

  .credentials-grid {
    margin-top: 60px;
  }

  .credential-block {
    padding: 30px 0;
  }

  .contact-grid h2 {
    margin-bottom: 30px;
  }

  .contact-grid > p:not(.eyebrow) {
    margin-bottom: 30px;
  }

  .contact-graphic {
    grid-template-columns: minmax(58px, 1fr) 18px minmax(58px, 1fr) 18px minmax(84px, 1.2fr);
    gap: 3px;
    margin: 0 0 30px;
    padding: 22px 0 18px;
  }

  .contact-stage {
    gap: 7px;
  }

  .contact-stage svg {
    width: 62px;
  }

  .contact-stage span {
    font-size: 8px;
    letter-spacing: 0.055em;
  }

  .contact-arrow {
    margin-top: -15px;
    font-size: 14px;
  }

  .contact-actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 0;
  }

  .footer-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
  }

  .footer-editorial {
    justify-self: start;
    margin-top: 8px;
  }

  .footer-links {
    gap: 14px;
    justify-content: flex-start;
  }

  .legal-shell {
    width: calc(100% - 30px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
