@font-face {
  font-family: "Outfit";
  src: url("../fonts/outfit-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

:root {
  --ink: #20242a;
  --ink-soft: #343a42;
  --muted: #5f6b75;
  --red: #c61629;
  --red-dark: #8e101e;
  --red-deep: #600c16;
  --paper: #ffffff;
  --soft: #f5f7f7;
  --blue-wash: #edf3f5;
  --red-wash: #fff5f5;
  --line: #dce2e5;
  --line-dark: #b8c2c8;
  --max: 1320px;
  --reading: 710px;
  --radius: 6px;
  --shadow: 0 24px 65px rgba(49, 25, 29, 0.12);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: "Outfit", "Avenir Next", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.58;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

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

a {
  color: inherit;
  text-decoration: none;
}

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

button { cursor: pointer; }

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

h1,
h2,
h3 {
  margin-bottom: 0;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

p { text-wrap: pretty; }

:focus-visible {
  outline: 3px solid rgba(198, 22, 41, 0.52);
  outline-offset: 4px;
}

.skip-link,
.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:focus {
  z-index: 40;
  top: 14px;
  left: 14px;
  width: auto;
  height: auto;
  padding: 11px 16px;
  clip: auto;
  color: white;
  background: var(--ink);
  border-radius: 4px;
}

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

.site-main {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  height: 82px;
  border-bottom: 1px solid rgba(220, 226, 229, 0.82);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  transition: box-shadow 240ms ease, background-color 240ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 12px 34px rgba(32, 36, 42, 0.08);
}

.nav-shell {
  width: min(calc(100% - 64px), var(--max));
  height: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  width: 178px;
  height: 58px;
  align-items: center;
}

.brand img {
  width: 170px;
  height: 56px;
  object-fit: contain;
  object-position: left center;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.desktop-nav a {
  position: relative;
  padding-block: 28px;
  color: var(--ink-soft);
  font-size: 0.96rem;
  font-weight: 550;
  transition: color 200ms ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.active { color: var(--red-dark); }

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-phone {
  padding: 10px 12px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 600;
}

.nav-cta {
  display: inline-flex;
  min-height: 44px;
  padding: 10px 18px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--red);
  border-radius: 4px;
  color: white;
  background: var(--red);
  font-size: 0.9rem;
  font-weight: 650;
  transition: background-color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.nav-cta:hover {
  border-color: var(--red-dark);
  background: var(--red-dark);
  transform: translateY(-2px);
}

.nav-cta:active { transform: translateY(0) scale(0.98); }

.menu-toggle,
.mobile-nav { display: none; }

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 12px 22px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 650;
  line-height: 1.1;
  transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 35px rgba(94, 12, 22, 0.16);
}

.button:active { transform: translateY(0) scale(0.98); }

.button-red {
  color: white;
  background: var(--red);
  border-color: var(--red);
}

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

.button-dark {
  color: white;
  background: var(--ink);
  border-color: var(--ink);
}

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

.button-light {
  color: var(--ink);
  background: white;
  border-color: var(--line-dark);
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red-dark);
  font-weight: 650;
}

.text-link::after {
  content: "→";
  display: inline-block;
  transition: transform 200ms ease;
}

.text-link:hover::after { transform: translateX(5px); }

.kicker {
  margin-bottom: 18px;
  color: var(--red-dark);
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.2;
  letter-spacing: 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.55fr);
  gap: 72px;
  align-items: end;
  margin-bottom: 58px;
}

.section-heading h2 {
  max-width: 760px;
  font-size: 3.5rem;
}

.section-heading p {
  max-width: 560px;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 1.08rem;
}

/* Home */

.home-hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  display: grid;
  place-items: center;
  isolation: isolate;
  background: var(--blue-wash);
}

.hero-media {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: grayscale(1) contrast(0.9) brightness(1.13);
}

.hero-wash {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: rgba(255, 255, 255, 0.76);
}

.hero-accent {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  width: 24%;
  height: 8px;
  background: var(--red);
}

.hero-content {
  width: min(calc(100% - 64px), 1160px);
  padding-block: 74px 86px;
  margin-inline: auto;
  text-align: center;
}

.hero-content .kicker {
  margin-bottom: 20px;
  color: var(--red-dark);
}

.home-hero h1 {
  max-width: 1080px;
  margin-inline: auto;
  font-size: 5.55rem;
  font-weight: 730;
  line-height: 0.98;
}

.hero-lead {
  max-width: 770px;
  margin: 30px auto 0;
  color: var(--ink-soft);
  font-size: 1.24rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.hero-note {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 520;
}

.trust-rail {
  overflow: hidden;
  color: var(--ink);
  background: white;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-shell {
  min-height: 156px;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 36px;
  align-items: center;
}

.trust-shell > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 550;
}

.logo-marquee {
  min-width: 0;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 7%, black 93%, transparent);
}

.logo-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 62px;
  animation: logo-marquee 34s linear infinite;
}

.logo-track:hover { animation-play-state: paused; }

.logo-track a {
  width: 118px;
  height: 55px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  opacity: 0.7;
  transition: opacity 200ms ease, transform 200ms ease;
}

.logo-track a:hover {
  opacity: 1;
  transform: translateY(-3px);
}

.logo-track img {
  max-width: 112px;
  max-height: 46px;
  filter: grayscale(1);
}

@keyframes logo-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 31px)); }
}

