:root {
  --black: #080808;
  --graphite: #161616;
  --charcoal: #242424;
  --steel: #55585c;
  --silver: #a7a9ac;
  --dark-muted: #8d9093;
  --light-silver: #d4d5d6;
  --paper: #f3f2ef;
  --off-white: #faf9f6;
  --white: #ffffff;
  --rule-dark: rgba(255, 255, 255, 0.18);
  --rule-light: rgba(8, 8, 8, 0.2);
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
  --page: 1240px;
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --section-space: clamp(5.5rem, 10vw, 9.5rem);
  --header-height: 5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1.5rem);
}

body {
  margin: 0;
  background: var(--off-white);
  color: var(--black);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

::selection {
  background: var(--silver);
  color: var(--black);
}

a {
  color: inherit;
  text-underline-offset: 0.22em;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

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

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  background: var(--white);
  color: var(--black);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

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

.page-shell {
  width: min(calc(100% - (var(--gutter) * 2)), var(--page));
  margin-inline: auto;
}

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

.eyebrow {
  margin-bottom: 1.5rem;
  color: var(--silver);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: var(--steel);
}

.section-number {
  margin-bottom: 0.6rem;
  color: var(--steel);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.section-label {
  color: var(--steel);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

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

.section-grid {
  display: grid;
  grid-template-columns: 8.5rem minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 6rem);
  padding-block: var(--section-space);
}

.section-rail {
  padding-top: 0.4rem;
  border-top: 1px solid var(--rule-light);
}

.section-heading {
  margin-bottom: clamp(3.5rem, 7vw, 6.5rem);
}

.section-heading h2,
.scale-heading h2,
.leadership h2,
.governance h2,
.insights h2,
.advisory h2,
.languages h2,
.contact h2 {
  margin-bottom: 0;
  font-size: clamp(2.5rem, 5.2vw, 5.15rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.section-heading-split {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(16rem, 0.6fr);
  align-items: end;
  gap: 3rem;
}

.section-heading-split > p,
.scale-heading > p {
  max-width: 25rem;
  margin-bottom: 0.35rem;
  color: var(--steel);
  font-size: 0.94rem;
}

/* Header */
.site-header {
  position: absolute;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid var(--rule-dark);
  color: var(--white);
  transition: background-color 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled,
.site-header-solid {
  position: fixed;
  background: rgba(8, 8, 8, 0.97);
  border-bottom-color: var(--rule-dark);
}

.header-inner {
  display: flex;
  width: min(calc(100% - (var(--gutter) * 2)), var(--page));
  height: 100%;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
}

.brand {
  position: relative;
  z-index: 103;
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.9rem;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 2rem;
  height: 2rem;
  border: 1px solid currentColor;
  place-items: center;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand-name {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  height: 100%;
  align-items: center;
  gap: clamp(1rem, 1.65vw, 1.85rem);
}

.site-nav a,
.privacy-back {
  position: relative;
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  color: var(--light-silver);
  font-size: 0.69rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a::after,
.privacy-back::after {
  position: absolute;
  right: 0;
  bottom: 0.42rem;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.privacy-back:hover::after,
.privacy-back:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav .nav-cv {
  min-height: 2.25rem;
  padding-inline: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.site-nav .nav-cv::after {
  display: none;
}

.site-nav .nav-cv:hover {
  background: var(--white);
  color: var(--black);
}

.menu-toggle {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(54rem, 100svh);
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.hero::before {
  position: absolute;
  top: var(--header-height);
  bottom: 0;
  left: calc(50% - min((100% - (var(--gutter) * 2)), var(--page)) / 2 + 7rem);
  width: 1px;
  background: var(--rule-dark);
  content: "";
}

.hero-grid {
  display: grid;
  min-height: min(54rem, 100svh);
  padding-top: calc(var(--header-height) + clamp(3.25rem, 6vh, 5rem));
  padding-bottom: 2.6rem;
  grid-template-columns: 7rem minmax(0, 1.16fr) minmax(20rem, 0.84fr);
  grid-template-rows: auto 1fr;
  column-gap: clamp(2rem, 3.5vw, 4.25rem);
}

.hero-index {
  display: flex;
  padding-top: 0.55rem;
  flex-direction: column;
  gap: 0.4rem;
  grid-column: 1;
  grid-row: 1 / 3;
  color: var(--silver);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-identity,
.hero-narrative {
  position: relative;
  z-index: 2;
  min-width: 0;
  grid-column: 2;
}

.hero-identity {
  grid-row: 1;
}

.hero-identity > .eyebrow:first-child {
  margin-bottom: 0.15rem;
}

.hero-focus {
  margin-bottom: 1.5rem;
  white-space: nowrap;
}

.hero-narrative {
  max-width: 38rem;
  padding-top: clamp(2.5rem, 6vh, 4.5rem);
  align-self: end;
  grid-row: 2;
}

.hero-identity h1 {
  margin-bottom: 1.4rem;
  font-size: clamp(4rem, 7.5vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: 0.88;
}

.hero-role {
  margin-bottom: 0;
  color: var(--light-silver);
  font-size: clamp(0.86rem, 1.5vw, 1.15rem);
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-role span,
.contact-role span {
  margin-inline: 0.42em;
  color: var(--steel);
}

.hero-lead {
  max-width: 36rem;
  margin-bottom: 1.15rem;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 2.05rem);
  line-height: 1.34;
}

.hero-support {
  max-width: 39rem;
  margin-bottom: 0;
  color: var(--silver);
  font-size: clamp(0.93rem, 1.1vw, 1.05rem);
}

.hero-support span {
  display: block;
  margin-top: 0.65rem;
  color: var(--dark-muted);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  padding: 0.8rem 1.25rem;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button-light {
  background: var(--off-white);
  color: var(--black);
}

.button-light:hover {
  background: var(--light-silver);
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.48);
  color: var(--white);
}

.button-outline:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--black);
}

.text-link {
  position: relative;
  display: inline-flex;
  min-height: 3rem;
  margin-left: 0.6rem;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link::after {
  position: absolute;
  right: 0;
  bottom: 0.38rem;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
}

.text-link-light {
  color: var(--light-silver);
}

.hero-portrait {
  display: block;
  width: 100%;
  overflow: hidden;
  align-self: center;
  aspect-ratio: 4 / 5;
  grid-column: 3;
  grid-row: 1 / 3;
}

.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 38%;
}

/* Executive metrics */
.credentials {
  padding-block: clamp(3.5rem, 6vw, 5.5rem);
  background: var(--graphite);
  color: var(--white);
}

.section-kicker {
  display: flex;
  margin-bottom: 2rem;
  justify-content: space-between;
  color: var(--steel);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-kicker-dark {
  color: var(--silver);
}

.metric-grid {
  display: grid;
  border-top: 1px solid var(--rule-dark);
  grid-template-columns: repeat(4, 1fr);
}

.metric {
  min-width: 0;
  padding: 2.1rem clamp(1.2rem, 2vw, 2rem) 0.4rem;
  border-right: 1px solid var(--rule-dark);
}

.metric:first-child {
  padding-left: 0;
}

.metric:last-child {
  padding-right: 0;
  border-right: 0;
}

.metric-value {
  margin-bottom: 1.4rem;
  color: var(--white);
  font-size: clamp(2.5rem, 4.1vw, 4rem);
  font-weight: 300;
  letter-spacing: -0.055em;
  line-height: 1;
}

.metric h3 {
  min-height: 3.2em;
  margin-bottom: 1rem;
  color: var(--light-silver);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  line-height: 1.55;
  text-transform: uppercase;
}

.metric > p:last-child {
  margin-bottom: 0;
  color: var(--silver);
  font-size: 0.78rem;
  line-height: 1.6;
}

/* Profile */
.profile-content {
  display: grid;
  grid-template-columns: minmax(18rem, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(3rem, 7vw, 7rem);
}

.profile-content .section-heading {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  align-self: start;
}

.editorial-copy {
  max-width: 45rem;
}

.editorial-copy p {
  margin-bottom: 1.35rem;
  color: var(--charcoal);
  font-size: 1rem;
}

.editorial-copy .intro,
.leadership-copy .intro,
.legal-content .intro {
  color: var(--black);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.3vw, 1.9rem);
  line-height: 1.42;
}

.profile-statement {
  margin-top: 2.5rem;
  padding: 1.7rem 0 0 2rem;
  border-top: 1px solid var(--black);
  border-left: 2px solid var(--silver);
  color: var(--black) !important;
  font-family: var(--serif);
  font-size: clamp(1.18rem, 2vw, 1.55rem) !important;
  line-height: 1.48;
}

/* Lifecycle */
.lifecycle {
  padding-block: clamp(5rem, 9vw, 8rem);
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.lifecycle-header {
  display: flex;
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.lifecycle-header .eyebrow {
  margin-bottom: 0.4rem;
}

.lifecycle-header h2 {
  margin-bottom: 0;
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 400;
  letter-spacing: -0.03em;
}

.lifecycle-flow {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--rule-dark);
  grid-template-columns: repeat(7, 1fr);
  list-style: none;
}

.lifecycle-flow li {
  position: relative;
  min-height: 8.5rem;
  padding: 1.35rem 1rem 1rem;
  border-right: 1px solid var(--rule-dark);
  color: var(--light-silver);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.45;
  text-transform: uppercase;
}

.lifecycle-flow li:first-child {
  padding-left: 0;
}

.lifecycle-flow li:last-child {
  padding-right: 0;
  border-right: 0;
}

.lifecycle-flow li:not(:last-child)::after {
  position: absolute;
  top: 4rem;
  right: -0.27rem;
  z-index: 2;
  color: var(--steel);
  content: "→";
  font-size: 0.8rem;
}

.lifecycle-flow span {
  display: block;
  margin-bottom: 2.5rem;
  color: var(--dark-muted);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
}

.lifecycle-note {
  margin: 1.8rem 0 0;
  color: var(--dark-muted);
  font-family: var(--serif);
  font-size: 0.98rem;
  font-style: italic;
}

/* Expertise */
.expertise-list {
  display: grid;
  border-top: 1px solid var(--rule-light);
  grid-template-columns: repeat(2, 1fr);
}

.expertise-item {
  display: grid;
  min-height: 15rem;
  padding: 2rem clamp(1rem, 3vw, 2.5rem) 2.2rem;
  border-right: 1px solid var(--rule-light);
  border-bottom: 1px solid var(--rule-light);
  grid-template-columns: 2.8rem 1fr;
  align-content: start;
}

.expertise-item:nth-child(even) {
  padding-right: 0;
  border-right: 0;
}

.expertise-item:nth-child(odd) {
  padding-left: 0;
}

.expertise-item:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.item-number {
  padding-top: 0.18rem;
  color: var(--steel);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
}

.expertise-item h3 {
  margin-bottom: 1.35rem;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.expertise-item p {
  margin: 0;
  grid-column: 2;
  color: var(--steel);
  font-size: 0.9rem;
}

/* Experience */
.timeline {
  border-top: 1px solid var(--black);
}

.role {
  display: grid;
  padding-block: clamp(2.8rem, 5vw, 4.5rem);
  border-bottom: 1px solid var(--rule-light);
  grid-template-columns: minmax(9rem, 0.32fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 6rem);
}

.role-meta {
  color: var(--steel);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.role-meta p {
  margin-bottom: 0.25rem;
}

.role-period {
  color: var(--black);
  font-weight: 600;
}

.role-body {
  max-width: 46rem;
}

.role-body h3 {
  margin-bottom: 0.25rem;
  font-size: clamp(1.45rem, 2.6vw, 2.15rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.18;
}

.role-body h3 span {
  display: block;
  margin-top: 0.5rem;
  color: var(--steel);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.role-company {
  margin-bottom: 2rem;
  color: var(--steel);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.role-body > p:not(.role-company) {
  margin-bottom: 1rem;
  color: var(--charcoal);
  font-size: 0.94rem;
}

.role-context {
  margin-bottom: 0.65rem !important;
  color: var(--steel) !important;
  font-size: 0.64rem !important;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.role-compact {
  padding-block: clamp(2.2rem, 3.8vw, 3.2rem);
}

.role-compact .role-company {
  margin-bottom: 1.25rem;
}

.role-secondary .role-body h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
}

.role-featured {
  margin-inline: -2rem;
  padding-inline: 2rem;
  border-bottom: 0;
  background: var(--graphite);
  color: var(--white);
}

.role-addiko {
  border-top: 1px solid var(--silver);
  background: var(--charcoal);
}

.role-featured .role-meta,
.role-featured .role-context,
.role-featured .role-company,
.role-featured .role-body > p:not(.role-company, .role-context) {
  color: var(--silver) !important;
}

.role-featured .role-period,
.role-featured .role-body h3 {
  color: var(--white);
}

.role-featured .role-company {
  max-width: 40rem;
  line-height: 1.7;
}

.institution-metrics {
  display: grid;
  margin-top: 2.8rem;
  border-top: 1px solid var(--rule-dark);
  grid-template-columns: repeat(3, 1fr);
}

.institution-metrics > div {
  min-width: 0;
  padding: 1.4rem 1.2rem 0.2rem;
  border-right: 1px solid var(--rule-dark);
}

.institution-metrics > div:first-child {
  padding-left: 0;
}

.institution-metrics > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.institution-metrics strong {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--white);
  font-size: clamp(1.65rem, 2.7vw, 2.5rem);
  font-weight: 300;
  letter-spacing: -0.045em;
  line-height: 1;
}

.institution-metrics span {
  display: block;
  color: var(--dark-muted);
  font-size: 0.59rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.selected-mandate {
  margin-top: 2.4rem;
  padding: 1.6rem 1.7rem 1.5rem;
  border-top: 1px solid var(--silver);
  border-left: 2px solid var(--silver);
  background: var(--paper);
}

.selected-mandate-label {
  margin-bottom: 0.65rem !important;
  color: var(--steel) !important;
  font-size: 0.61rem !important;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.selected-mandate h4 {
  margin: 0 0 1.2rem;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.selected-mandate h4 span {
  display: block;
  margin-top: 0.4rem;
  color: var(--steel);
  font-size: 0.56em;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.selected-mandate > p:not(.selected-mandate-label) {
  margin-bottom: 0.75rem;
  color: var(--steel);
  font-size: 0.86rem;
}

.selected-mandate > p:last-child {
  margin-bottom: 0;
}

/* Scale */
.scale {
  padding-block: var(--section-space);
  background: var(--graphite);
  color: var(--white);
}

.scale-heading {
  display: grid;
  margin-bottom: clamp(3.5rem, 7vw, 6rem);
  grid-template-columns: 1.4fr 0.6fr;
  align-items: end;
  gap: 3rem;
}

.scale-heading h2 {
  color: var(--white);
}

.scale-heading > p {
  color: var(--silver);
}

.scale-list {
  border-top: 1px solid var(--rule-dark);
}

.scale-item {
  display: grid;
  padding-block: 1.85rem;
  border-bottom: 1px solid var(--rule-dark);
  grid-template-columns: minmax(9rem, 0.3fr) minmax(15rem, 0.7fr) minmax(18rem, 1fr);
  align-items: baseline;
  gap: clamp(1.5rem, 4vw, 4rem);
}

.scale-item-heta {
  position: relative;
}

.scale-item-heta::before {
  position: absolute;
  top: 1.7rem;
  bottom: 1.7rem;
  left: -1.25rem;
  width: 2px;
  background: var(--silver);
  content: "";
}

.scale-item-heta .scale-value {
  color: var(--white);
  font-weight: 400;
}

.scale-value {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.045em;
  line-height: 1;
}

.scale-item h3 {
  margin: 0;
  color: var(--light-silver);
  font-size: 0.79rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.scale-item > p:last-child {
  margin: 0;
  color: var(--silver);
  font-size: 0.86rem;
}

/* Leadership */
.leadership {
  padding-block: clamp(3.5rem, 6vw, 5.5rem);
  background: var(--light-silver);
}

.leadership-grid {
  display: grid;
  grid-template-columns: minmax(17rem, 0.8fr) minmax(22rem, 1.2fr);
  gap: clamp(2.5rem, 6vw, 6rem);
}

.leadership-intro {
  align-self: start;
}

.leadership h2 {
  margin-bottom: 2rem;
}

.leadership-subtitle {
  color: var(--steel);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.leadership-copy {
  max-width: 44rem;
  padding-top: 1rem;
}

.leadership-copy p:not(.intro) {
  color: var(--charcoal);
}

.leadership-metrics {
  display: grid;
  border-top: 1px solid var(--black);
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, 1fr);
}

.leadership-metrics > div {
  min-height: 7.5rem;
  padding: 1.7rem 1.4rem;
  border-right: 1px solid rgba(8, 8, 8, 0.28);
}

.leadership-metrics > div:first-child {
  padding-left: 0;
}

.leadership-metrics > div:last-child {
  border-right: 0;
}

.leadership-metrics strong {
  display: block;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1;
}

.leadership-metrics span {
  display: block;
  max-width: 12rem;
  color: var(--steel);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

/* Governance */
.governance {
  padding-block: var(--section-space);
}

.governance-grid {
  display: grid;
  grid-template-columns: minmax(18rem, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.governance-heading {
  align-self: start;
}

.governance-content blockquote {
  margin-bottom: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--black);
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.6vw, 2.25rem);
  line-height: 1.42;
}

.perspective-copy {
  max-width: 44rem;
  margin: 0;
  color: var(--steel);
  font-size: 1rem;
}

/* Insights */
.insights {
  position: relative;
  padding-block: var(--section-space);
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.insights::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 48%;
  width: 1px;
  background: var(--rule-dark);
  content: "";
}

.insights-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;
  gap: clamp(3rem, 9vw, 9rem);
}

.insights-mark {
  display: flex;
  align-items: center;
  justify-content: center;
}

.insights-mark img {
  display: block;
  width: clamp(7.8rem, 14.95vw, 13.65rem);
  height: auto;
}

.insights-copy {
  position: relative;
  z-index: 2;
  max-width: 42rem;
}

.insights h2 {
  margin-bottom: 2rem;
}

.insights-subtitle {
  max-width: 36rem;
  margin-bottom: 1.7rem;
  color: var(--light-silver);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.45;
}

.insights-copy > p:not(.eyebrow, .insights-subtitle, .topic-line) {
  color: var(--silver);
}

.topic-line {
  margin-block: 2rem 2.3rem;
  color: var(--light-silver);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 2;
  text-transform: uppercase;
}

.topic-line span {
  margin-inline: 0.3rem;
  color: var(--steel);
}

.thinking-list {
  margin-block: 2.2rem 2.5rem;
  border-top: 1px solid var(--rule-dark);
}

.thinking-list a {
  display: grid;
  min-height: 4.8rem;
  padding-block: 1.15rem;
  border-bottom: 1px solid var(--rule-dark);
  grid-template-columns: 2.6rem minmax(0, 1fr);
  align-items: center;
  color: var(--light-silver);
  font-family: var(--serif);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  line-height: 1.4;
  text-decoration: none;
  transition: color 180ms ease, padding-left 180ms ease;
}

.thinking-list a:hover {
  padding-left: 0.35rem;
  color: var(--white);
}

.thinking-list a span {
  color: var(--dark-muted);
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.arrow-link {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  gap: 1.5rem;
  border-bottom: 1px solid currentColor;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

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

.arrow-link:hover span {
  transform: translateX(0.3rem);
}

.advisory {
  padding-block: clamp(3rem, 5vw, 4.25rem);
  background: var(--off-white);
}

.advisory-inner {
  display: grid;
  grid-template-columns: 0.75fr 1fr auto;
  align-items: end;
  gap: clamp(2rem, 5vw, 5rem);
}

.advisory h2 {
  font-size: clamp(2.2rem, 4vw, 3.7rem);
}

.advisory p {
  max-width: 36rem;
  margin: 0;
  color: var(--steel);
}

.arrow-link-dark {
  color: var(--black);
  white-space: nowrap;
}

/* Education */
.degree-grid {
  display: grid;
  margin-bottom: clamp(4rem, 7vw, 7rem);
  border-top: 1px solid var(--black);
  grid-template-columns: repeat(2, 1fr);
}

.degree {
  min-height: 13rem;
  padding: 1.8rem 2.5rem 1.5rem 0;
  border-right: 1px solid var(--rule-light);
}

.degree + .degree {
  padding-right: 0;
  padding-left: 2.5rem;
  border-right: 0;
}

.degree-year {
  color: var(--steel);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
}

.degree h3 {
  max-width: 26rem;
  margin-bottom: 1.4rem;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.25;
}

.degree h3 span {
  white-space: nowrap;
}

.degree > p:last-child {
  color: var(--steel);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.development h3 {
  margin-bottom: 2rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.development ul {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--rule-light);
  list-style: none;
}

.development li {
  display: grid;
  min-height: 4.5rem;
  padding-block: 1.25rem;
  border-bottom: 1px solid var(--rule-light);
  grid-template-columns: 4.5rem minmax(15rem, 1.1fr) minmax(14rem, 0.9fr);
  align-items: baseline;
  gap: 1rem;
}

.development li > span {
  color: var(--steel);
  font-size: 0.7rem;
}

.development strong {
  font-size: 0.85rem;
  font-weight: 600;
}

.development li p {
  margin: 0;
  color: var(--steel);
  font-size: 0.82rem;
}

/* Languages */
.languages {
  padding-block: clamp(2.75rem, 4.2vw, 3.75rem);
  background: var(--charcoal);
  color: var(--white);
}

.languages-grid {
  display: grid;
  grid-template-columns: minmax(9rem, 0.25fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
}

.languages-label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.languages h2 {
  margin: 0;
  color: var(--light-silver);
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.languages .section-number {
  margin: 0;
  color: var(--silver);
}

.language-list {
  display: flex;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  align-items: baseline;
  color: var(--light-silver);
  font-size: 0.91rem;
  line-height: 1.65;
  list-style: none;
}

.language-list li {
  display: inline-flex;
  align-items: baseline;
  gap: 0.32rem;
  white-space: nowrap;
}

.language-list li:not(:last-child)::after {
  margin-inline: 0.75rem;
  color: var(--steel);
  content: "·";
}

.language-level {
  color: var(--silver);
}

/* Contact and footer */
.contact {
  padding-block: var(--section-space);
  background: var(--black);
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.62fr 1fr 0.75fr;
  gap: clamp(2.5rem, 7vw, 7rem);
}

.contact h2 {
  margin-bottom: 0;
}

.contact-heading .section-number {
  color: var(--silver);
}

.contact-primary {
  padding-top: 0.5rem;
}

.contact-name {
  margin-bottom: 0.35rem;
  font-size: clamp(1.35rem, 2.1vw, 1.8rem);
  letter-spacing: -0.03em;
}

.contact-name span {
  color: var(--silver);
  font-size: 0.65em;
  letter-spacing: 0;
}

.contact-role {
  margin-bottom: 2.7rem;
  color: var(--light-silver);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-details {
  margin: 0 0 2.5rem;
  border-top: 1px solid var(--rule-dark);
}

.contact-details > dl {
  display: grid;
  min-height: 4rem;
  margin: 0;
  padding-block: 1rem;
  border-bottom: 1px solid var(--rule-dark);
  grid-template-columns: 5rem minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
}

.contact-details dt {
  color: var(--dark-muted);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-details dd {
  min-width: 0;
  margin: 0;
  color: var(--light-silver);
  font-size: 0.85rem;
  overflow-wrap: anywhere;
}

.contact-details a {
  text-decoration-color: var(--steel);
}

.contact-links {
  padding-top: 0.5rem;
  border-top: 1px solid var(--rule-dark);
}

.contact-links a {
  display: flex;
  min-height: 4rem;
  padding-block: 1rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--rule-dark);
  color: var(--light-silver);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

.contact-links a span:last-child {
  color: var(--steel);
  transition: transform 180ms ease;
}

.contact-links a:hover span:last-child {
  transform: translate(0.15rem, -0.15rem);
}

.site-footer {
  padding-block: 2.5rem;
  border-top: 1px solid var(--rule-dark);
  background: var(--black);
  color: var(--silver);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 1.7rem;
}

.site-footer p {
  margin-bottom: 0;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer .footer-name {
  margin-bottom: 0.25rem;
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 600;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.5rem;
}

.site-footer a,
.footer-cookie-settings {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  color: var(--light-silver);
  font-family: var(--sans);
  font-size: 0.64rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-cookie-settings {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.site-footer a:hover,
.footer-cookie-settings:hover {
  color: var(--white);
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule-dark);
  color: var(--dark-muted);
}

/* Cookie consent */
.cookie-modal-open {
  overflow: hidden;
}

.cookie-banner[hidden],
.cookie-modal[hidden] {
  display: none !important;
}

.cookie-banner {
  position: fixed;
  z-index: 200;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem var(--gutter);
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(8, 8, 8, 0.98);
  box-shadow: 0 -1rem 3rem rgba(0, 0, 0, 0.28);
  color: var(--white);
}

.cookie-banner-inner {
  display: grid;
  width: min(100%, var(--page));
  margin-inline: auto;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(1.5rem, 4vw, 4rem);
}

.cookie-banner-copy {
  max-width: 47rem;
}

.cookie-eyebrow {
  margin-bottom: 0.4rem;
  color: var(--silver);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.cookie-banner-copy > p:not(.cookie-eyebrow) {
  margin-bottom: 0.35rem;
  color: var(--light-silver);
  font-size: 0.86rem;
  line-height: 1.5;
}

.cookie-banner-copy a,
.cookie-modal-policy a {
  color: var(--silver);
  font-size: 0.73rem;
  text-underline-offset: 0.25em;
}

.cookie-banner-copy a:hover,
.cookie-modal-policy a:hover {
  color: var(--white);
}

.cookie-banner-actions,
.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem;
}

.cookie-button,
.cookie-modal-close {
  min-height: 2.75rem;
  padding: 0.7rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: var(--light-silver);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.cookie-button:hover,
.cookie-modal-close:hover {
  border-color: var(--white);
  color: var(--white);
}

.cookie-button-primary {
  border-color: var(--off-white);
  background: var(--off-white);
  color: var(--black);
}

.cookie-button-primary:hover {
  border-color: var(--light-silver);
  background: var(--light-silver);
  color: var(--black);
}

.cookie-modal {
  position: fixed;
  z-index: 220;
  inset: 0;
  display: grid;
  padding: 1rem;
  place-items: center;
}

.cookie-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(4px);
}

.cookie-modal-card {
  position: relative;
  width: min(100%, 42rem);
  max-height: calc(100svh - 2rem);
  padding: clamp(1.25rem, 4vw, 2.25rem);
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: var(--graphite);
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.48);
  color: var(--white);
}

.cookie-modal-header {
  display: flex;
  margin-bottom: 1.25rem;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}

.cookie-modal-header h2 {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}

.cookie-modal-close {
  min-height: 2.3rem;
  padding: 0.5rem 0.7rem;
}

.cookie-modal-intro {
  max-width: 35rem;
  margin-bottom: 1.5rem;
  color: var(--silver);
  font-size: 0.9rem;
}

.cookie-option {
  display: grid;
  padding-block: 1.25rem;
  border-top: 1px solid var(--rule-dark);
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
}

.cookie-option:last-of-type {
  border-bottom: 1px solid var(--rule-dark);
}

.cookie-option h3 {
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.cookie-option p {
  margin: 0;
  color: var(--silver);
  font-size: 0.8rem;
}

.cookie-status {
  color: var(--light-silver);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.cookie-switch {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.6rem;
  color: var(--light-silver);
  cursor: pointer;
  font-size: 0.72rem;
  white-space: nowrap;
}

.cookie-switch input {
  width: 1.15rem;
  height: 1.15rem;
  margin: 0;
  accent-color: var(--white);
}

.cookie-modal-policy {
  margin: 1rem 0 1.4rem;
}

.cookie-modal-actions {
  justify-content: flex-start;
}

/* Privacy */
.privacy-page {
  background: var(--off-white);
}

.legal-main {
  padding-top: var(--header-height);
}

.legal-grid {
  display: grid;
  min-height: 70vh;
  padding-block: var(--section-space);
  grid-template-columns: minmax(16rem, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(3rem, 9vw, 9rem);
}

.legal-heading h1 {
  margin-bottom: 2rem;
  font-size: clamp(3.4rem, 7vw, 6.8rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.legal-heading > p:last-child {
  color: var(--steel);
  font-size: 0.67rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.legal-content {
  min-width: 0;
  max-width: 45rem;
}

.legal-toc {
  display: grid;
  margin: 2.5rem 0;
  padding-block: 1rem;
  border-top: 1px solid var(--rule-light);
  border-bottom: 1px solid var(--rule-light);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem 1.5rem;
}

.legal-toc > p {
  margin: 0 0 0.45rem;
  grid-column: 1 / -1;
  color: var(--steel);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-toc a {
  color: var(--black);
  font-size: 0.82rem;
  text-decoration-color: var(--rule-light);
}

.legal-content > section {
  scroll-margin-top: calc(var(--header-height) + 2rem);
  padding-block: 2rem;
  border-top: 1px solid var(--rule-light);
}

.legal-content h2 {
  margin-bottom: 0.8rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.legal-content h3 {
  margin: 1.4rem 0 0.45rem;
  font-size: 0.88rem;
  font-weight: 600;
}

.legal-content p:not(.intro) {
  margin-bottom: 1rem;
  color: var(--steel);
  font-size: 0.94rem;
}

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

.legal-content .legal-part {
  margin-bottom: 0.55rem;
  color: var(--steel);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-content ul {
  margin: 1rem 0;
  padding-left: 1.25rem;
}

.legal-content li {
  margin-bottom: 0.65rem;
  color: var(--steel);
  font-size: 0.94rem;
}

.legal-content strong {
  color: var(--black);
  font-weight: 600;
}

.legal-content a {
  color: var(--black);
  text-decoration-color: var(--rule-light);
}

.legal-table-wrap {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 1.25rem 0 1.5rem;
  overflow-x: auto;
  border-top: 1px solid var(--rule-light);
}

.legal-content table {
  width: 100%;
  min-width: 36rem;
  border-collapse: collapse;
  color: var(--steel);
  font-size: 0.82rem;
  line-height: 1.5;
}

.legal-content th,
.legal-content td {
  padding: 0.8rem 1rem 0.8rem 0;
  border-bottom: 1px solid var(--rule-light);
  text-align: left;
  vertical-align: top;
}

.legal-content th {
  color: var(--black);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-content code {
  color: var(--black);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.75rem;
  overflow-wrap: anywhere;
}

.cookie-storage-table {
  table-layout: fixed;
}

.cookie-storage-table th:first-child {
  width: 31%;
}

.cookie-storage-table th:last-child {
  width: 23%;
}

.legal-content .legal-note {
  padding-left: 1rem;
  border-left: 2px solid var(--black);
}

@media (max-width: 1120px) {
  .site-nav {
    gap: 1rem;
  }

  .site-nav a {
    font-size: 0.62rem;
  }

  .hero-grid {
    grid-template-columns: 5.5rem minmax(0, 1.15fr) minmax(18rem, 0.85fr);
    column-gap: 2.5rem;
  }

  .hero::before {
    left: calc(50% - min((100% - (var(--gutter) * 2)), var(--page)) / 2 + 5.5rem);
  }

  .profile-content {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .profile-content .section-heading {
    position: static;
  }

  .editorial-copy {
    max-width: 48rem;
  }

  .contact-grid {
    grid-template-columns: 0.55fr 1.15fr;
  }

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

@media (max-width: 960px) {
  :root {
    --header-height: 4.5rem;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: inline-flex;
    min-width: 4.75rem;
    min-height: 2.75rem;
    padding: 0;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    border: 0;
    background: transparent;
    color: var(--white);
    cursor: pointer;
  }

  .menu-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .menu-icon {
    width: 1.35rem;
    overflow: visible;
  }

  .menu-icon path {
    fill: none;
    stroke: currentColor;
    stroke-width: 1;
  }

  .site-nav {
    position: fixed;
    z-index: 101;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    height: auto;
    padding: calc(var(--header-height) + 2rem) var(--gutter) 2rem;
    background: var(--black);
    align-content: center;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-1rem);
    visibility: hidden;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .site-nav a {
    width: 100%;
    min-height: 3.7rem;
    border-bottom: 1px solid var(--rule-dark);
    color: var(--light-silver);
    font-size: 0.8rem;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav .nav-cv {
    width: fit-content;
    min-height: 3rem;
    margin-top: 1.5rem;
    padding-inline: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.55);
  }

  .role-featured {
    margin-inline: -1.5rem;
    padding-inline: 1.5rem;
  }

  .metric-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .metric {
    padding: 2rem;
    border-bottom: 1px solid var(--rule-dark);
  }

  .metric:nth-child(odd) {
    padding-left: 0;
  }

  .metric:nth-child(even) {
    padding-right: 0;
    border-right: 0;
  }

  .metric:nth-last-child(-n + 2) {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .metric h3 {
    min-height: 0;
  }

  .lifecycle-flow {
    grid-template-columns: repeat(4, 1fr);
  }

  .lifecycle-flow li {
    border-bottom: 1px solid var(--rule-dark);
  }

  .lifecycle-flow li:nth-child(4) {
    border-right: 0;
  }

  .lifecycle-flow li:nth-child(n + 5) {
    border-bottom: 0;
  }

  .lifecycle-flow li:nth-child(4)::after {
    display: none;
  }

  .scale-item {
    grid-template-columns: minmax(8rem, 0.35fr) minmax(0, 0.65fr);
  }

  .scale-item > p:last-child {
    grid-column: 2;
  }

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

  .leadership-copy {
    max-width: 48rem;
  }

  .insights::after {
    display: none;
  }

  .insights-mark {
    justify-content: flex-start;
  }

  .insights-mark img {
    width: clamp(6.5rem, 26vw, 9.1rem);
  }

  .advisory-inner {
    grid-template-columns: 0.7fr 1.3fr;
  }

  .advisory .arrow-link {
    grid-column: 2;
    justify-self: start;
  }

  .development li {
    grid-template-columns: 4rem 1fr;
  }

  .development li p {
    grid-column: 2;
  }
}

@media (max-width: 760px) {
  :root {
    --gutter: 1.25rem;
    --section-space: 5.5rem;
  }

  .section-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .section-rail {
    display: flex;
    padding-top: 0.8rem;
    justify-content: space-between;
  }

  .section-heading,
  .section-heading-split {
    margin-bottom: 3.5rem;
  }

  .section-heading-split,
  .scale-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1.5rem;
  }

  .section-heading-split > p,
  .scale-heading > p {
    max-width: 34rem;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    display: none;
  }

  .hero-grid {
    min-height: auto;
    padding-top: calc(var(--header-height) + 3.5rem);
    padding-bottom: 2rem;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 1.8rem;
  }

  .hero-index {
    flex-direction: row;
    grid-column: 1;
    grid-row: auto;
    justify-content: space-between;
  }

  .hero-identity,
  .hero-narrative {
    grid-column: 1;
    grid-row: auto;
  }

  .hero-identity h1 {
    font-size: clamp(3.5rem, 15vw, 5.5rem);
  }

  .hero-role {
    line-height: 1.7;
  }

  .hero-focus {
    white-space: normal;
  }

  .hero-portrait {
    width: 100%;
    margin-top: 0.2rem;
    aspect-ratio: 7 / 8;
    grid-column: 1;
    grid-row: auto;
  }

  .hero-portrait img {
    object-position: 52% 35%;
  }

  .hero-narrative {
    max-width: 100%;
    padding-top: 0.5rem;
  }

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

  .metric,
  .metric:nth-child(odd),
  .metric:nth-child(even),
  .metric:nth-last-child(-n + 2) {
    padding: 2rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--rule-dark);
  }

  .metric:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .metric {
    display: grid;
    grid-template-columns: minmax(7rem, 0.38fr) minmax(0, 0.62fr);
    column-gap: 1.5rem;
  }

  .metric > p:last-child {
    display: none;
  }

  .metric-value {
    margin-bottom: 0;
    grid-row: auto;
  }

  .metric h3 {
    margin-bottom: 0;
    align-self: center;
  }

  .lifecycle-header {
    align-items: start;
    flex-direction: column;
    gap: 0.5rem;
  }

  .lifecycle-flow {
    grid-template-columns: 1fr;
  }

  .lifecycle-flow li,
  .lifecycle-flow li:nth-child(n + 5) {
    display: grid;
    min-height: 4.5rem;
    padding: 1rem 2rem 1rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--rule-dark);
    grid-template-columns: 3rem 1fr;
    align-items: center;
  }

  .lifecycle-flow li:last-child {
    border-bottom: 0;
  }

  .lifecycle-flow li:not(:last-child)::after {
    top: auto;
    right: 0.15rem;
    bottom: -0.55rem;
    transform: rotate(90deg);
  }

  .lifecycle-flow li:nth-child(4)::after {
    display: block;
  }

  .lifecycle-flow span {
    margin: 0;
  }

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

  .expertise-item,
  .expertise-item:nth-child(even),
  .expertise-item:nth-child(odd),
  .expertise-item:nth-last-child(-n + 2) {
    min-height: 0;
    padding: 1.8rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--rule-light);
  }

  .expertise-item:last-child {
    border-bottom: 0;
  }

  .role {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .role-featured {
    margin-inline: calc(var(--gutter) * -1);
    padding-inline: var(--gutter);
  }

  .role-meta {
    display: flex;
    justify-content: space-between;
  }

  .institution-metrics {
    grid-template-columns: 1fr;
  }

  .institution-metrics > div,
  .institution-metrics > div:first-child,
  .institution-metrics > div:last-child {
    display: grid;
    min-height: 4.5rem;
    padding: 1rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--rule-dark);
    grid-template-columns: minmax(7rem, 0.42fr) minmax(0, 0.58fr);
    align-items: center;
    gap: 1rem;
  }

  .institution-metrics > div:last-child {
    border-bottom: 0;
  }

  .institution-metrics strong {
    margin-bottom: 0;
  }

  .scale-item {
    padding-block: 2rem;
    grid-template-columns: minmax(7.5rem, 0.35fr) minmax(0, 0.65fr);
    gap: 1.25rem;
  }

  .leadership-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .leadership-metrics > div {
    border-bottom: 1px solid rgba(8, 8, 8, 0.28);
  }

  .leadership-metrics > div:nth-child(even) {
    padding-right: 0;
    border-right: 0;
  }

  .leadership-metrics > div:nth-child(odd) {
    padding-left: 0;
  }

  .leadership-metrics > div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .advisory-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .advisory .arrow-link {
    grid-column: 1;
  }

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

  .degree,
  .degree + .degree {
    min-height: 0;
    padding: 1.8rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--rule-light);
  }

  .languages-grid {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .language-list {
    font-size: 0.9rem;
  }

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

  .contact-links {
    grid-column: 1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .site-footer nav {
    justify-content: flex-start;
    gap: 1rem 1.5rem;
  }

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

  .legal-toc {
    grid-template-columns: 1fr;
  }

  .cookie-banner-inner {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1rem;
  }

  .cookie-banner-actions {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cookie-button {
    width: 100%;
  }

  .cookie-option {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 0.65rem;
  }
}

@media (max-width: 480px) {
  .brand-name {
    font-size: 0.72rem;
  }

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

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

  .hero-actions .text-link {
    width: fit-content;
    margin-left: 0;
  }

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

  .metric-value {
    grid-row: auto;
  }

  .scale-item {
    grid-template-columns: 1fr;
  }

  .scale-item > p:last-child {
    grid-column: 1;
  }

  .leadership-metrics {
    grid-template-columns: 1fr;
  }

  .leadership-metrics > div,
  .leadership-metrics > div:nth-child(even),
  .leadership-metrics > div:nth-child(odd),
  .leadership-metrics > div:nth-last-child(-n + 2) {
    min-height: 0;
    padding: 1.6rem 0;
    border-right: 0;
    border-bottom: 1px solid rgba(8, 8, 8, 0.28);
  }

  .leadership-metrics > div:last-child {
    border-bottom: 0;
  }

  .development li {
    grid-template-columns: 3.5rem 1fr;
  }

  .contact-details > dl {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .cookie-banner {
    padding: 0.8rem var(--gutter);
  }

  .cookie-banner-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cookie-banner-actions .cookie-button-primary {
    grid-column: 1 / -1;
  }

  .cookie-modal {
    padding: 0.65rem;
  }

  .cookie-modal-card {
    max-height: calc(100svh - 1.3rem);
  }

  .cookie-modal-header {
    gap: 0.75rem;
  }

  .cookie-modal-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}

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

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

@media print {
  .site-header,
  .hero-actions,
  .cookie-banner,
  .cookie-modal,
  .site-footer,
  .skip-link {
    display: none !important;
  }

  body,
  .hero,
  .credentials,
  .lifecycle,
  .scale,
  .insights,
  .contact,
  .languages {
    background: var(--white) !important;
    color: var(--black) !important;
  }

  .hero,
  .hero-grid {
    min-height: auto;
  }

  .hero-grid {
    padding-block: 2rem;
  }

  a {
    text-decoration: none;
  }
}
