:root {
  color-scheme: only light;
  --paper: #f5f1e9;
  --paper-raised: #fbf8f2;
  --paper-deep: #e9e1d5;
  --ink: #1c1b18;
  --ink-soft: #47443e;
  --muted: #716d65;
  --line: rgba(28, 27, 24, 0.18);
  --line-strong: rgba(28, 27, 24, 0.34);
  --dark: #1b1c18;
  --dark-raised: #25261f;
  --light: #f8f4ec;
  --light-soft: #d8d0c4;
  --accent: #b76343;
  --accent-dark: #8c442d;
  --accent-pale: #e9c7b5;
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
  --container: 1280px;
  --article: 760px;
  --gutter: clamp(20px, 4vw, 64px);
  --section-space: clamp(84px, 9vw, 148px);
  --header-height: 78px;
  --radius: 2px;
  --shadow: 0 24px 70px rgba(35, 29, 24, 0.1);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  min-width: 0;
  color-scheme: only light;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  background: var(--paper);
}

body {
  forced-color-adjust: none;
  min-width: 0;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.62;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

main,
section,
article,
header,
footer,
nav,
div {
  min-width: 0;
}

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

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

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

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

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

::selection {
  color: var(--light);
  background: var(--accent-dark);
}

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

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h3 {
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.18;
}

p,
li {
  overflow-wrap: break-word;
}

.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;
}

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

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: rgba(245, 241, 233, 0.94);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.header-inner,
.section-inner {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  gap: clamp(20px, 3vw, 44px);
}

.brand {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.brand > span:last-child {
  display: grid;
  gap: 5px;
}

.brand strong {
  font-size: 12px;
  letter-spacing: 0.12em;
}

.brand small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  margin-left: auto;
}

.nav a,
.language a,
.menu-panel a {
  position: relative;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav a::after,
.language a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right center;
  background: var(--accent);
  content: "";
  transition: transform 220ms var(--ease);
}

.nav a[aria-current="page"],
.nav a:hover,
.language a[aria-current="page"],
.language a.is-active {
  color: var(--ink);
}

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

.language {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 13px;
  padding-left: clamp(14px, 2vw, 28px);
  border-left: 1px solid var(--line);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  background: transparent;
  cursor: pointer;
}

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

.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 19px;
  height: 1px;
  margin-inline: auto;
  background: currentColor;
  content: "";
  transition: transform 220ms var(--ease);
}

.menu-toggle::before {
  transform: translateY(-4px);
}

.menu-toggle::after {
  transform: translateY(4px);
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(0.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-0.5px) rotate(-45deg);
}

.menu-panel {
  position: fixed;
  z-index: 90;
  top: var(--header-height);
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  overflow-y: auto;
  padding: 34px var(--gutter) 48px;
  background: var(--paper-raised);
}

.menu-panel[hidden] {
  display: none;
}

.menu-panel.is-open,
.menu-panel:not([hidden]) {
  display: grid;
  align-content: start;
  gap: 0;
}

.menu-panel a {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(23px, 7vw, 34px);
  font-weight: 400;
  letter-spacing: -0.03em;
  text-transform: none;
}

.section {
  position: relative;
  padding-block: var(--section-space);
}

.section + .section:not(.section-dark):not(.throughline):not(.contact) {
  border-top: 1px solid var(--line);
}

.section-dark,
.throughline,
.contact {
  color: var(--light);
  background: var(--dark);
}

.section-kicker,
.hero-eyebrow,
.case-meta,
.case-status,
.evidence-status,
.career-period,
.breadcrumbs {
  margin-bottom: 20px;
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.45;
  text-transform: uppercase;
}

.section-dark .section-kicker,
.throughline .section-kicker,
.contact .section-kicker,
.section-dark .case-meta,
.section-dark .case-status {
  color: var(--accent-pale);
}

.section-title {
  max-width: 980px;
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(46px, 6vw, 88px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.section-lead {
  max-width: 780px;
  margin: clamp(24px, 3vw, 40px) 0 0;
  color: var(--ink-soft);
  font-size: clamp(19px, 1.65vw, 25px);
  line-height: 1.5;
}

.section-dark .section-lead,
.throughline .section-lead,
.contact .section-lead {
  color: var(--light-soft);
}

.hero {
  display: grid;
  min-height: calc(100svh - var(--header-height));
  align-items: center;
  padding-block: clamp(50px, 7vw, 108px);
  background:
    radial-gradient(circle at 82% 18%, rgba(183, 99, 67, 0.1), transparent 29%),
    var(--paper);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.78fr);
  grid-template-areas:
    "intro media"
    "actions media";
  column-gap: clamp(48px, 8vw, 118px);
  row-gap: clamp(34px, 4vw, 52px);
  align-items: center;
}

.hero-copy {
  display: contents;
}

.hero-intro {
  grid-area: intro;
  align-self: end;
}

.hero-eyebrow {
  max-width: 720px;
  margin-bottom: clamp(24px, 3vw, 38px);
}

.hero-title {
  max-width: 840px;
  margin: 0;
  overflow-wrap: normal;
  font-size: clamp(52px, 5.5vw, 80px);
  hyphens: none;
  text-wrap: balance;
  word-break: normal;
}

.hero-lead {
  max-width: 760px;
  margin: clamp(28px, 3.5vw, 46px) 0 0;
  color: var(--ink-soft);
  font-size: clamp(19px, 1.65vw, 25px);
  line-height: 1.5;
}

.hero-context {
  max-width: 780px;
  margin: clamp(24px, 3vw, 38px) 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.7;
  text-transform: uppercase;
}

.hero-media {
  position: relative;
  grid-area: media;
  align-self: center;
  min-height: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--paper-deep);
  box-shadow: var(--shadow);
}

.hero-media::before {
  position: absolute;
  z-index: 1;
  top: 20px;
  right: 20px;
  width: 86px;
  height: 86px;
  border-top: 1px solid rgba(255, 255, 255, 0.72);
  border-right: 1px solid rgba(255, 255, 255, 0.72);
  pointer-events: none;
  content: "";
}