.people-showcase {
  padding-block: 124px 142px;
}

.people-showcase .section-heading { margin-bottom: 46px; }

.expert-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.person-card {
  min-width: 0;
  overflow: hidden;
  background: var(--soft);
  border-bottom: 3px solid transparent;
  transition: background-color 240ms ease, border-color 240ms ease, transform 240ms ease;
}

.person-card:hover {
  background: var(--red-wash);
  border-color: var(--red);
  transform: translateY(-5px);
}

.person-card img {
  width: 100%;
  aspect-ratio: 1 / 1.06;
  object-fit: cover;
  object-position: center 15%;
  filter: grayscale(0.92);
  transition: filter 450ms ease, transform 650ms ease;
}

.person-card:hover img {
  filter: grayscale(0.1);
  transform: scale(1.035);
}

.person-card div { padding: 20px 18px 22px; }

.person-card h3 {
  margin-bottom: 7px;
  font-size: 1.18rem;
}

.person-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.42;
}

.expertise-section {
  padding-block: 132px 150px;
  background: var(--blue-wash);
}

.expertise-matrix {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.expertise-cell {
  grid-column: span 3;
  min-height: 260px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  transition: color 260ms ease, background-color 260ms ease;
}

.expertise-cell:nth-child(-n + 2) { grid-column: span 6; }

.expertise-cell h3 {
  max-width: 360px;
  font-size: 1.65rem;
  line-height: 1.12;
}

.expertise-cell p {
  max-width: 390px;
  margin: 36px 0 0;
  color: var(--muted);
}

.expertise-cell::after {
  content: "Explore expertise →";
  margin-top: 30px;
  color: var(--red-dark);
  font-size: 0.9rem;
  font-weight: 650;
}

.expertise-cell:hover {
  color: white;
  background: var(--red-dark);
}

.expertise-cell:hover h3,
.expertise-cell:hover p,
.expertise-cell:hover::after { color: white; }

.method-section {
  padding-block: 146px 164px;
  background: var(--paper);
}

.method-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
  gap: 112px;
  align-items: start;
}

.method-intro {
  padding-top: 12px;
}

.method-intro h2 {
  max-width: 520px;
  font-size: 3.75rem;
}

.method-intro p {
  max-width: 500px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.method-list { border-top: 1px solid var(--ink); }

.method-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 24px;
  padding-block: 34px 42px;
  border-bottom: 1px solid var(--line);
}

.method-item > span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--red);
  border-radius: 50%;
  font-weight: 650;
  font-variant-numeric: tabular-nums;
}

.method-item h3 {
  margin-bottom: 13px;
  font-size: 1.55rem;
}

