:root {
  --paper: #f3f1ed;
  --paper-deep: #e7e4de;
  --paper-cool: #dfe2e1;
  --white: #fff;
  --ink: #171b1d;
  --ink-soft: #353b3e;
  --muted: #687075;
  --brand: #7b868c;
  --brand-deep: #5e696f;
  --line: rgba(23, 27, 29, 0.18);
  --line-light: rgba(255, 255, 255, 0.22);
  --display: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  --body: Arial, Helvetica, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 92px;
}

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

html {
  background: var(--paper);
  color: var(--ink);
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

.admin-bar .site-header {
  top: 32px;
}

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

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

button {
  color: inherit;
}

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

figure,
h1,
h2,
h3,
p,
ul {
  margin: 0;
}

ul {
  padding: 0;
}

::selection {
  background: var(--brand);
  color: var(--white);
}

:focus-visible {
  outline: 2px solid var(--brand-deep);
  outline-offset: 5px;
}

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

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

.site-shell {
  width: min(calc(100% - 80px), 1440px);
  margin-inline: auto;
}

.section-space {
  padding-block: clamp(112px, 10vw, 176px);
}

.eyebrow {
  color: var(--brand-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.68);
}

.section-index {
  margin-top: 26px;
  color: var(--brand);
  font-family: var(--display);
  font-size: 32px;
  line-height: 1;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

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

h3 {
  font-size: 31px;
  line-height: 1.03;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  border: 1px solid transparent;
  padding: 0 19px 0 22px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1;
  text-transform: uppercase;
  transition:
    color 220ms var(--ease-standard),
    background-color 220ms var(--ease-standard),
    border-color 220ms var(--ease-standard),
    transform 220ms var(--ease-out);
}

.button span {
  font-size: 19px;
  font-weight: 400;
  transition: transform 220ms var(--ease-out);
}

.icon-arrow {
  display: inline-flex;
  width: 1.15em;
  height: 1.15em;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  font-size: inherit;
  line-height: 1;
}

.icon-arrow svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.25;
  vector-effect: non-scaling-stroke;
}

.icon-arrow path {
  vector-effect: non-scaling-stroke;
}

.button:hover span,
.button:focus-visible span {
  transform: translate(3px, -3px);
}

.button:active {
  transform: translateY(1px);
}

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

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

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

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

.button-outline {
  border-color: var(--ink);
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 7px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.text-link span {
  font-size: 18px;
  font-weight: 400;
  transition: transform 220ms var(--ease-out);
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(4px);
}

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

.image-frame {
  position: relative;
  overflow: hidden;
  background: var(--paper-deep);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease-out);
}

@media (hover: hover) {
  .image-frame:hover img {
    transform: scale(1.018);
  }
}

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition:
    background-color 280ms var(--ease-standard),
    border-color 280ms var(--ease-standard),
    box-shadow 280ms var(--ease-standard);
}

.site-header[data-home="false"],
.site-header[data-scrolled="true"] {
  border-color: var(--line);
  background: rgba(243, 241, 237, 0.94);
  box-shadow: 0 8px 30px rgba(23, 27, 29, 0.035);
  backdrop-filter: blur(16px);
}

.header-inner {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: block;
  width: clamp(220px, 19vw, 270px);
  line-height: 0;
}