.hero-photo {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: 53% 42%;
  /* The supplied portrait is intentionally shown in its original colour. */
  filter: none;
}

.hero-actions {
  display: block;
  grid-area: actions;
  align-self: start;
}

.hero-actions > div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 13px 20px;
  border: 1px solid var(--dark);
  border-radius: var(--radius);
  color: var(--light);
  background: var(--dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    color 220ms var(--ease),
    background-color 220ms var(--ease),
    border-color 220ms var(--ease),
    transform 220ms var(--ease);
}

.button-secondary {
  border-color: var(--line-strong);
  color: var(--ink);
  background: transparent;
}

.section-dark .button,
.throughline .button,
.contact .button {
  border-color: var(--light);
  color: var(--dark);
  background: var(--light);
}

.section-dark .button-secondary,
.throughline .button-secondary,
.contact .button-secondary {
  border-color: rgba(248, 244, 236, 0.38);
  color: var(--light);
  background: transparent;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(48px, 6vw, 82px);
  border: 1px solid var(--line);
  background: var(--line);
}

.outcome-card {
  display: flex;
  min-height: 330px;
  min-width: 0;
  flex-direction: column;
  padding: clamp(25px, 3vw, 40px);
  background: var(--paper-raised);
}

.outcome-fact {
  margin: 0 0 26px;
  color: var(--accent-dark);
  font-family: var(--serif);
  font-size: clamp(35px, 3.2vw, 50px);
  letter-spacing: -0.045em;
  line-height: 1;
  overflow-wrap: anywhere;
}

.outcome-context {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.55;
}

.evidence-status {
  margin: auto 0 0;
  padding-top: 28px;
  color: var(--muted);
  letter-spacing: 0.1em;
  overflow-wrap: anywhere;
}

.throughline {
  overflow: hidden;
}

.throughline::after {
  position: absolute;
  right: -14vw;
  bottom: -28vw;
  width: 50vw;
  height: 50vw;
  border: 1px solid rgba(233, 199, 181, 0.15);
  border-radius: 50%;
  pointer-events: none;
  content: "";
}

.throughline-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: clamp(54px, 9vw, 132px);
  align-items: start;
}

.scope-ladder {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(248, 244, 236, 0.2);
  list-style: none;
  counter-reset: scope;
}

.scope-step {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(248, 244, 236, 0.2);
  color: var(--light-soft);
  font-size: 15px;
  counter-increment: scope;
}

.scope-step::before {
  color: var(--accent-pale);
  font-family: var(--serif);
  content: counter(scope, decimal-leading-zero);
}

.quote {
  max-width: 980px;
  margin: clamp(64px, 8vw, 112px) 0 0;
  padding-left: clamp(24px, 4vw, 52px);
  border-left: 2px solid var(--accent);
  color: var(--light);
  font-family: var(--serif);
  font-size: clamp(32px, 4.3vw, 62px);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 34px);
  margin-top: clamp(48px, 6vw, 84px);
}

.case-card {
  display: flex;
  min-height: 520px;
  min-width: 0;
  flex-direction: column;
  padding: clamp(28px, 3vw, 42px);
  border: 1px solid var(--line);
  background: var(--paper-raised);
  transition:
    border-color 240ms var(--ease),
    box-shadow 240ms var(--ease),
    transform 240ms var(--ease);
}

.case-meta {
  margin-bottom: 26px;
}

.case-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(31px, 3vw, 44px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.case-card p {
  color: var(--ink-soft);
}

.case-card h3 + p {
  margin-top: 25px;
}

.case-status {
  margin: auto 0 0;
  padding-top: 30px;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.case-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
  text-transform: uppercase;
}

.case-link::after {
  content: "\2192";
}

.career-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1px;
  margin-top: clamp(48px, 6vw, 82px);
  border-block: 1px solid var(--line);
  background: var(--line);
}

.career-card {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(170px, 0.72fr) minmax(0, 1.85fr);
  grid-template-areas: "meta content";
  column-gap: clamp(38px, 6vw, 88px);
  row-gap: 12px;
  padding: clamp(32px, 4.5vw, 64px) 0;
  background: var(--paper);
}

.career-card > * {
  min-width: 0;
}

.career-meta {
  grid-area: meta;
}

.career-content {
  display: grid;
  grid-area: content;
  gap: 16px;
}

.career-period {
  margin: 4px 0 0;
  color: var(--muted);
}

.career-company {
  max-width: 100%;
  margin: 0;
  color: var(--accent-dark);
  font-family: var(--serif);
  font-size: clamp(24px, 2.4vw, 34px);
  letter-spacing: -0.035em;
  line-height: 1.08;
  overflow-wrap: anywhere;
  word-break: normal;
}