.method-item p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.process-section {
  padding-block: 132px 154px;
  background: var(--red-wash);
}

.process-path {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--red-dark);
}

.process-step {
  min-height: 290px;
  padding: 36px 38px 44px;
  border-right: 1px solid rgba(142, 16, 30, 0.25);
}

.process-step:last-child { border-right: 0; }

.process-step > span {
  display: block;
  margin-bottom: 62px;
  color: var(--red-dark);
  font-size: 2.15rem;
  font-weight: 650;
  font-variant-numeric: tabular-nums;
}

.process-step h3 {
  margin-bottom: 14px;
  font-size: 1.55rem;
}

.process-step p {
  max-width: 340px;
  margin: 0;
  color: var(--muted);
}

.work-section {
  padding-block: 140px 176px;
  background: var(--soft);
}

.case-stack {
  display: grid;
  gap: 28px;
}

.case-feature {
  position: sticky;
  top: 116px;
  min-height: 430px;
  padding: 50px 56px;
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1fr);
  gap: 64px;
  align-items: end;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 20px 55px rgba(32, 36, 42, 0.08);
  transform-origin: center top;
}

.case-feature:nth-child(2) {
  top: 136px;
  color: white;
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.case-feature:nth-child(3) {
  top: 156px;
  background: var(--blue-wash);
}

.case-feature:nth-child(2) h3,
.case-feature:nth-child(2) p,
.case-feature:nth-child(2) .case-client { color: white; }

.case-meta {
  align-self: start;
}

.case-year {
  display: block;
  margin-bottom: 18px;
  color: var(--red);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.case-feature:nth-child(2) .case-year { color: white; }

.case-client {
  max-width: 320px;
  margin: 0;
  color: var(--muted);
  font-weight: 550;
}

.case-copy h3 {
  max-width: 690px;
  margin-bottom: 22px;
  font-size: 2.55rem;
  line-height: 1.05;
}

.case-copy p {
  max-width: 660px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.05rem;
}

.case-feature:nth-child(2) .text-link { color: white; }

.knowledge-band {
  padding-block: 126px 140px;
  color: white;
  background: var(--red-deep);
}

.knowledge-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.5fr);
  gap: 100px;
  align-items: end;
}

.knowledge-layout h2 {
  max-width: 840px;
  color: white;
  font-size: 4.1rem;
}

.knowledge-copy p {
  max-width: 540px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.knowledge-copy .text-link { color: white; }

.home-cta,
.page-cta {
  padding-block: 112px 124px;
  background: white;
}

.cta-layout {
  padding-top: 44px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 56px;
  align-items: center;
  border-top: 1px solid var(--ink);
}

.cta-layout h2 {
  max-width: 880px;
  font-size: 3.55rem;
}

/* Shared subpages */

.subpage-hero {
  padding-block: 120px 126px;
  background: var(--blue-wash);
  border-bottom: 1px solid var(--line);
}

.subpage-hero .wide-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.45fr);
  gap: 78px;
  align-items: end;
}

.subpage-hero h1 {
  max-width: 900px;
  font-size: 4.85rem;
}

.subpage-hero p {
  max-width: 540px;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 1.12rem;
}

.content-section { padding-block: 122px 138px; }
.content-section.soft { background: var(--soft); }
.content-section.red-wash { background: var(--red-wash); }
.content-section.blue-wash { background: var(--blue-wash); }

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 106px;
  align-items: start;
}

.intro-grid h2 {
  max-width: 520px;
  font-size: 3.45rem;
}

.intro-copy {
  max-width: var(--reading);
  color: var(--ink-soft);
  font-size: 1.17rem;
}

.intro-copy p { margin-bottom: 24px; }
.intro-copy p:last-child { margin-bottom: 0; }

.fact-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.fact-row article {
  min-height: 185px;
  padding: 32px 34px;
  border-right: 1px solid var(--line);
}

.fact-row article:last-child { border-right: 0; }

.fact-row strong {
  display: block;
  margin-bottom: 22px;
  color: var(--red-dark);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.05;
}