.brand img {
  width: 100%;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(27px, 2.8vw, 50px);
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

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

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-trigger {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-trigger span {
  display: block;
  width: 23px;
  height: 1px;
  margin: 0 auto;
  background: var(--ink);
  transition: transform 260ms var(--ease-out);
}

.menu-trigger span + span {
  margin-top: 7px;
}

.menu-trigger[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-trigger[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 1;
  inset: 0;
  display: flex;
  min-height: 100dvh;
  visibility: hidden;
  flex-direction: column;
  justify-content: space-between;
  transform: translateY(-10px);
  background-color: var(--ink);
  color: var(--white);
  opacity: 0;
  padding: calc(var(--header-height) + 55px) 24px 34px;
  pointer-events: none;
  transition:
    opacity 260ms var(--ease-standard),
    transform 340ms var(--ease-out),
    visibility 0s linear 340ms;
}

.mobile-menu[data-open="true"] {
  visibility: visible;
  transform: none;
  opacity: 1;
  pointer-events: auto;
  transition:
    opacity 260ms var(--ease-standard),
    transform 340ms var(--ease-out),
    visibility 0s;
}

.mobile-menu nav {
  display: grid;
}

.mobile-menu nav a {
  display: flex;
  align-items: baseline;
  gap: 20px;
  border-bottom: 1px solid var(--line-light);
  padding: 9px 0 12px;
  font-family: var(--display);
  font-size: clamp(42px, 12vw, 62px);
  letter-spacing: -0.02em;
  line-height: 1;
}

.mobile-menu nav a span {
  color: rgba(255, 255, 255, 0.46);
  font-family: var(--body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.mobile-menu-contact {
  display: grid;
  gap: 3px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

/* Homepage */
.home-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #e9e5de;
}

.home-hero-media,
.home-hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-hero-media img {
  object-fit: cover;
}

.home-hero-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(243, 241, 237, 0.98) 0%,
      rgba(243, 241, 237, 0.93) 28%,
      rgba(243, 241, 237, 0.55) 49%,
      rgba(243, 241, 237, 0.06) 72%,
      transparent 100%
    ),
    linear-gradient(0deg, rgba(23, 27, 29, 0.1), transparent 35%);
}

.home-hero-content {
  position: relative;
  z-index: 1;
  padding-top: clamp(184px, 22vh, 255px);
}

.home-hero-content h1 {
  max-width: 890px;
  margin-top: 24px;
  font-size: clamp(70px, 7.4vw, 116px);
  line-height: 0.87;
}

.home-hero-intro {
  max-width: 580px;
  margin-top: 40px;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 44px;
}

.hero-footnote {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 28px;
  left: 0;
  display: flex;
  justify-content: space-between;
  color: rgba(23, 27, 29, 0.62);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.intro-grid > :first-child {
  grid-column: 1 / 4;
}

.intro-statement {
  grid-column: 4 / 13;
}

.intro-statement h2 {
  max-width: 1050px;
}

.intro-copy {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 24px;
  align-items: end;
  margin-top: 58px;
}

.intro-copy p {
  grid-column: 3 / 8;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.75;
}

.intro-copy .text-link {
  grid-column: 8 / 10;
  justify-self: end;
}

.architecture-feature {
  padding-bottom: 115px;
}

.architecture-grid {
  position: relative;
}

.image-frame-wide {
  width: 87%;
  aspect-ratio: 1.55;
}

.architecture-note {
  position: absolute;
  right: 0;
  bottom: -72px;
  width: min(37%, 520px);
  background: var(--paper);
  padding: 46px 48px 50px;
}

.architecture-note > p:last-child {
  margin-top: 30px;
  font-family: var(--display);
  font-size: clamp(30px, 2.8vw, 43px);
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.principles {
  background: var(--ink);
  color: var(--white);
}

.section-heading {
  max-width: 950px;
}

.section-heading h2 {
  margin-top: 24px;
}

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

.section-heading-split {
  display: grid;
  max-width: none;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: end;
}

.section-heading-split > div {
  grid-column: 1 / 8;
}

.section-heading-split > p {
  grid-column: 9 / 13;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 86px;
  border-top: 1px solid var(--line-light);
}

.principle-grid article {
  min-height: 330px;
  border-right: 1px solid var(--line-light);
  padding: 30px 44px 20px 0;
}

.principle-grid article + article {
  padding-left: 44px;
}

.principle-grid article:last-child {
  border-right: 0;
}

.principle-grid span,
.value-list span {
  color: var(--brand);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.principle-grid h3 {
  margin-top: 80px;
  color: var(--white);
}

.principle-grid p {
  max-width: 380px;
  margin-top: 25px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
  line-height: 1.75;
}

.practice-list {
  margin-top: 90px;
  border-bottom: 1px solid var(--line);
}

.practice-row {
  display: grid;
  min-height: 110px;
  grid-template-columns: 80px minmax(0, 1fr) 40px;
  align-items: center;
  border-top: 1px solid var(--line);
  transition:
    background-color 250ms var(--ease-standard),
    padding 320ms var(--ease-out);
}

.practice-row > span:first-child {
  color: var(--brand-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.practice-row h3 {
  font-size: clamp(31px, 3vw, 47px);
}

.practice-row i,
.practice-row > .icon-arrow {
  justify-self: end;
  width: 23px;
  height: 23px;
  font-size: 23px;
  font-style: normal;
  transition: transform 260ms var(--ease-out);
}

.practice-row > .icon-arrow,
.closing-card > .icon-arrow,
.contact-link-stack .icon-arrow,
.footer-action .icon-arrow {
  justify-self: end;
}

.practice-row:hover,
.practice-row:focus-visible {
  background: rgba(123, 134, 140, 0.08);
  padding-inline: 14px;
}

.practice-row:hover i,
.practice-row:focus-visible i,
.practice-row:hover > .icon-arrow,
.practice-row:focus-visible > .icon-arrow {
  transform: translate(4px, -4px);
}

.section-tail {
  display: flex;
  justify-content: flex-end;
  margin-top: 46px;
}

.team-preview {
  background: var(--paper-cool);
  padding-block: clamp(88px, 8vw, 140px);
}

.team-preview-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
}

.portrait-frame {
  grid-column: 1 / 7;
  width: 82%;
  aspect-ratio: 4 / 5;
}

.portrait-frame figcaption {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.team-preview-content {
  grid-column: 7 / 13;
  padding-left: clamp(15px, 4vw, 75px);
}

.team-preview-content h2 {
  margin-top: 24px;
}

.team-preview-content > p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 38px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.75;
}

.team-preview-content .button {
  margin-top: 42px;
}

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

.closing-card {
  position: relative;
  display: flex;
  min-height: 510px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: clamp(60px, 7vw, 110px);
}

.closing-card::before {
  position: absolute;
  inset: 0;
  transform: scaleY(0);
  transform-origin: bottom;
  background: rgba(255, 255, 255, 0.09);
  content: "";
  transition: transform 500ms var(--ease-out);
}

.closing-card:hover::before,
.closing-card:focus-visible::before {
  transform: scaleY(1);
}

.closing-card h2 {
  position: relative;
  max-width: 630px;
  font-size: clamp(48px, 4.8vw, 76px);
}

.closing-card i,
.closing-card > .icon-arrow {
  position: absolute;
  top: clamp(60px, 7vw, 110px);
  right: clamp(60px, 7vw, 110px);
  width: 28px;
  height: 28px;
  font-size: 28px;
  font-style: normal;
  transition: transform 280ms var(--ease-out);
}

.closing-card:hover i,
.closing-card:hover > .icon-arrow {
  transform: translate(5px, -5px);
}

.closing-card-light {
  background: var(--paper-deep);
}

.closing-card-brand {
  background: var(--brand-deep);
  color: var(--white);
}

/* Subpages */
.page-hero {
  border-bottom: 1px solid var(--line);
  padding: calc(var(--header-height) + clamp(90px, 9vw, 150px)) 0
    clamp(80px, 8vw, 130px);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: end;
}

.page-hero-heading {
  grid-column: 1 / 9;
}

.page-hero-heading h1 {
  max-width: 1050px;
  margin-top: 26px;
  font-size: clamp(68px, 7.2vw, 112px);
  line-height: 0.88;
}

.page-hero-copy {
  position: relative;
  grid-column: 9 / 13;
  padding-bottom: 5px;
}

.page-hero-copy p {
  position: relative;
  z-index: 1;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.75;
}

.page-hero-copy > span {
  position: absolute;
  right: 0;
  bottom: -55px;
  color: rgba(123, 134, 140, 0.18);
  font-family: var(--display);
  font-size: 180px;
  line-height: 1;
}

.editorial-image,
.career-image {
  padding-top: clamp(60px, 6vw, 100px);
}

.image-frame-cinematic {
  aspect-ratio: 2.05;
}

.content-grid,
.organisation-grid,
.contact-band-inner,
.career-image-grid,
.vacancy-grid,
.contact-page-grid,
.contact-note-grid,
.legal-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
}

.content-grid > div:first-child {
  grid-column: 1 / 4;
}

.prose-large {
  grid-column: 4 / 12;
}

.prose-large h2 {
  max-width: 930px;
}

.prose-large p {
  max-width: 770px;
  margin-top: 38px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.78;
}

.fact-band {
  border-block: 1px solid var(--line);
  background: var(--paper-deep);
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fact-grid > div {
  display: flex;
  min-height: 240px;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
  padding: 42px;
}

.fact-grid > div:first-child {
  padding-left: 0;
}

.fact-grid > div:last-child {
  border-right: 0;
}

.fact-grid strong {
  font-family: var(--display);
  font-size: clamp(65px, 6vw, 95px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.9;
}

.fact-grid span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.value-list article {
  min-height: 270px;
  border-right: 1px solid var(--line);
  padding: 28px 38px 20px 0;
}

.value-list article + article {
  padding-left: 38px;
}

.value-list article:last-child {
  border-right: 0;
}

.value-list h3 {
  margin-top: 60px;
}

.value-list p {
  margin-top: 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.contact-band {
  background: var(--brand-deep);
  color: var(--white);
  padding-block: clamp(90px, 9vw, 140px);
}

.contact-band-inner {
  align-items: end;
}

.contact-band-inner .eyebrow {
  grid-column: 1 / 4;
  align-self: start;
}

.contact-band-inner h2 {
  grid-column: 4 / 11;
}

.contact-band-inner .text-link {
  grid-column: 11 / 13;
  justify-self: end;
}

/* Practices */
.practice-overview {
  border-bottom: 1px solid var(--line);
  padding-block: 70px;
}

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

.practice-overview a {
  position: relative;
  display: flex;
  min-height: 150px;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px;
  transition:
    color 220ms var(--ease-standard),
    background-color 220ms var(--ease-standard);
}

.practice-overview a:hover {
  background: var(--ink);
  color: var(--white);
}

.practice-overview a span {
  color: var(--brand);
  font-size: 10px;
  font-weight: 700;
}

.practice-overview a strong {
  max-width: 240px;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.05;
}

.practice-overview a i,
.practice-overview a > .icon-arrow {
  position: absolute;
  top: 20px;
  right: 22px;
  font-style: normal;
}

.practice-details {
  padding-bottom: clamp(80px, 8vw, 140px);
}

.practice-detail {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  scroll-margin-top: calc(var(--header-height) + 30px);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(80px, 8vw, 130px);
}

.practice-detail-number {
  grid-column: 1 / 4;
}

.practice-detail-number span {
  color: var(--brand);
  font-family: var(--display);
  font-size: clamp(52px, 5vw, 80px);
}

.practice-detail-content {
  grid-column: 4 / 12;
}

.practice-detail-content > p {
  max-width: 760px;
  margin-top: 35px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.75;
}

.practice-detail-content ul {
  display: grid;
  max-width: 850px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 44px;
  margin-top: 50px;
  border-top: 1px solid var(--line);
  list-style: none;
}

.practice-detail-content li {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.practice-detail-content .text-link {
  margin-top: 42px;
}

/* Team */
.team-grid-section {
  padding-block: clamp(80px, 8vw, 130px);
}

.team-grid-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 55px;
}

.team-grid-heading > p:last-child {
  max-width: 430px;
  color: var(--muted);
  font-size: 13px;
}

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

.person-card {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.person-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #d8d9d6;
}

.person-image img {
  width: 100%;
  height: 100%;
  filter: saturate(0.78) contrast(0.98);
  object-fit: cover;
  transition:
    filter 420ms var(--ease-standard),
    transform 800ms var(--ease-out);
}

.person-card:hover .person-image img {
  filter: saturate(0.95);
  transform: scale(1.016);
}

.person-card-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 8px 0 0 28px;
}

.person-card-copy > p {
  color: var(--brand-deep);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.person-card-copy h2 {
  margin-top: 22px;
  font-size: clamp(35px, 3.1vw, 49px);
}

.person-card-copy > span {
  margin-top: 18px;
  color: var(--muted);
  font-size: 12px;
}

.person-card-copy ul {
  display: grid;
  gap: 7px;
  margin-top: 30px;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.45;
  list-style: none;
}

.person-card-copy li::before {
  margin-right: 8px;
  color: var(--brand);
  content: "—";
}

.person-card-copy .text-link {
  margin-top: auto;
  padding-top: 32px;
}

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

.organisation-grid {
  align-items: end;
}

.organisation-grid > div:first-child {
  grid-column: 1 / 8;
}

.organisation-grid h2 {
  margin-top: 24px;
}

.organisation-grid > div:last-child {
  grid-column: 9 / 13;
  color: var(--ink-soft);
  font-size: 17px;
}

.organisation-list {
  display: grid;
  gap: 0;
  margin-top: 36px;
  border-top: 1px solid var(--line);
  list-style: none;
}

.organisation-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  padding: 15px 0;
}

.organisation-list strong {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
}

.organisation-list span {
  color: var(--muted);
  font-size: 12px;
}

/* Career */
.career-image-grid {
  align-items: end;
}

.career-image-grid figure {
  grid-column: 1 / 10;
  aspect-ratio: 1.65;
}

.career-quote {
  grid-column: 9 / 13;
  z-index: 1;
  margin-bottom: 46px;
  background: var(--paper);
  padding: 42px 0 42px 48px;
}

.career-quote p {
  font-family: var(--display);
  font-size: clamp(31px, 3vw, 46px);
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.vacancy-section {
  background: var(--ink);
  color: var(--white);
  padding-block: clamp(90px, 9vw, 145px);
}

.vacancy-grid > div:first-child {
  grid-column: 1 / 8;
}

.vacancy-grid h2 {
  margin-top: 25px;
}

.vacancy-grid > div:last-child {
  grid-column: 9 / 13;
  color: rgba(255, 255, 255, 0.66);
}

.vacancy-grid .button {
  margin-top: 38px;
}

.vacancy-list {
  border-top: 1px solid var(--line-light);
}

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

.vacancy-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  color: var(--white);
  cursor: pointer;
  font-family: var(--display);
  font-size: 31px;
  list-style: none;
}

.vacancy-list summary::-webkit-details-marker {
  display: none;
}

.vacancy-list details[open] summary .icon-arrow {
  transform: rotate(180deg);
}

.vacancy-copy {
  padding: 0 0 34px;
}

.vacancy-copy p,
.vacancy-copy li {
  color: rgba(255, 255, 255, 0.66);
}

.vacancy-copy ul {
  margin: 20px 0;
  padding-left: 20px;
}

.vacancy-copy .button {
  margin-top: 28px;
}

.vacancy-meta {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.48) !important;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Contact */
.contact-page-grid {
  align-items: stretch;
}

.contact-details {
  display: flex;
  grid-column: 1 / 7;
  flex-direction: column;
  justify-content: space-between;
  padding-right: 45px;
}

.contact-details h2 {
  margin-top: 25px;
}

.contact-link-stack {
  margin-top: 70px;
  border-bottom: 1px solid var(--line);
}

.contact-link-stack a {
  display: grid;
  grid-template-columns: 110px 1fr 25px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 19px 0;
  transition: padding 240ms var(--ease-out);
}

.contact-link-stack a:hover {
  padding-inline: 10px;
}

.contact-link-stack a > span:first-child {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-link-stack strong {
  font-family: var(--display);
  font-size: clamp(24px, 2.3vw, 34px);
  font-weight: 400;
}

.contact-link-stack i,
.contact-link-stack .icon-arrow {
  justify-self: end;
  width: 20px;
  height: 20px;
  font-style: normal;
}

.contact-image {
  grid-column: 7 / 13;
  min-height: 680px;
}

.contact-note {
  border-top: 1px solid var(--line);
  padding-block: 80px;
}

.contact-note-grid > p {
  grid-column: 1 / 4;
}

.contact-note-grid > div {
  grid-column: 4 / 10;
}

.contact-note-grid h2 {
  font-size: clamp(40px, 4vw, 62px);
}

.contact-note-grid div p {
  margin-top: 25px;
  color: var(--muted);
}

/* Legal */
.legal-grid > .eyebrow {
  grid-column: 1 / 4;
}

.legal-prose {
  grid-column: 4 / 10;
}

.legal-prose h2 {
  font-size: clamp(42px, 4.5vw, 68px);
}

.legal-prose p {
  margin-top: 30px;
  color: var(--ink-soft);
  line-height: 1.8;
}

.legal-prose h3,
.legal-prose h4 {
  margin-top: 48px;
}

.legal-prose h3 {
  font-size: clamp(32px, 3vw, 45px);
}

.legal-prose h4 {
  font-size: 27px;
}

.legal-prose ul,
.legal-prose ol {
  margin-top: 24px;
  padding-left: 1.25rem;
}

.legal-prose li + li {
  margin-top: 8px;
}

.legal-prose table {
  width: 100%;
  margin-top: 32px;
  border-collapse: collapse;
}

.legal-prose th,
.legal-prose td {
  border-bottom: 1px solid var(--line);
  padding: 12px 10px;
  text-align: left;
  vertical-align: top;
}

.legal-prose a {
  color: var(--brand-deep);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.legal-prose .wp-block-file {
  margin-top: 32px;
}

.legal-document {
  margin-top: 42px;
}

.legal-prose .legal-document .button {
  color: var(--surface);
  text-decoration: none;
}

.legal-prose .legal-admin-note {
  border-left: 2px solid var(--brand);
  padding-left: 20px;
  color: var(--muted);
  font-size: 14px;
}

.legal-prose .legal-note {
  border-left: 2px solid var(--brand);
  color: var(--muted);
  padding-left: 20px;
  font-size: 13px;
}

.not-found {
  min-height: 80svh;
  padding: calc(var(--header-height) + 150px) 0 120px;
}

.not-found h1 {
  max-width: 950px;
  margin-top: 30px;
  font-size: clamp(70px, 9vw, 140px);
  line-height: 0.86;
}

.not-found .button {
  margin-top: 50px;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: var(--white);
}

.footer-primary {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  border-bottom: 1px solid var(--line-light);
  padding-block: clamp(95px, 9vw, 145px);
}

.footer-primary > div:first-child {
  grid-column: 1 / 8;
}

.footer-primary h2 {
  margin-top: 26px;
}

.footer-actions {
  grid-column: 9 / 13;
  align-self: end;
  border-bottom: 1px solid var(--line-light);
}

.footer-action {
  display: grid;
  grid-template-columns: 78px 1fr 24px;
  align-items: center;
  border-top: 1px solid var(--line-light);
  padding: 18px 0;
}

.footer-action > span:first-child {
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-action strong {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 400;
}

.footer-action i,
.footer-action .icon-arrow {
  justify-self: end;
  width: 20px;
  height: 20px;
  font-style: normal;
}

.footer-secondary {
  display: grid;
  min-height: 190px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
}

.footer-brand {
  grid-column: 1 / 4;
  width: min(100%, 270px);
}

.footer-brand img {
  filter: brightness(1.55);
}

.footer-address {
  grid-column: 5 / 7;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.footer-legal {
  display: flex;
  grid-column: 8 / 11;
  gap: 24px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-legal a,
.footer-copy {
  color: rgba(255, 255, 255, 0.62);
}

.footer-copy {
  grid-column: 11 / 13;
  justify-self: end;
  font-size: 10px;
}

/* Motion */
html.motion-ready .reveal {
  transform: translateY(20px);
  opacity: 0;
  transition:
    opacity 700ms var(--ease-standard),
    transform 850ms var(--ease-out);
}

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

@media (max-width: 1120px) {
  .site-shell {
    width: min(calc(100% - 56px), 1440px);
  }

  .desktop-nav {
    gap: 22px;
  }

  .architecture-note {
    width: 43%;
  }

  .person-card {
    grid-template-columns: 1fr;
  }

  .person-card-copy {
    min-height: 410px;
    padding: 26px 0 0;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 76px;
  }

  .site-shell {
    width: calc(100% - 36px);
  }

  .admin-bar .site-header {
    top: 46px;
  }

  .admin-bar .mobile-menu {
    top: 46px;
  }

  .section-space {
    padding-block: 88px;
  }

  h2 {
    font-size: clamp(43px, 13.2vw, 58px);
  }

  .eyebrow {
    font-size: 10px;
  }

  .brand {
    width: min(62vw, 225px);
  }

  .desktop-nav {
    display: none;
  }

  .menu-trigger {
    display: block;
  }

  .home-hero {
    display: flex;
    min-height: auto;
    flex-direction: column;
    overflow: visible;
  }

  .home-hero-media {
    position: relative;
    order: 2;
    height: max(390px, 48svh);
  }

  .home-hero-wash {
    display: none;
  }

  .home-hero-content {
    order: 1;
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 54px;
  }

  .home-hero-content h1 {
    margin-top: 20px;
    font-size: clamp(53px, 15.5vw, 70px);
    line-height: 0.9;
  }

  .home-hero-intro {
    margin-top: 28px;
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-actions {
    flex-wrap: wrap;
    gap: 26px;
    margin-top: 34px;
  }

  .hero-footnote {
    position: relative;
    order: 3;
    width: 100%;
    padding: 18px;
    background: var(--ink);
    color: rgba(255, 255, 255, 0.62);
  }

  .intro-grid,
  .intro-copy,
  .section-heading-split,
  .team-preview-grid,
  .page-hero-grid,
  .content-grid,
  .contact-band-inner,
  .practice-detail,
  .organisation-grid,
  .career-image-grid,
  .vacancy-grid,
  .contact-page-grid,
  .contact-note-grid,
  .legal-grid,
  .footer-primary,
  .footer-secondary {
    display: block;
  }

  .intro-grid > :first-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .section-index {
    margin: 0;
  }

  .intro-statement {
    margin-top: 46px;
  }

  .intro-copy {
    margin-top: 36px;
  }

  .intro-copy p {
    font-size: 16px;
  }

  .intro-copy .text-link {
    margin-top: 30px;
  }

  .architecture-feature {
    padding-bottom: 0;
  }

  .image-frame-wide {
    width: 100%;
    aspect-ratio: 4 / 5;
  }

  .architecture-note {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 18px);
    margin: -36px 0 0 18px;
    padding: 36px 28px 42px;
  }

  .principles {
    margin-top: 74px;
  }

  .principle-grid,
  .value-list {
    display: block;
    margin-top: 55px;
  }

  .principle-grid article,
  .principle-grid article + article,
  .value-list article,
  .value-list article + article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
    padding: 24px 0 42px;
  }

  .value-list article,
  .value-list article + article {
    border-color: var(--line);
  }

  .principle-grid h3,
  .value-list h3 {
    margin-top: 36px;
  }

  .section-heading-split > p {
    margin-top: 30px;
    font-size: 16px;
  }

  .practice-list {
    margin-top: 58px;
  }

  .practice-row {
    min-height: 94px;
    grid-template-columns: 42px minmax(0, 1fr) 24px;
  }

  .practice-row h3 {
    padding-right: 12px;
    font-size: 28px;
  }

  .section-tail {
    justify-content: flex-start;
  }

  .team-preview {
    padding-block: 76px;
  }

  .portrait-frame {
    width: 100%;
  }

  .team-preview-content {
    margin-top: 54px;
    padding: 0;
  }

  .team-preview-content > p:not(.eyebrow) {
    font-size: 16px;
  }

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

  .closing-card {
    min-height: 390px;
    padding: 54px 24px;
  }

  .closing-card h2 {
    padding-top: 80px;
    font-size: 50px;
  }

  .closing-card i {
    top: 50px;
    right: 24px;
  }

  .page-hero {
    padding: calc(var(--header-height) + 75px) 0 74px;
  }

  .page-hero-heading h1 {
    margin-top: 22px;
    font-size: clamp(58px, 17vw, 78px);
  }

  .page-hero-copy {
    margin-top: 38px;
  }

  .page-hero-copy p {
    font-size: 16px;
  }

  .page-hero-copy > span {
    font-size: 100px;
  }

  .image-frame-cinematic {
    aspect-ratio: 4 / 5;
  }

  .prose-large {
    margin-top: 42px;
  }

  .prose-large p {
    font-size: 16px;
  }

  .fact-grid {
    display: block;
  }

  .fact-grid > div,
  .fact-grid > div:first-child {
    min-height: 190px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 34px 0;
  }

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

  .practice-overview a {
    min-height: 135px;
    padding: 18px;
  }

  .practice-overview a strong {
    font-size: 23px;
  }

  .practice-detail {
    padding-block: 76px;
  }

  .practice-detail-content {
    margin-top: 38px;
  }

  .practice-detail-content > p {
    font-size: 16px;
  }

  .practice-detail-content ul {
    grid-template-columns: 1fr;
    margin-top: 35px;
  }

  .team-grid-heading {
    display: block;
  }

  .team-grid-heading > p:last-child {
    margin-top: 22px;
  }

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

  .person-card {
    grid-template-columns: 1fr;
  }

  .person-card-copy {
    min-height: 0;
    padding: 25px 0 0;
  }

  .person-card-copy .text-link {
    margin-top: 35px;
    padding-top: 0;
  }

  .organisation-grid > div:last-child,
  .vacancy-grid > div:last-child {
    margin-top: 36px;
  }

  .organisation-list li {
    display: grid;
    gap: 2px;
  }

  .career-image-grid figure {
    aspect-ratio: 4 / 5;
  }

  .career-image-grid figure img {
    object-position: 69% center;
  }

  .career-quote {
    margin: -35px 0 0 18px;
    padding: 36px 0 0 28px;
  }

  .contact-details {
    padding: 0;
  }

  .contact-link-stack {
    margin-top: 55px;
  }

  .contact-link-stack a {
    grid-template-columns: 78px 1fr 20px;
  }

  .contact-link-stack strong {
    font-size: 25px;
  }

  .contact-image {
    min-height: 510px;
    margin-top: 70px;
  }

  .contact-note-grid > div,
  .legal-prose {
    margin-top: 36px;
  }

  .footer-primary {
    padding-block: 88px;
  }

  .footer-actions {
    margin-top: 55px;
  }

  .footer-action {
    grid-template-columns: 62px 1fr 20px;
  }

  .footer-action strong {
    font-size: 23px;
  }

  .footer-secondary {
    min-height: 0;
    padding-block: 55px;
  }

  .footer-brand {
    width: min(75%, 260px);
  }

  .footer-address {
    margin-top: 40px;
  }

  .footer-legal {
    margin-top: 28px;
  }

  .footer-copy {
    margin-top: 30px;
  }
}

@media (max-width: 390px) {
  .site-shell {
    width: calc(100% - 28px);
  }

  .home-hero-content h1 {
    font-size: 52px;
  }

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

  .footer-legal {
    flex-wrap: wrap;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  html.motion-ready .reveal,
  html.motion-ready .reveal.is-visible {
    transform: none;
    opacity: 1;
  }
}
  width: 18px;
  height: 18px;