.career-role {
  max-width: 820px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(31px, 3.2vw, 48px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.career-role span,
.career-scope span {
  display: block;
  margin-bottom: 7px;
  color: var(--accent-dark);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.45;
  text-transform: uppercase;
}

.career-role strong,
.career-result strong {
  display: block;
}

.career-scope {
  max-width: 820px;
  margin: 12px 0 0;
  color: var(--ink-soft);
}

.career-result {
  max-width: 820px;
  margin: 9px 0 0;
  padding: 20px 0 0 24px;
  border-top: 1px solid var(--line);
  border-left: 2px solid var(--accent);
  color: var(--ink);
}

.career-result .evidence-status {
  display: block;
  margin: 12px 0 0;
}

.career-content h3 {
  margin: 4px 0 0;
  font-size: clamp(21px, 2vw, 29px);
}

.career-content > p:not(.career-role):not(.career-scope):not(.career-result) {
  max-width: 820px;
  margin: 0;
  color: var(--ink-soft);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(50px, 7vw, 88px);
  background: rgba(248, 244, 236, 0.18);
}

.approach-step {
  position: relative;
  min-height: 290px;
  padding: clamp(26px, 3vw, 40px);
  background: var(--dark-raised);
  counter-increment: approach;
}

.approach-grid {
  counter-reset: approach;
}

.approach-step::before {
  display: block;
  margin-bottom: 62px;
  color: var(--accent-pale);
  font-family: var(--serif);
  font-size: 18px;
  content: counter(approach, decimal-leading-zero);
}

.approach-step h3 {
  margin: 0;
  color: var(--light);
  font-family: var(--serif);
  font-size: clamp(26px, 2.5vw, 36px);
  font-weight: 400;
}

.approach-step p {
  margin: 20px 0 0;
  color: var(--light-soft);
  font-size: 15px;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 34px);
  margin-top: clamp(48px, 6vw, 82px);
}

.principle-card {
  min-height: 330px;
  padding: clamp(28px, 3vw, 42px) 0;
  border-top: 3px solid var(--accent);
}

.principle-card > span {
  display: block;
  margin-bottom: 54px;
  color: var(--accent-dark);
  font-family: var(--serif);
  font-size: 18px;
}

.principle-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.principle-card p {
  margin: 26px 0 0;
  color: var(--ink-soft);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(48px, 6vw, 82px);
  border: 1px solid var(--line);
  background: var(--line);
}

.value-card {
  min-height: 250px;
  padding: clamp(28px, 4vw, 48px);
  background: var(--paper-raised);
}

.value-card h3 {
  max-width: 500px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(28px, 2.7vw, 40px);
  font-weight: 400;
}

.value-card p {
  max-width: 600px;
  margin: 23px 0 0;
  color: var(--ink-soft);
}

.contact {
  overflow: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.62fr);
  gap: clamp(54px, 9vw, 138px);
  align-items: start;
}

.contact-links {
  display: grid;
  gap: 1px;
  border-block: 1px solid rgba(248, 244, 236, 0.22);
  background: rgba(248, 244, 236, 0.22);
  margin-top: 34px;
}

.contact-links a {
  display: flex;
  min-height: 62px;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  background: var(--dark);
  color: var(--light);
  font-size: clamp(17px, 1.7vw, 22px);
  overflow-wrap: anywhere;
}

.contact-links a::after {
  flex: 0 0 auto;
  color: var(--accent-pale);
  content: "\2197";
}

.contact-scenarios {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(248, 244, 236, 0.22);
  list-style: none;
}

.contact-scenarios li {
  padding: 16px 0 16px 25px;
  border-bottom: 1px solid rgba(248, 244, 236, 0.22);
  color: var(--light-soft);
}

.contact-scenarios li::before {
  display: inline-block;
  width: 25px;
  margin-left: -25px;
  color: var(--accent-pale);
  content: "\2014";
}

.case-detail {
  padding-block: clamp(56px, 8vw, 120px) var(--section-space);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: clamp(44px, 6vw, 80px);
  color: var(--muted);
}

.breadcrumbs a {
  color: var(--accent-dark);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, var(--article)) minmax(250px, 330px);
  gap: clamp(54px, 9vw, 128px);
  align-items: start;
}

.article-header {
  max-width: 1050px;
  margin-bottom: clamp(54px, 7vw, 92px);
}

.article-header h1 {
  max-width: 1020px;
  margin: 0;
  overflow-wrap: normal;
  font-size: clamp(52px, 7vw, 96px);
  hyphens: none;
  word-break: normal;
}

.article-header > p:last-child {
  max-width: 780px;
  margin: clamp(25px, 3vw, 38px) 0 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.5vw, 23px);
}

.article-layout > article,
.article-layout > div,
.article-layout > aside {
  min-width: 0;
}

.article-layout h1 {
  margin: 0;
  font-size: clamp(52px, 7vw, 96px);
}

.article-layout h2 {
  margin: clamp(62px, 8vw, 96px) 0 24px;
  font-size: clamp(35px, 4vw, 52px);
}

.article-layout h3 {
  margin: 42px 0 16px;
  font-family: var(--serif);
  font-size: clamp(27px, 2.7vw, 36px);
  font-weight: 400;
}

.article-layout p,
.article-layout li {
  color: var(--ink-soft);
  font-size: clamp(17px, 1.2vw, 19px);
}

.article-layout a:not(.button) {
  color: var(--accent-dark);
  text-decoration: underline;
}

.fact-panel {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  padding: 28px;
  border-top: 3px solid var(--accent);
  background: var(--paper-deep);
}

.fact-panel p {
  margin: 0;
}

.fact-panel p + p {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.fact-panel span,
.fact-panel strong {
  display: block;
}

.fact-panel span {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fact-panel strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.25;
}

.case-disclaimer {
  margin-top: 72px;
  padding: 24px 0 0 24px;
  border-top: 1px solid var(--line);
  border-left: 2px solid var(--accent);
  color: var(--muted) !important;
  font-size: 14px !important;
}

.article-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(64px, 8vw, 110px);
}

.section-action {
  margin: 36px 0 0;
}