.fact-row span { color: var(--muted); }

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

.statement-grid article {
  min-height: 360px;
  padding: 44px 46px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.statement-grid h2 {
  margin-bottom: 70px;
  font-size: 2.3rem;
}

.statement-grid p {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.values-matrix,
.sector-matrix,
.publication-matrix {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.values-matrix article,
.sector-matrix article,
.publication-matrix article {
  min-height: 230px;
  padding: 36px 38px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.values-matrix h3,
.sector-matrix h2,
.publication-matrix h2 {
  margin-bottom: 22px;
  font-size: 1.55rem;
}

.values-matrix p,
.sector-matrix p,
.publication-matrix p {
  max-width: 510px;
  margin: 0;
  color: var(--muted);
}

/* Services */

.services-list { border-top: 1px solid var(--ink); }

.service-row {
  min-height: 210px;
  padding-block: 34px 42px;
  display: grid;
  grid-template-columns: 72px minmax(260px, 0.72fr) minmax(300px, 1fr);
  gap: 38px;
  align-items: start;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 110px;
  transition: background-color 220ms ease;
}

.service-row:hover { background: var(--red-wash); }

.service-index {
  color: var(--red-dark);
  font-size: 1.05rem;
  font-weight: 650;
  font-variant-numeric: tabular-nums;
}

.service-row h2 { font-size: 1.8rem; }

.service-row p {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.engagement-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.engagement-grid article {
  min-height: 270px;
  padding: 36px;
  background: white;
}

.engagement-grid h3 {
  margin-bottom: 52px;
  font-size: 1.6rem;
}

.engagement-grid p {
  margin: 0;
  color: var(--muted);
}

/* Projects */

.project-browser { padding-block: 80px 150px; }

.project-tools {
  position: sticky;
  top: 82px;
  z-index: 10;
  padding-block: 18px;
  display: grid;
  grid-template-columns: minmax(240px, 0.4fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.project-search input {
  width: 100%;
  min-height: 48px;
  padding: 11px 14px;
  border: 1px solid var(--line-dark);
  border-radius: 4px;
  color: var(--ink);
  background: white;
}

.filter-bar {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.filter-button {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink-soft);
  background: white;
  font-size: 0.86rem;
  font-weight: 560;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.filter-button:hover,
.filter-button.active {
  color: white;
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.project-count {
  min-height: 32px;
  padding-block: 22px 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.project-grid { border-top: 1px solid var(--ink); }

.project-card {
  padding-block: 30px 34px;
  display: grid;
  grid-template-columns: 84px minmax(180px, 0.42fr) minmax(0, 1fr) auto;
  gap: 28px;
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.project-card:hover { background: var(--soft); }

.project-year {
  color: var(--red-dark);
  font-size: 1.15rem;
  font-weight: 650;
  font-variant-numeric: tabular-nums;
}

.project-client {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 550;
}

.project-summary h2 {
  margin-bottom: 10px;
  font-size: 1.45rem;
  line-height: 1.13;
}

.project-summary > p {
  margin: 0;
  color: var(--muted);
}

.project-card button {
  padding: 4px 0 6px;
  border: 0;
  color: var(--red-dark);
  background: transparent;
  font-weight: 650;
  white-space: nowrap;
}

.project-detail {
  display: none;
  grid-column: 3 / -1;
  max-width: 760px;
  padding-top: 4px;
}

.project-detail p {
  margin: 0;
  color: var(--ink-soft);
}

.project-card.is-open .project-detail { display: block; }

.project-empty {
  grid-template-columns: 1fr;
  min-height: 180px;
}

/* Publications */

.publication-status {
  padding: 54px 58px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 54px;
  align-items: center;
  color: white;
  background: var(--red-dark);
}

.publication-status h2 {
  margin-bottom: 18px;
  color: white;
  font-size: 2.55rem;
}

.publication-status p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.publication-status .button-light {
  color: var(--ink);
  border-color: white;
}

.publication-matrix article { min-height: 260px; }

/* Team */

.team-lead {
  display: grid;
  grid-template-columns: minmax(300px, 0.6fr) minmax(0, 1fr);
  gap: 92px;
  align-items: center;
}

.team-lead figure {
  margin: 0;
  overflow: hidden;
  background: var(--soft);
  border-radius: var(--radius);
}

.team-lead img {
  width: 100%;
  max-height: 650px;
  object-fit: cover;
  object-position: center 12%;
}

.team-lead h2 {
  margin-bottom: 20px;
  font-size: 3.25rem;
}

.team-lead p {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.08rem;
}

.team-directory {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.team-profile {
  overflow: hidden;
  background: white;
  border-bottom: 2px solid var(--line-dark);
}

.team-profile img {
  width: 100%;
  aspect-ratio: 1 / 1.1;
  object-fit: cover;
  object-position: center 12%;
  filter: grayscale(0.85);
  transition: filter 400ms ease, transform 600ms ease;
}

.team-profile:hover img {
  filter: grayscale(0);
  transform: scale(1.03);
}

.team-profile div { padding: 22px 18px 25px; }
.team-profile h3 { margin-bottom: 7px; font-size: 1.18rem; }
.team-profile p { margin: 0; color: var(--muted); font-size: 0.9rem; }

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

.discipline-list article {
  min-height: 220px;
  padding: 34px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.discipline-list h3 { margin-bottom: 22px; font-size: 1.4rem; }
.discipline-list p { margin: 0; color: var(--muted); }

/* Partners */

.partner-wall {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.partner-wall a,
.partner-wall > img {
  min-height: 160px;
  padding: 28px;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: white;
  transition: background-color 220ms ease;
}

.partner-wall a:hover { background: var(--red-wash); }

.partner-wall img {
  max-width: 145px;
  max-height: 72px;
  object-fit: contain;
  filter: grayscale(0.9);
  opacity: 0.82;
  transition: filter 220ms ease, opacity 220ms ease;
}

.partner-wall a:hover img {
  filter: grayscale(0);
  opacity: 1;
}

/* Contact */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.6fr) minmax(0, 1fr);
  gap: 96px;
  align-items: start;
}

.contact-details h2 {
  margin-bottom: 28px;
  font-size: 2.7rem;
}

.contact-details > p {
  max-width: 470px;
  color: var(--muted);
}

.contact-links {
  margin-top: 38px;
  display: grid;
  border-top: 1px solid var(--ink);
}

.contact-links a,
.contact-links span {
  padding-block: 17px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}

.contact-links a {
  color: var(--red-dark);
  font-weight: 600;
}

.contact-form {
  padding: 42px 44px 46px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  background: var(--soft);
  border-top: 4px solid var(--red);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 600;
}

.contact-form label:nth-of-type(5),
.contact-form label:nth-of-type(6),
.contact-form .form-note,
.contact-form .form-status,
.contact-form button { grid-column: 1 / -1; }

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line-dark);
  border-radius: 3px;
  color: var(--ink);
  background: white;
}

.contact-form input,
.contact-form select {
  min-height: 49px;
  padding: 10px 12px;
}

.contact-form textarea {
  min-height: 150px;
  padding: 12px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--red);
}

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

.form-note,
.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.form-status:not(:empty) {
  padding: 11px 13px;
  color: var(--red-dark);
  background: var(--red-wash);
  border-left: 3px solid var(--red);
}

/* Footer */

.site-footer {
  color: rgba(255, 255, 255, 0.76);
  background: var(--ink);
}

.footer-main {
  padding-block: 72px 62px;
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) repeat(3, minmax(150px, 0.55fr));
  gap: 64px;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 20px;
  color: white;
  font-size: 1.12rem;
  font-weight: 700;
}

.footer-intro p {
  max-width: 360px;
  margin-bottom: 10px;
}

.footer-main section h2 {
  margin-bottom: 20px;
  color: white;
  font-size: 0.94rem;
  font-weight: 650;
}

.footer-main section:not(.footer-intro) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.footer-main section a {
  color: rgba(255, 255, 255, 0.72);
  transition: color 180ms ease;
}

.footer-main section a:hover { color: white; }

.footer-bottom {
  min-height: 74px;
  padding-block: 18px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.83rem;
}

/* Responsive */

@media (max-width: 1180px) {
  .nav-shell,
  .wide-shell { width: min(calc(100% - 48px), var(--max)); }
  .desktop-nav { gap: 20px; }
  .nav-phone { display: none; }
  .home-hero h1 { font-size: 4.7rem; }
  .section-heading h2 { font-size: 3.05rem; }
  .expert-strip { grid-template-columns: repeat(5, 220px); overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 10px; }
  .person-card { scroll-snap-align: start; }
  .method-layout { gap: 70px; }
  .method-intro h2 { font-size: 3.25rem; }
  .subpage-hero h1 { font-size: 4.2rem; }
  .team-directory { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .partner-wall { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 960px) {
  html { scroll-padding-top: 76px; }
  .site-header { height: 72px; }
  .nav-shell { grid-template-columns: minmax(0, 1fr) auto; }
  .brand { width: 154px; height: 52px; }
  .brand img { width: 150px; height: 50px; }
  .desktop-nav,
  .nav-actions { display: none; }
  .menu-toggle {
    width: 44px;
    height: 44px;
    padding: 10px;
    display: grid;
    align-content: center;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: white;
  }
  .menu-toggle > span:not(.sr-only) {
    width: 21px;
    height: 2px;
    display: block;
    margin-inline: auto;
    background: var(--ink);
    transition: transform 220ms ease, opacity 220ms ease;
  }
  .menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-nav {
    position: fixed;
    z-index: 29;
    top: 72px;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 20px 24px 38px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    background: white;
  }
  .mobile-nav[hidden] { display: none; }
  .mobile-nav a {
    padding-block: 15px;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-size: 1.25rem;
    font-weight: 620;
  }
  .mobile-nav a.active { color: var(--red-dark); }
  .mobile-nav .mobile-contact {
    margin-top: 20px;
    padding: 14px 18px;
    text-align: center;
    color: white;
    background: var(--red);
    border: 0;
    border-radius: 4px;
  }
  .home-hero { min-height: 620px; }
  .hero-content { padding-block: 66px 76px; }
  .home-hero h1 { font-size: 3.9rem; }
  .hero-lead { font-size: 1.1rem; }
  .trust-shell { min-height: 142px; grid-template-columns: 1fr; gap: 16px; padding-block: 25px; }
  .trust-shell > p { text-align: center; }
  .section-heading,
  .subpage-hero .wide-shell,
  .intro-grid,
  .knowledge-layout,
  .contact-layout,
  .team-lead { grid-template-columns: 1fr; }
  .section-heading { gap: 24px; }
  .section-heading p { margin: 0; }
  .expertise-cell,
  .expertise-cell:nth-child(-n + 2) { grid-column: span 6; }
  .method-layout { grid-template-columns: 1fr; gap: 56px; }
  .method-intro { position: static !important; }
  .process-path { grid-template-columns: 1fr; }
  .process-step { min-height: auto; border-right: 0; border-bottom: 1px solid rgba(142, 16, 30, 0.25); }
  .process-step:last-child { border-bottom: 0; }
  .process-step > span { margin-bottom: 30px; }
  .case-feature { position: relative; top: auto !important; grid-template-columns: 1fr; min-height: auto; gap: 48px; }
  .knowledge-layout { gap: 44px; }
  .cta-layout { grid-template-columns: 1fr; align-items: start; }
  .subpage-hero { padding-block: 96px 104px; }
  .subpage-hero .wide-shell { gap: 30px; }
  .subpage-hero h1 { font-size: 3.65rem; }
  .project-tools { top: 72px; grid-template-columns: 1fr; }
  .project-card { grid-template-columns: 72px minmax(0, 0.42fr) minmax(0, 1fr); }
  .project-card button { grid-column: 3; justify-self: start; }
  .project-detail { grid-column: 3; }
  .discipline-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .partner-wall { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .contact-layout { gap: 64px; }
  .footer-main { grid-template-columns: 1.2fr repeat(2, 0.7fr); }
  .footer-intro { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .wide-shell,
  .nav-shell { width: min(calc(100% - 32px), var(--max)); }
  .home-hero { min-height: 590px; }
  .hero-content { width: min(calc(100% - 32px), 1160px); padding-block: 56px 64px; }
  .home-hero h1 { font-size: 3.15rem; line-height: 1; }
  .hero-lead { margin-top: 24px; font-size: 1.02rem; }
  .hero-actions { margin-top: 28px; }
  .hero-actions .button { flex: 1 1 100%; }
  .people-showcase,
  .expertise-section,
  .method-section,
  .process-section,
  .work-section,
  .knowledge-band,
  .content-section { padding-block: 90px 104px; }
  .home-cta,
  .page-cta { padding-block: 82px 94px; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2,
  .method-intro h2,
  .intro-grid h2 { font-size: 2.55rem; }
  .expert-strip { grid-template-columns: repeat(5, 79vw); }
  .expertise-matrix { grid-template-columns: 1fr; }
  .expertise-cell,
  .expertise-cell:nth-child(-n + 2) { grid-column: auto; min-height: 225px; }
  .method-item { grid-template-columns: 38px minmax(0, 1fr); gap: 18px; }
  .case-feature { padding: 36px 28px; }
  .case-copy h3 { font-size: 2rem; }
  .knowledge-layout h2 { font-size: 3rem; }
  .cta-layout h2 { font-size: 2.6rem; }
  .subpage-hero { padding-block: 78px 86px; }
  .subpage-hero h1 { font-size: 3rem; }
  .fact-row,
  .statement-grid,
  .values-matrix,
  .sector-matrix,
  .publication-matrix,
  .engagement-grid { grid-template-columns: 1fr; }
  .fact-row article,
  .statement-grid article,
  .values-matrix article,
  .sector-matrix article,
  .publication-matrix article { border-right: 0; }
  .statement-grid article { min-height: auto; }
  .statement-grid h2 { margin-bottom: 36px; }
  .service-row { grid-template-columns: 52px minmax(0, 1fr); gap: 22px; }
  .service-row p { grid-column: 2; }
  .project-browser { padding-block: 54px 100px; }
  .project-tools { margin-inline: -16px; padding-inline: 16px; }
  .project-card { grid-template-columns: 58px minmax(0, 1fr); gap: 20px; }
  .project-client { grid-column: 2; }
  .project-summary { grid-column: 2; }
  .project-card button { grid-column: 2; }
  .project-detail { grid-column: 2; }
  .publication-status { padding: 40px 28px; grid-template-columns: 1fr; }
  .team-lead { gap: 48px; }
  .team-lead h2 { font-size: 2.6rem; }
  .team-directory { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .discipline-list { grid-template-columns: 1fr; }
  .partner-wall { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-form { padding: 34px 24px 38px; grid-template-columns: 1fr; }
  .contact-form label,
  .contact-form label:nth-of-type(5),
  .contact-form label:nth-of-type(6),
  .contact-form .form-note,
  .contact-form .form-status,
  .contact-form button { grid-column: 1; }
  .footer-main { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 42px 30px; }
  .footer-intro { grid-column: 1 / -1; }
  .footer-bottom { display: grid; justify-content: start; }
}

@media (max-width: 460px) {
  .home-hero h1 { font-size: 2.2rem; }
  .kicker { font-size: 0.84rem; }
  .logo-track { gap: 42px; }
  .section-heading h2,
  .method-intro h2,
  .intro-grid h2 { font-size: 2.25rem; }
  .subpage-hero h1 { font-size: 2.55rem; }
  .knowledge-layout h2 { font-size: 2.6rem; }
  .cta-layout h2 { font-size: 2.25rem; }
  .team-directory { grid-template-columns: 1fr; }
  .partner-wall { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-intro { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .logo-track { animation: none; flex-wrap: wrap; width: auto; }
}