.text-link {
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fact-panel h2,
.fact-panel h3 {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
}

.fact-panel dl {
  margin: 0;
}

.fact-panel dt {
  margin-top: 20px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fact-panel dd {
  margin: 4px 0 0;
  color: var(--ink);
  overflow-wrap: anywhere;
}

.archive-empty {
  max-width: 780px;
  margin-top: clamp(48px, 7vw, 88px);
  padding: clamp(32px, 5vw, 64px);
  border: 1px solid var(--line);
  background: var(--paper-raised);
}

.archive-empty h2,
.archive-empty h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(31px, 3.5vw, 48px);
  font-weight: 400;
}

.archive-empty p {
  margin: 24px 0 0;
  color: var(--ink-soft);
}

.site-footer {
  padding-block: 28px;
  border-top: 1px solid rgba(248, 244, 236, 0.18);
  color: var(--light-soft);
  background: var(--dark);
  font-size: 13px;
}

.site-footer .section-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-footer a {
  color: var(--light);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 22px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 680ms var(--ease),
    transform 680ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (hover: hover) and (pointer: fine) {
  .nav a:hover::after,
  .language a:hover::after {
    transform: scaleX(1);
    transform-origin: left center;
  }

  .button:hover {
    border-color: var(--accent-dark);
    background: var(--accent-dark);
    transform: translateY(-2px);
  }

  .button-secondary:hover {
    border-color: var(--dark);
    color: var(--light);
    background: var(--dark);
  }

  .section-dark .button:hover,
  .throughline .button:hover,
  .contact .button:hover {
    border-color: var(--accent-pale);
    background: var(--accent-pale);
  }

  .section-dark .button-secondary:hover,
  .throughline .button-secondary:hover,
  .contact .button-secondary:hover {
    border-color: var(--light);
    color: var(--dark);
    background: var(--light);
  }

  .case-card:hover {
    border-color: var(--line-strong);
    box-shadow: var(--shadow);
    transform: translateY(-5px);
  }

  .case-link:hover,
  .breadcrumbs a:hover {
    color: var(--accent-dark);
    text-decoration-thickness: 2px;
  }

  .contact-links a:hover,
  .site-footer a:hover {
    color: var(--accent-pale);
  }
}

@media (max-width: 1180px) {
  :root {
    --header-height: 72px;
  }

  .nav {
    gap: 15px;
  }

  .nav a {
    font-size: 10px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
    column-gap: clamp(32px, 5vw, 62px);
  }

  .hero-title {
    font-size: clamp(54px, 7.5vw, 82px);
  }

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

  .outcome-card {
    min-height: 280px;
  }

  .career-card {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "meta"
      "content";
    row-gap: 11px;
  }

  .career-company {
    max-width: 100%;
    font-size: clamp(25px, 3vw, 34px);
  }

  .career-role {
    margin-top: 20px;
    overflow-wrap: anywhere;
  }

  .career-content {
    margin-top: 10px;
  }

  .career-scope,
  .career-result {
    max-width: 900px;
  }

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

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .header-inner > .language {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(290px, 0.68fr);
  }

  .hero-media,
  .hero-photo {
    min-height: 0;
  }

  .hero-title {
    font-size: clamp(50px, 7.8vw, 72px);
  }

  .hero-lead {
    font-size: 18px;
  }

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

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

  .case-card {
    min-height: 0;
  }

  .case-status {
    margin-top: 40px;
  }

  .principle-card {
    min-height: 0;
  }

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

  .fact-panel {
    position: static;
    max-width: 620px;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 66px;
    --section-space: clamp(70px, 20vw, 106px);
  }

  body {
    line-height: 1.58;
  }

  .section-title {
    font-size: clamp(40px, 11.5vw, 56px);
  }

  .article-header h1 {
    font-size: clamp(40px, 11vw, 58px);
  }

  .section-lead {
    font-size: 18px;
  }

  .hero {
    padding-block: 44px 72px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "intro"
      "media"
      "actions";
    gap: 32px;
  }

  .hero-title {
    font-size: clamp(42px, 11vw, 58px);
    line-height: 0.98;
  }

  .hero-lead {
    margin-top: 24px;
    font-size: 18px;
  }

  .hero-context {
    margin-top: 22px;
    font-size: 10px;
  }

  .hero-media,
  .hero-photo {
    min-height: 0;
  }

  .hero-media {
    aspect-ratio: 4 / 5;
  }

  .hero-photo {
    height: 100%;
    object-position: 53% 42%;
  }

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

  .button {
    width: 100%;
    min-height: 54px;
  }

  .outcomes-grid,
  .value-grid,
  .approach-grid {
    grid-template-columns: 1fr;
  }

  .outcome-card {
    min-height: 240px;
  }

  .throughline::after {
    right: -45vw;
    bottom: -20vw;
    width: 95vw;
    height: 95vw;
  }

  .quote {
    padding-left: 22px;
    font-size: clamp(30px, 9.5vw, 45px);
  }

  .career-card {
    padding-block: 38px;
  }

  .career-role {
    font-size: clamp(29px, 8vw, 39px);
  }

  .career-result {
    padding-left: 18px;
  }

  .approach-step {
    min-height: 245px;
  }

  .value-card {
    min-height: 0;
  }

  .site-footer .section-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .header-inner {
    gap: 14px;
  }

  .brand > span:last-child {
    gap: 0;
  }

  .brand small {
    display: none;
  }

  .language {
    gap: 9px;
  }
}

@media (max-width: 430px) {
  :root {
    --gutter: 18px;
  }

  .brand {
    font-size: 21px;
  }

  .hero-title {
    font-size: clamp(43px, 13.4vw, 58px);
    letter-spacing: -0.052em;
  }

  .section-title {
    font-size: clamp(40px, 12.3vw, 54px);
  }

  .hero-media {
    aspect-ratio: 1 / 1.16;
  }

  .hero-media::before {
    top: 14px;
    right: 14px;
    width: 60px;
    height: 60px;
  }

  .outcome-card,
  .case-card,
  .value-card,
  .approach-step,
  .archive-empty {
    padding-right: 23px;
    padding-left: 23px;
  }

  .outcome-fact,
  .case-card h3,
  .principle-card h3 {
    overflow-wrap: anywhere;
  }

  .contact-links a {
    font-size: 16px;
  }

  .article-layout h1 {
    font-size: clamp(43px, 13vw, 58px);
  }

  .fact-panel {
    padding: 24px;
  }
}

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

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

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

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

  body {
    color: #000;
    background: #fff;
    font-size: 11pt;
  }

  .section,
  .case-detail {
    padding-block: 30pt;
  }

  .section-dark,
  .throughline,
  .contact {
    color: #000;
    background: #fff;
  }

  a {
    color: #000;
  }

  .case-card,
  .outcome-card,
  .value-card,
  .fact-panel {
    break-inside: avoid;
    box-shadow: none;
  }
}

/* --------------------------------------------------------------------------
   Editorial visual system
   Restores the bold, monochrome language of the previous site while keeping
   the current semantic structure, bilingual content and responsive layout.
   -------------------------------------------------------------------------- */

:root {
  --paper: #f4f2ed;
  --paper-raised: #ffffff;
  --paper-deep: #e7e3dc;
  --ink: #111111;
  --ink-soft: #30302d;
  --muted: #696761;
  --line: rgba(17, 17, 17, 0.18);
  --line-strong: rgba(17, 17, 17, 0.42);
  --dark: #0c0c0c;
  --dark-raised: #151515;
  --light: #ffffff;
  --light-soft: #b5b5b5;
  --accent: #111111;
  --accent-dark: #111111;
  --accent-pale: #c8d8c2;
  --sand: #e4d2b5;
  --green: #c8d8c2;
  --blue: #c8d7e8;
  --violet: #d8c9e5;
  --red: #e1bbb3;
  --display: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --serif: var(--display);
  --radius: 0;
  --shadow: 14px 16px 0 #111111;
}

body {
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
}

h1,
h2,
h3,
.section-title,
.hero-title,
.article-header h1 {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
.section-title,
.hero-title,
.article-header h1 {
  letter-spacing: -0.065em;
  line-height: 0.88;
}

h3 {
  letter-spacing: -0.045em;
  line-height: 0.98;
}

:focus-visible {
  outline-color: #315e59;
}

.section-dark :focus-visible,
.throughline :focus-visible,
.experience :focus-visible,
.career :focus-visible,
.leadership :focus-visible,
.contact :focus-visible,
.site-footer :focus-visible,
.menu-panel :focus-visible {
  outline-color: #ffffff;
}

::selection {
  color: #ffffff;
  background: #111111;
}

.site-header {
  color: #111111;
  border-color: rgba(17, 17, 17, 0.12);
  background: rgba(244, 242, 237, 0.94);
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-color: currentColor;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.07em;
}

.brand strong {
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav a,
.language a {
  color: #111111;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.nav {
  display: none;
}

.header-inner > .language,
.language {
  display: flex;
  margin-left: auto;
  padding-left: 0;
  border-left: 0;
}

.menu-toggle {
  position: relative;
  display: inline-flex;
  width: auto;
  height: 44px;
  margin-left: 0;
  padding: 0;
  border: 0;
  align-items: center;
  gap: 12px;
  background: transparent;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-toggle span {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.menu-toggle::before,
.menu-toggle::after {
  display: none;
}

.menu-toggle i {
  position: relative;
  display: block;
  width: 22px;
  height: 10px;
  flex: 0 0 auto;
}

.menu-toggle i::before,
.menu-toggle i::after {
  position: absolute;
  right: 0;
  width: 22px;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform 220ms var(--ease);
}

.menu-toggle i::before {
  top: 1px;
}

.menu-toggle i::after {
  bottom: 1px;
}

.menu-toggle[aria-expanded="true"] i::before {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] i::after {
  transform: translateY(-3.5px) rotate(-45deg);
}

.nav a::after,
.language a::after {
  height: 2px;
  background: #111111;
}

.menu-panel {
  color: #ffffff;
  background: #151515;
}

.menu-panel a {
  min-height: 76px;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
  font-family: var(--display);
  font-size: clamp(34px, 7vw, 72px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.92;
  text-transform: uppercase;
}

.section-kicker,
.hero-eyebrow,
.case-meta,
.case-status,
.evidence-status,
.career-period,
.breadcrumbs {
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.section-dark .section-kicker,
.throughline .section-kicker,
.experience .section-kicker,
.career .section-kicker,
.leadership .section-kicker,
.contact .section-kicker,
.section-dark .case-meta,
.section-dark .case-status {
  color: rgba(255, 255, 255, 0.64);
}

.section-title {
  max-width: 13ch;
  font-size: clamp(48px, 7vw, 112px);
  letter-spacing: -0.07em;
  line-height: 0.86;
}

.section-lead {
  max-width: 760px;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.45vw, 22px);
}

.section-dark,
.throughline,
.experience,
.career,
.leadership,
.contact {
  color: #ffffff;
  background: #0c0c0c;
}

.section-dark .section-lead,
.throughline .section-lead,
.experience .section-lead,
.career .section-lead,
.leadership .section-lead,
.contact .section-lead {
  color: #aaaaaa;
}

.hero {
  min-height: calc(100svh - var(--header-height));
  padding-block: clamp(52px, 7vw, 104px);
  background: var(--paper);
}

.hero-grid {
  grid-template-columns: minmax(0, 7fr) minmax(340px, 5fr);
  column-gap: clamp(44px, 7vw, 110px);
}

.hero-title {
  max-width: 12.5ch;
  font-size: clamp(62px, 6.8vw, 112px);
  letter-spacing: -0.075em;
  line-height: 0.84;
}

html[lang="en"] .hero-title {
  font-size: clamp(58px, 6.2vw, 102px);
}

.hero-lead {
  max-width: 620px;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.48;
}

.hero-context {
  color: var(--ink);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.hero-media {
  overflow: visible;
  background: #d8d2c8;
  box-shadow: var(--shadow);
}

.hero-media::before {
  z-index: 2;
  border-color: rgba(255, 255, 255, 0.8);
}

.hero-photo {
  overflow: hidden;
  filter: none;
}

.button {
  min-height: 48px;
  border-color: #111111;
  border-radius: 999px;
  color: #ffffff;
  background: #111111;
  font-size: 11px;
  letter-spacing: 0.1em;
}

.button-secondary {
  color: #111111;
  background: transparent;
}

.outcomes-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-color: #111111;
  background: transparent;
}

.outcome-card {
  min-height: 300px;
  border-right: 1px solid rgba(17, 17, 17, 0.26);
  background: #dedbd4;
}

.outcome-card:nth-child(2) { background: var(--sand); }
.outcome-card:nth-child(3) { background: var(--green); }
.outcome-card:nth-child(4) { background: var(--blue); }
.outcome-card:nth-child(5) { background: var(--violet); }
.outcome-card:nth-child(6) { background: var(--red); }

.outcome-card:last-child {
  border-right: 0;
}

.outcome-fact {
  color: #111111;
  font-family: var(--display);
  font-size: clamp(36px, 3.8vw, 62px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.9;
  text-transform: uppercase;
}

.outcome-card h3 {
  font-size: clamp(24px, 2.4vw, 34px);
}

.outcome-context,
.outcome-card .evidence-status {
  color: rgba(17, 17, 17, 0.68);
}

.throughline {
  background: #0c0c0c;
}

.throughline::after {
  border-color: rgba(255, 255, 255, 0.2);
}

.scope-ladder {
  gap: 8px;
  border: 0;
}

.scope-step {
  min-height: 72px;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  padding: 13px 18px;
  border: 0;
  color: #111111;
  background: #dedbd4;
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
  text-transform: uppercase;
}

.scope-step:nth-child(2) { background: var(--sand); }
.scope-step:nth-child(3) { background: var(--green); }
.scope-step:nth-child(4) { background: var(--blue); }
.scope-step:nth-child(5) { background: var(--violet); }
.scope-step:nth-child(6) { background: var(--red); }

.scope-step::before {
  color: rgba(17, 17, 17, 0.48);
  font-family: var(--display);
  font-size: 12px;
}

.quote {
  border-left-color: #ffffff;
  color: #ffffff;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.95;
  text-transform: uppercase;
}

.cases-grid {
  gap: 0;
  border-top: 1px solid #111111;
  border-left: 1px solid #111111;
}

.case-card {
  min-height: 500px;
  border: 0;
  border-right: 1px solid #111111;
  border-bottom: 1px solid #111111;
  background: var(--sand);
  box-shadow: none;
}

.case-card:nth-child(2) { background: var(--green); }
.case-card:nth-child(3) { background: var(--blue); }
.case-card:nth-child(4) { background: var(--violet); }
.case-card:nth-child(5) { background: var(--red); }

.case-card h2,
.case-card h3 {
  color: #111111;
  font-family: var(--display);
  font-size: clamp(34px, 3.5vw, 54px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.94;
  text-transform: uppercase;
}

.case-card p,
.case-card .case-status,
.case-link {
  color: rgba(17, 17, 17, 0.68);
}

.case-link,
.text-link {
  color: #111111;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.experience,
.career {
  background: #111111;
}

.career-grid {
  gap: 1px;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.2);
}

.career-card {
  grid-template-columns: minmax(250px, 0.78fr) minmax(0, 1.72fr);
  grid-template-areas: "meta content";
  gap: clamp(32px, 5vw, 76px);
  padding: 0;
  color: #ffffff;
  background: #111111;
}

.career-meta {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  color: #111111;
  background: #dedbd4;
}

.career-card:nth-child(2) .career-meta { background: var(--sand); }
.career-card:nth-child(3) .career-meta { background: var(--green); }
.career-card:nth-child(4) .career-meta { background: var(--blue); }
.career-card:nth-child(5) .career-meta { background: var(--violet); }
.career-card:nth-child(6) .career-meta { background: var(--red); }

.career-period {
  color: rgba(17, 17, 17, 0.62);
}

.career-company {
  color: #111111;
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 64px);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.9;
  text-transform: uppercase;
}

.career-content {
  align-content: start;
  padding: clamp(34px, 5vw, 66px) clamp(24px, 4vw, 56px) clamp(34px, 5vw, 66px) 0;
}

.career-role {
  color: #ffffff;
  font-family: var(--display);
  font-size: clamp(38px, 4.5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.9;
  text-transform: uppercase;
}

.career-role span,
.career-scope span,
.career-content h3,
.career-result .evidence-status {
  color: #8d8d8d;
}

.career-scope,
.career-content > p:not(.career-role):not(.career-scope):not(.career-result) {
  color: #bdbdbd;
}

.career-result {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.28);
  border-left-color: #ffffff;
}

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

.approach-grid {
  gap: 0;
  border-top: 1px solid #111111;
  border-left: 1px solid #111111;
  background: transparent;
}

.approach-step {
  min-height: 310px;
  border-right: 1px solid rgba(17, 17, 17, 0.28);
  border-bottom: 1px solid rgba(17, 17, 17, 0.28);
  color: #111111;
  background: transparent;
  transition: background-color 220ms ease;
}

.approach-step::before {
  color: var(--muted);
  font-family: var(--display);
  font-weight: 800;
}

.approach-step h3 {
  color: #111111;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.95;
  text-transform: uppercase;
}

.approach-step p {
  color: var(--ink-soft);
}

.approach-formula {
  max-width: 1100px;
  margin: clamp(44px, 6vw, 80px) 0 0;
  padding-top: 26px;
  border-top: 1px solid #111111;
  font-family: var(--display);
  font-size: clamp(27px, 3.6vw, 52px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.98;
  text-transform: uppercase;
}

.leadership {
  background: #121212;
}

.leadership-grid {
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.principle-card {
  min-height: 410px;
  padding: clamp(28px, 3vw, 42px);
  border-top: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.principle-card > span {
  color: #858585;
  font-family: var(--display);
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.06em;
}

.principle-card h3 {
  color: #ffffff;
  font-family: var(--display);
  font-size: clamp(30px, 3.4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.95;
  text-transform: uppercase;
}

.principle-card p {
  color: #aaaaaa;
}

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

.value-grid {
  gap: 0;
  border-color: #111111;
  background: transparent;
}

.value-card {
  min-height: 300px;
  border-right: 1px solid #111111;
  border-bottom: 1px solid #111111;
  background: var(--paper);
}

.value-card:nth-child(2) { background: var(--sand); }
.value-card:nth-child(3) { background: var(--green); }
.value-card:nth-child(4) { background: var(--blue); }

.value-card h3 {
  font-family: var(--display);
  font-size: clamp(31px, 3.5vw, 54px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.95;
  text-transform: uppercase;
}

.contact {
  min-height: 92svh;
  background: #070707;
}

.contact-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.62fr);
}

.contact .section-title {
  max-width: 12ch;
  color: #ffffff;
  font-size: clamp(54px, 8vw, 128px);
}

.contact-links,
.contact-scenarios {
  border-color: rgba(255, 255, 255, 0.28);
  background: transparent;
}

.contact-links a,
.contact-scenarios li {
  border-color: rgba(255, 255, 255, 0.28);
  color: #ffffff;
  background: #070707;
}

.contact-links a {
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 800;
  letter-spacing: -0.035em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: #070707;
}

.case-detail {
  background: var(--paper);
}

.article-header h1,
.article-layout h1 {
  max-width: 13ch;
  font-size: clamp(56px, 8vw, 118px);
  letter-spacing: -0.075em;
  line-height: 0.84;
}

.article-header > p:last-child {
  color: var(--ink-soft);
  font-size: clamp(17px, 1.45vw, 22px);
}

.article-layout h2,
.article-layout h3 {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.94;
  text-transform: uppercase;
}

.article-layout h2 {
  font-size: clamp(38px, 4.5vw, 62px);
}

.article-layout h3 {
  font-size: clamp(28px, 3vw, 42px);
}

.article-layout a:not(.button),
.breadcrumbs a {
  color: #111111;
}

.fact-panel {
  border: 2px solid #111111;
  border-top-width: 2px;
  background: var(--green);
  box-shadow: 10px 11px 0 #111111;
}

.fact-panel strong,
.fact-panel h2,
.fact-panel h3 {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-transform: uppercase;
}

.archive-empty {
  border: 2px solid #111111;
  background: var(--sand);
  box-shadow: 12px 13px 0 #111111;
}

.archive-empty h2,
.archive-empty h3 {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.95;
  text-transform: uppercase;
}

/* Publication archive, homepage bridge and long-form article details. */
.publications,
.articles,
.articles-section,
.publication-archive {
  color: #ffffff;
  background: #0c0c0c;
}

.articles .section-kicker,
.articles-section .section-kicker,
.publications .section-kicker,
.publication-archive .section-kicker {
  color: rgba(255, 255, 255, 0.64);
}

.articles .section-lead,
.articles-section .section-lead,
.publications .section-lead,
.publication-archive .section-lead {
  color: #aaaaaa;
}

.articles .text-link,
.articles-section .text-link,
.publications .text-link,
.publication-archive .text-link {
  color: #ffffff;
}

.articles-grid,
.publications-grid,
.publication-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(48px, 6vw, 84px);
  border-top: 1px solid #111111;
  border-left: 1px solid #111111;
}

.article-card,
.publication-card {
  display: flex;
  min-height: 430px;
  min-width: 0;
  flex-direction: column;
  padding: clamp(28px, 3vw, 42px);
  border-right: 1px solid #111111;
  border-bottom: 1px solid #111111;
  color: #111111;
  background: var(--sand);
}

.article-card:nth-child(2),
.publication-card:nth-child(2) { background: var(--green); }
.article-card:nth-child(3),
.publication-card:nth-child(3) { background: var(--blue); }
.article-card:nth-child(4),
.publication-card:nth-child(4) { background: var(--violet); }
.article-card:nth-child(5),
.publication-card:nth-child(5) { background: var(--red); }
.article-card:nth-child(6),
.publication-card:nth-child(6) { background: #dedbd4; }

.article-card h2,
.article-card h3,
.publication-card h2,
.publication-card h3 {
  margin: 0;
  color: #111111;
  font-family: var(--display);
  font-size: clamp(32px, 3.3vw, 52px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.94;
  text-transform: uppercase;
}

.article-card p,
.publication-card p {
  color: rgba(17, 17, 17, 0.68);
}

.article-card .article-meta,
.article-card .publication-meta,
.publication-card .article-meta,
.publication-card .publication-meta,
.article-card-meta {
  margin-bottom: 30px;
  color: rgba(17, 17, 17, 0.58);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.article-card .article-link,
.article-card .article-card-link,
.article-card .publication-link,
.publication-card .article-link,
.publication-card .article-card-link,
.publication-card .publication-link {
  margin-top: auto;
  padding-top: 34px;
  color: #111111;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.articles-bridge,
.publications-bridge {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: end;
}

.articles-bridge-mark,
.publications-bridge-mark,
.article-number {
  font-family: var(--display);
  font-size: clamp(76px, 12vw, 180px);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.78;
}

@supports (-webkit-text-stroke: 1px #111111) {
  .articles-bridge-mark,
  .publications-bridge-mark,
  .article-number,
  .principle-card > span {
    color: transparent;
    -webkit-text-stroke: 1px #111111;
  }

  .principle-card > span {
    color: transparent;
    -webkit-text-stroke-color: #858585;
  }

  .articles .articles-bridge-mark {
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.72);
  }
}

.article-deck,
.article-byline,
.article-meta {
  color: var(--muted);
}

.article-header .article-meta {
  margin-top: 18px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.5;
  text-transform: uppercase;
}

.article-header p.article-source-note {
  max-width: 680px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.article-header p.article-editorial-note {
  max-width: 680px;
  margin-top: 16px;
  padding-left: 16px;
  border-left: 2px solid #111111;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.55;
}

.article-prose,
.article-body {
  min-width: 0;
}

.article-prose > p:first-of-type,
.article-body > p:first-of-type {
  color: #111111;
  font-size: clamp(20px, 1.7vw, 25px);
  line-height: 1.5;
}

@media (hover: hover) and (pointer: fine) {
  .button:hover {
    border-color: #111111;
    color: #111111;
    background: var(--green);
  }

  .button-secondary:hover {
    color: #ffffff;
    background: #111111;
  }

  .section-dark .button:hover,
  .throughline .button:hover,
  .contact .button:hover {
    border-color: var(--green);
    background: var(--green);
  }

  .approach-step:nth-child(1):hover,
  .approach-step:nth-child(4):hover { background: var(--sand); }
  .approach-step:nth-child(2):hover { background: var(--green); }
  .approach-step:nth-child(3):hover { background: var(--blue); }

  .case-card:hover,
  .article-card:hover,
  .publication-card:hover {
    box-shadow: 8px 9px 0 #111111;
    transform: translate(-4px, -4px);
  }
}

@media (max-width: 1180px) {
  .hero-title {
    font-size: clamp(56px, 7.2vw, 84px);
  }

  html[lang="en"] .hero-title {
    font-size: clamp(52px, 6.7vw, 78px);
  }

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

  .outcome-card:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(290px, 0.68fr);
  }

  .career-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "meta"
      "content";
    gap: 0;
  }

  .career-meta {
    min-height: 230px;
  }

  .career-content {
    padding-left: clamp(24px, 5vw, 48px);
  }

  .cases-grid,
  .leadership-grid,
  .articles-grid,
  .publications-grid,
  .publication-grid {
    grid-template-columns: 1fr;
  }

  .case-card,
  .article-card,
  .publication-card,
  .principle-card {
    min-height: 0;
  }

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

@media (max-width: 820px) {
  .hero {
    min-height: auto;
    padding-block: 44px 72px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "intro"
      "media"
      "actions";
  }

  .hero-title,
  html[lang="en"] .hero-title {
    max-width: 100%;
    font-size: clamp(46px, 13.4vw, 70px);
    line-height: 0.84;
  }

  .hero-media {
    overflow: visible;
    box-shadow: 8px 9px 0 #111111;
  }

  .section-title,
  .contact .section-title,
  .article-header h1,
  .article-layout h1 {
    max-width: 100%;
    font-size: clamp(44px, 13vw, 70px);
    line-height: 0.86;
  }

  .outcomes-grid,
  .value-grid,
  .approach-grid {
    grid-template-columns: 1fr;
  }

  .outcome-card {
    min-height: 240px;
    border-right: 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.26);
  }

  .scope-step {
    min-height: 64px;
    font-size: clamp(18px, 6vw, 26px);
  }

  .career-meta {
    min-height: 220px;
    padding: 22px;
  }

  .career-company {
    font-size: clamp(36px, 12vw, 58px);
  }

  .career-role {
    font-size: clamp(38px, 11vw, 58px);
  }

  .approach-step {
    min-height: 245px;
  }

  .articles-bridge,
  .publications-bridge {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .contact {
    min-height: auto;
  }
}

@media (max-width: 430px) {
  .brand > span:last-child {
    display: none;
  }

  .hero-title,
  html[lang="en"] .hero-title {
    font-size: clamp(42px, 13.2vw, 60px);
  }

  .case-card h2,
  .case-card h3,
  .article-card h2,
  .article-card h3,
  .publication-card h2,
  .publication-card h3 {
    font-size: clamp(31px, 9vw, 44px);
  }

  .contact-links a {
    font-size: 22px;
  }
}

/* --------------------------------------------------------------------------
   Responsive type and full-frame portrait safeguards
   Keep wide fallback fonts and long Russian words inside their own blocks.
   -------------------------------------------------------------------------- */

.hero-grid > *,
.hero-intro,
.hero-actions {
  min-width: 0;
}

.hero-title {
  overflow-wrap: break-word;
  word-break: normal;
}

.hero-media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  isolation: isolate;
}

.hero-media picture {
  width: 100%;
  height: 100%;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 50% 50%;
}

html[lang="ru"] :is(
  h1,
  h2,
  h3,
  .career-company,
  .career-role,
  .outcome-fact,
  .quote,
  .scope-step,
  .approach-formula
) {
  min-width: 0;
  overflow-wrap: break-word;
  hyphens: auto;
  word-break: normal;
  letter-spacing: -0.04em;
  line-height: 1;
}

html[lang="ru"] :is(
  .hero-title,
  .section-title,
  .article-header h1,
  .article-layout h1
) {
  max-width: 100%;
  line-height: 0.96;
}

html[lang="ru"] .hero-title {
  font-size: clamp(52px, 5.5vw, 88px);
}

html[lang="ru"] .career-role {
  font-size: clamp(34px, 3.8vw, 60px);
  line-height: 1.02;
}

@media (max-width: 1180px) {
  .cases-grid,
  .leadership-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "intro"
      "media"
      "actions";
    row-gap: 32px;
  }

  .hero-media {
    width: min(100%, 680px);
    justify-self: center;
  }

  .cases-grid,
  .leadership-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 820px) {
  html[lang="ru"] .hero-title {
    font-size: clamp(42px, 11vw, 58px);
  }
}

@media (max-width: 430px) {
  html[lang="ru"] .hero-title {
    font-size: clamp(36px, 10.5vw, 46px);
  }

  html[lang="ru"] .career-role {
    font-size: clamp(30px, 8.5vw, 36px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .case-card,
  .article-card,
  .publication-card,
  .approach-step {
    transform: none !important;
  }
}

@media print {
  body,
  .section-dark,
  .throughline,
  .experience,
  .career,
  .leadership,
  .contact,
  .site-footer,
  .career-card {
    color: #000000;
    background: #ffffff;
  }

  .career-role,
  .career-scope,
  .career-result,
  .principle-card h3,
  .principle-card p,
  .contact .section-title,
  .contact .section-lead {
    color: #000000;
  }

  .hero-media,
  .fact-panel,
  .archive-empty,
  .case-card,
  .article-card,
  .publication-card {
    box-shadow: none;
  }
}
