:root {
  --red: #df201b;
  --ink: #20201e;
  --muted: #73736d;
  --line: #dcdcd6;
  --paper: #f3f3ee;
  --gutter: clamp(24px, 5vw, 100px);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
  color: inherit;
}
button {
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.045em;
}
a,
button {
  touch-action: manipulation;
}
a:focus-visible,
summary:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 5px;
}
::selection {
  background: var(--red);
  color: white;
}
.section {
  padding: 100px var(--gutter);
}
.eyebrow {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.13em;
  font-weight: 500;
  line-height: 1.6;
}
.text-link {
  display: inline-flex;
  gap: 35px;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid currentColor;
  padding-block: 8px;
  font-size: 13px;
  line-height: 1.5;
}
.text-link span {
  font-size: 21px;
  font-weight: 300;
}
.text-link:hover {
  color: var(--red);
}
.skip {
  position: fixed;
  top: -100px;
  inset-inline-start: 20px;
  z-index: 100;
  background: #fff;
  padding: 16px;
}
.skip:focus {
  top: 10px;
}
.site-header {
  height: 100px;
  display: flex;
  align-items: center;
  padding: 0 var(--gutter);
  gap: 60px;
  border-bottom: 1px solid #eee;
  position: relative;
  z-index: 20;
  background: white;
}
.brand {
  flex: none;
}
.brand img {
  width: 64px;
  height: auto;
  object-fit: contain;
}
.main-nav {
  display: flex;
  gap: 30px;
  margin-inline: auto;
  align-items: center;
}
.main-nav a {
  font-size: 13px;
  position: relative;
  padding-block: 12px;
}
.main-nav a[aria-current],
.main-nav a:hover {
  color: var(--red);
}
.main-nav a[aria-current]:after {
  content: "";
  height: 3px;
  width: 16px;
  background: var(--red);
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
}
.header-tools {
  display: flex;
  align-items: center;
  gap: 25px;
}
.languages {
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 11px;
  white-space: nowrap;
}
.languages a {
  color: var(--muted);
}
.languages a[aria-current] {
  color: var(--red);
}
.mobile-menu {
  display: none;
}
.hero {
  height: calc(100svh - 100px);
  min-height: 550px;
  max-height: 1100px;
  position: relative;
  isolation: isolate;
  color: white;
  background: #3f5664;
  overflow: hidden;
}
.hero-photo,
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}
.hero-shade {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.15),
    transparent 34%,
    rgba(0, 0, 0, 0.6)
  );
}
.hero-topline {
  position: absolute;
  inset: 30px var(--gutter) auto;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.14em;
}
.hero-content {
  position: absolute;
  inset: auto var(--gutter) 62px;
}
.hero-content .eyebrow {
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(70px, 9.8vw, 174px);
  letter-spacing: -0.055em;
  line-height: 0.85;
  display: flex;
  align-items: baseline;
  gap: 24px;
  flex-wrap: wrap;
}
.hero h1 span {
  font-size: clamp(16px, 1.65vw, 28px);
  letter-spacing: -0.01em;
}
.hero-bottom {
  margin-top: 34px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 25px;
  font-size: 13px;
}
.hero-link {
  display: flex;
  gap: 50px;
  align-items: center;
  border-bottom: 1px solid #ffffff80;
  padding-bottom: 12px;
}
.hero-link span {
  font-size: 28px;
}
.hero-credit {
  position: absolute;
  inset-inline-end: var(--gutter);
  bottom: 15px;
  font-size: 9px;
  color: #fff;
  letter-spacing: 0.015em;
}
.feature-index {
  display: grid;
  grid-template-columns: 0.65fr 1.1fr 1.1fr 1.1fr;
  align-items: center;
  gap: 24px;
  padding: 25px var(--gutter);
  border-bottom: 1px solid var(--line);
}
.feature-index > a {
  border-inline-start: 1px solid var(--line);
  padding-inline-start: 23px;
  display: flex;
  gap: 16px;
  font-size: 12px;
  align-items: start;
}
.feature-index > a > span:first-child {
  font-size: 10px;
  color: var(--red);
  padding-top: 3px;
}
.feature-index > a > span:last-child {
  margin-inline-start: auto;
}
.feature-index small {
  display: block;
  font-size: 10px;
  color: var(--muted);
  margin-top: 4px;
}
.feature-index a:hover {
  color: var(--red);
}
.intro {
  padding-block: 110px 130px;
}
.intro > .eyebrow {
  display: flex;
  justify-content: space-between;
  margin-bottom: 65px;
}
.intro-body {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 10%;
}
.intro h2 {
  font-size: clamp(42px, 5.7vw, 98px);
  line-height: 0.99;
}
.intro-body > div {
  max-width: 560px;
}
.intro .lead {
  font-size: clamp(19px, 1.7vw, 28px);
  line-height: 1.45;
  margin-bottom: 25px;
  letter-spacing: -0.02em;
}
.intro-body > div > p:not(.lead) {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 25px;
  max-width: 470px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  align-items: end;
  margin-bottom: 50px;
}
.section-heading h2 {
  font-size: clamp(31px, 3.3vw, 55px);
  max-width: 700px;
}
.section-heading .eyebrow {
  margin-bottom: 22px;
}
.section-heading > p {
  max-width: 390px;
  color: var(--muted);
  font-size: 15px;
}
.section-heading > .text-link {
  flex: none;
}
.selected {
  padding-top: 0;
}
.selected-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 85px 40px;
}
.selected-grid .project-card:nth-child(6n + 1) {
  grid-column: 1/8;
}
.selected-grid .project-card:nth-child(6n + 2) {
  grid-column: 9/13;
  margin-top: 155px;
}
.selected-grid .project-card:nth-child(6n + 3) {
  grid-column: 1/6;
  margin-top: 25px;
}
.selected-grid .project-card:nth-child(6n + 4) {
  grid-column: 7/13;
  margin-top: 95px;
}
.selected-grid .project-card:nth-child(6n + 5) {
  grid-column: 1/8;
}
.selected-grid .project-card:nth-child(6n + 6) {
  grid-column: 9/13;
  margin-top: 120px;
}
.project-image {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  aspect-ratio: 1.5;
}
.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.2, 0.6, 0.3, 1);
}
.selected-grid .project-card:nth-child(6n + 2) .project-image,
.selected-grid .project-card:nth-child(6n + 6) .project-image {
  aspect-ratio: 0.95;
}
.project-card a:hover img {
  transform: scale(1.035);
}
.project-caption {
  display: flex;
  gap: 15px;
  padding-top: 18px;
}
.project-caption h3 {
  font-size: clamp(18px, 1.5vw, 25px);
  letter-spacing: -0.025em;
  line-height: 1.2;
}
.project-caption p {
  font-size: 11px;
  color: var(--muted);
  margin-top: 8px;
}
.card-index {
  color: var(--red);
  font-size: 10px;
  line-height: 2.1;
}
.card-year {
  margin-inline-start: auto;
  font-size: 10px;
  color: var(--muted);
  padding-top: 3px;
}
.image-action {
  position: absolute;
  inset-inline-end: 15px;
  bottom: 15px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: white;
  color: var(--ink);
  font-size: 22px;
  opacity: 0;
  transform: translateY(5px);
  transition: 0.2s;
}
.project-card a:hover .image-action,
.project-card a:focus-visible .image-action {
  opacity: 1;
  transform: none;
}
.image-label {
  position: absolute;
  bottom: 15px;
  inset-inline-start: 15px;
  background: #fff;
  padding: 4px 9px;
  font-size: 10px;
}
.end-link {
  display: flex;
  justify-content: center;
  margin-top: 80px;
}
.expertise-home {
  background: var(--paper);
}
.sector-list > a {
  display: flex;
  align-items: center;
  gap: 30px;
  border-top: 1px solid var(--line);
  padding-block: 26px;
}
.sector-list > a:last-child {
  border-bottom: 1px solid var(--line);
}
.sector-list > a > span:first-child {
  font-size: 11px;
  color: var(--muted);
  width: 40px;
}
.sector-list h3 {
  font-size: clamp(25px, 3.2vw, 54px);
  flex: 1;
}
.sector-count {
  font-size: 11px;
  color: var(--muted);
}
.sector-list > a > span:last-child {
  font-size: 28px;
  margin-inline-start: 50px;
}
.sector-list > a:hover {
  color: var(--red);
}
.practice-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}
.practice-photo {
  overflow: hidden;
}
.practice-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.practice-panel {
  background: var(--red);
  color: white;
  padding: 65px 10% 65px 12%;
  display: flex;
  flex-direction: column;
  align-items: start;
}
.practice-panel h2 {
  font-size: clamp(30px, 3.5vw, 58px);
  margin: 55px 0 30px;
}
.practice-panel > p:not(.eyebrow) {
  font-size: 14px;
  max-width: 430px;
  margin-bottom: 35px;
}
.practice-panel .text-link {
  margin-top: auto;
}
.practice-panel .text-link:hover {
  color: white;
  opacity: 0.8;
}
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}
.journal-image {
  aspect-ratio: 1.45;
  overflow: hidden;
}
.journal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.journal-grid a:hover img {
  transform: scale(1.035);
}
.journal-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-block: 21px 17px;
}
.journal-grid h3 {
  font-size: clamp(23px, 2.2vw, 36px);
  line-height: 1.12;
  max-width: 390px;
}
.journal-grid p {
  font-size: 11px;
  margin-top: 15px;
  color: var(--muted);
}
.journal-grid .text-link {
  margin-top: 25px;
  font-size: 11px;
}
.site-footer {
  background: #222320;
  color: #f9f9f5;
  padding: 70px var(--gutter) 30px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 70px;
  padding-bottom: 90px;
}
.footer-top h2 {
  font-size: clamp(37px, 4.4vw, 76px);
}
.footer-top > div {
  min-width: 270px;
}
.footer-top > div > a {
  display: block;
  width: fit-content;
  font-size: 13px;
}
.footer-top .eyebrow {
  color: #b3b4ac;
  margin-bottom: 15px;
}
.footer-top .footer-email {
  font-size: clamp(20px, 2.2vw, 36px);
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.footer-bottom {
  border-top: 1px solid #51524c;
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
.footer-bottom img {
  width: 64px;
  height: auto;
}
.footer-nav {
  display: flex;
  gap: 23px;
  font-size: 11px;
}
.footer-bottom > p,
.footer-bottom > a:last-child {
  font-size: 10px;
  color: #b3b4ac;
}
.page-heading {
  padding-top: 75px;
  padding-bottom: 65px;
}
.page-heading > .eyebrow {
  color: var(--red);
  margin-bottom: 36px;
}
.page-heading h1 {
  font-size: clamp(44px, 6vw, 100px);
  line-height: 1.02;
  max-width: 1200px;
}
.page-intro {
  max-width: 530px;
  margin-top: 35px;
  margin-inline-start: auto;
  font-size: 16px;
  color: var(--muted);
}
.catalogue {
  padding-top: 0;
}
.project-search {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding-block: 28px;
  border-block: 1px solid var(--line);
}
.project-search > label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.project-search > div {
  display: flex;
  width: min(500px, 65%);
  gap: 20px;
  border-bottom: 1px solid var(--ink);
}
.project-search input {
  min-width: 0;
  flex: 1;
  width: 100%;
  border: 0;
  background: none;
  padding: 12px 0;
  font-size: 14px;
}
.project-search button {
  border: 0;
  white-space: nowrap;
  background: none;
  font-size: 12px;
  padding-inline: 10px;
}
.filters {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.filters a {
  font-size: 12px;
  color: var(--muted);
  padding-block: 8px;
  border-bottom: 1px solid transparent;
}
.filters a[aria-current] {
  color: var(--red);
  border-color: var(--red);
}
.filters sup {
  font-size: 8px;
  margin-inline-start: 6px;
}
.result-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 30px 0;
  color: var(--muted);
  font-size: 11px;
}
.result-line .text-link {
  font-size: 11px;
}
.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 55px 35px;
}
.no-results {
  padding-block: 90px;
}
.practice-wide {
  margin: 0 var(--gutter);
}
.practice-wide img {
  width: 100%;
  max-height: 640px;
  object-fit: cover;
}
.practice-wide figcaption,
.detail-figure figcaption {
  font-size: 10px;
  color: var(--muted);
  margin: 12px var(--gutter) 0;
}
.practice-wide figcaption {
  margin-inline: 0;
}
.principles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12%;
}
.principles h2 {
  font-size: 50px;
  margin: 25px 0;
}
.principles .lead {
  font-size: 19px;
  color: var(--muted);
  max-width: 430px;
}
.principles ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
.principles li {
  display: flex;
  gap: 30px;
  padding-block: 30px;
  border-top: 1px solid var(--line);
}
.principles li > span {
  font-size: 11px;
  color: var(--red);
}
.principles h3 {
  font-size: 27px;
}
.principles li p {
  margin-top: 15px;
  font-size: 14px;
  color: var(--muted);
}
.network {
  background: var(--paper);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12%;
}
.network h2 {
  font-size: clamp(35px, 4vw, 65px);
  margin: 30px 0;
}
.network > div > p:not(.eyebrow) {
  font-size: 14px;
  color: var(--muted);
  max-width: 420px;
  margin-bottom: 25px;
}
.city-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.city-list li {
  display: flex;
  gap: 30px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 20px 0;
  font-size: 32px;
  letter-spacing: -0.025em;
}
.city-list li > span:first-child {
  font-size: 10px;
  color: var(--muted);
}
.city-list li > span:last-child {
  margin-inline-start: auto;
  font-size: 19px;
  color: var(--muted);
}
.expertise-sections {
  padding-top: 0;
}
.expertise-row {
  border-top: 1px solid var(--line);
  padding-block: 60px 80px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 10%;
}
.expertise-text h2 {
  font-size: clamp(31px, 3.5vw, 57px);
  margin: 28px 0;
}
.expertise-text > p:not(.eyebrow) {
  font-size: 15px;
  color: var(--muted);
  max-width: 440px;
}
.expertise-text > .text-link {
  margin-top: 25px;
}
.expertise-text ul {
  list-style: none;
  padding: 20px 0 0;
  margin: 20px 0 0;
}
.expertise-text li .text-link {
  width: 100%;
  font-size: 11px;
  border-color: var(--line);
}
.expertise-image {
  align-self: start;
}
.expertise-image img {
  width: 100%;
  aspect-ratio: 1.1;
  object-fit: cover;
}
.expertise-image > span {
  display: block;
  margin-top: 12px;
  font-size: 12px;
}
.contact-details {
  padding-top: 10px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 8%;
  padding-bottom: 100px;
}
.contact-details > div {
  border-top: 1px solid var(--line);
  padding-top: 30px;
}
.contact-email {
  font-size: clamp(24px, 3.2vw, 50px);
  letter-spacing: -0.045em;
  display: block;
  margin-top: 20px;
  overflow-wrap: anywhere;
}
.contact-email > span {
  font-size: 27px;
}
.contact-details > div > p:last-child {
  font-size: 13px;
  color: var(--muted);
  margin-top: 25px;
}
.contact-phone {
  font-size: clamp(22px, 2.5vw, 40px);
  letter-spacing: -0.04em;
  display: inline-block;
  margin-top: 20px;
}
.project-heading,
.article-heading {
  padding-top: 45px;
  padding-bottom: 55px;
}
.back {
  font-size: 11px;
  display: inline-block;
  color: var(--muted);
  margin-bottom: 50px;
}
.project-heading > .eyebrow,
.article-heading > .eyebrow {
  color: var(--red);
  margin-bottom: 22px;
}
.project-heading h1 {
  font-size: clamp(40px, 5.5vw, 92px);
  max-width: 1300px;
}
.project-heading > p:last-child {
  margin-top: 25px;
  color: var(--muted);
  font-size: 13px;
}
.detail-figure img {
  width: 100%;
  height: auto;
  max-height: 880px;
  object-fit: cover;
}
.detail-figure.contained {
  margin-inline: auto;
  max-width: 1100px;
  padding-inline: var(--gutter);
}
.detail-figure.contained img {
  max-height: none;
}
.detail-figure.contained figcaption {
  margin-inline: 0;
}
.project-story {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 12%;
}
.project-narrative {
  font-size: clamp(22px, 2.2vw, 36px);
  letter-spacing: -0.025em;
  line-height: 1.45;
  margin-top: 25px;
}
.project-story h2 {
  font-size: 23px;
  letter-spacing: -0.02em;
}
.project-story dl {
  margin-top: 25px;
  font-size: 12px;
}
.project-story dl > div {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding: 13px 0;
}
.project-story dt {
  color: var(--muted);
}
.project-story dd {
  margin: 0;
}
.project-story .text-link {
  font-size: 11px;
}
.project-gallery {
  padding-top: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px 35px;
  align-items: start;
}
.project-gallery img {
  width: 100%;
}
.project-gallery figcaption {
  margin-top: 12px;
  font-size: 9px;
  color: var(--muted);
}
.project-gallery figure:nth-child(3):last-child {
  grid-column: 1/-1;
  max-width: 1000px;
  margin-inline: auto;
  width: 100%;
}
.related-work {
  background: var(--paper);
}
.article-heading h1 {
  font-size: clamp(42px, 6vw, 100px);
  max-width: 1000px;
}
.article-heading > p:last-child {
  margin-top: 25px;
  font-size: 14px;
  color: var(--muted);
}
.article-body {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 10%;
}
.article-body aside > p:nth-child(2) {
  font-size: 15px;
  margin-top: 25px;
}
.article-body aside .text-link {
  font-size: 11px;
  margin-top: 20px;
}
.article-body > div > p {
  font-size: 21px;
  line-height: 1.7;
  margin-bottom: 35px;
  max-width: 780px;
}
.article-body > div > p:first-child {
  font-size: 30px;
  line-height: 1.45;
  letter-spacing: -0.03em;
}
.article-body + .journal-section {
  background: var(--paper);
}
.not-found {
  min-height: 70vh;
}
.not-found h1 {
  font-size: 60px;
  margin: 30px 0;
}
[dir="rtl"] body {
  font-family: Tahoma, Arial, sans-serif;
}
[dir="rtl"] h1,
[dir="rtl"] h2,
[dir="rtl"] h3 {
  letter-spacing: 0;
  line-height: 1.35;
}
[dir="rtl"] .eyebrow {
  letter-spacing: 0;
}
[dir="rtl"] .hero h1 {
  line-height: 0.9;
  letter-spacing: -0.055em;
}
[dir="rtl"] .hero h1 span {
  letter-spacing: 0;
}
[dir="rtl"] .practice-panel {
  padding-inline: 12% 10%;
}
@media (min-width: 1600px) {
  .section {
    padding-block: 125px;
  }
  .selected {
    padding-top: 0;
  }
  .catalogue,
  .expertise-sections,
  .project-gallery {
    padding-top: 0;
  }
  .hero-content {
    bottom: 85px;
  }
  .hero-credit {
    bottom: 25px;
  }
}
@media (max-width: 1100px) {
  .site-header {
    gap: 30px;
  }
  .main-nav {
    gap: 20px;
  }
  .feature-index {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .feature-index > .eyebrow {
    display: none;
  }
  .feature-index > a:first-of-type {
    border: 0;
    padding-inline-start: 0;
  }
  .section {
    padding-block: 80px;
  }
  .selected,
  .catalogue,
  .expertise-sections,
  .project-gallery {
    padding-top: 0;
  }
  .selected-grid {
    gap: 65px 25px;
  }
  .selected-grid .project-card:nth-child(6n + 2) {
    margin-top: 100px;
  }
  .footer-nav {
    gap: 15px;
  }
  .footer-bottom {
    flex-wrap: wrap;
  }
  .practice-panel {
    padding: 50px 10%;
  }
  .practice-panel h2 {
    margin-top: 40px;
  }
  .practice-feature {
    min-height: 530px;
  }
  .section-heading {
    gap: 35px;
  }
  .contact-details {
    gap: 5%;
  }
  .city-list li {
    font-size: 28px;
  }
  .hero h1 {
    font-size: 12vw;
  }
  .journal-grid {
    gap: 24px;
  }
  .main-nav a {
    font-size: 12px;
  }
}
@media (max-width: 800px) {
  .site-header {
    height: 80px;
    justify-content: space-between;
  }
  .brand img {
    width: 53px;
    height: auto;
  }
  .main-nav {
    display: none;
  }
  .header-tools {
    gap: 24px;
  }
  .mobile-menu {
    display: block;
  }
  .mobile-menu summary {
    list-style: none;
    width: 28px;
    height: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    cursor: pointer;
  }
  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }
  .mobile-menu summary span {
    height: 1px;
    width: 26px;
    background: var(--ink);
    transition: transform 0.2s;
  }
  .mobile-menu[open] summary span:first-child {
    transform: translateY(4px) rotate(45deg);
  }
  .mobile-menu[open] summary span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }
  .mobile-panel {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 30px var(--gutter) 45px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 30px 40px #0002;
    max-height: calc(100svh - 80px);
    overflow: auto;
  }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin: 25px 0 35px;
    font-size: 29px;
    letter-spacing: -0.025em;
  }
  .mobile-nav a[aria-current] {
    color: var(--red);
  }
  .mobile-panel > a {
    font-size: 13px;
  }
  .hero {
    height: calc(88svh - 80px);
    min-height: 530px;
  }
  .hero-photo img {
    object-position: 57% center;
  }
  .hero-content {
    bottom: 60px;
  }
  .hero h1 {
    font-size: 16vw;
    gap: 13px;
  }
  .hero h1 span {
    font-size: 16px;
  }
  .hero-bottom {
    align-items: start;
    flex-direction: column;
    gap: 22px;
    margin-top: 25px;
  }
  .hero-link {
    font-size: 12px;
    gap: 65px;
  }
  .hero-credit {
    font-size: 8px;
  }
  .hero-content .eyebrow {
    max-width: 270px;
    font-size: 10px;
  }
  .feature-index {
    padding-block: 20px;
    gap: 16px;
  }
  .feature-index > a {
    padding-inline-start: 14px;
    gap: 9px;
    font-size: 10px;
  }
  .feature-index > a > span:last-child {
    display: none;
  }
  .feature-index small {
    font-size: 9px;
  }
  .intro > .eyebrow {
    margin-bottom: 40px;
    gap: 30px;
  }
  .intro-body {
    gap: 40px;
    grid-template-columns: 1fr;
  }
  .intro h2 {
    font-size: 62px;
  }
  .intro-body > div {
    max-width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 35px;
  }
  .intro .lead {
    font-size: 21px;
    margin: 0;
  }
  .intro-body > div > .text-link {
    justify-self: start;
  }
  .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
  }
  .section-heading h2 {
    max-width: 550px;
  }
  .selected-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px 25px;
  }
  .selected-grid .project-card:nth-child(n) {
    grid-column: auto;
    margin-top: 0;
  }
  .selected-grid .project-card:nth-child(even) {
    margin-top: 65px;
  }
  .selected-grid .project-card:nth-child(n) .project-image {
    aspect-ratio: 1.15;
  }
  .project-caption {
    gap: 8px;
  }
  .card-year {
    display: none;
  }
  .project-caption h3 {
    font-size: 19px;
  }
  .project-caption p {
    font-size: 10px;
  }
  .expertise-home .section-heading {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .sector-list h3 {
    font-size: 29px;
  }
  .sector-list > a {
    gap: 15px;
  }
  .sector-list > a > span:last-child {
    margin-inline-start: 15px;
  }
  .practice-feature {
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
  }
  .practice-panel {
    padding: 40px 10%;
  }
  .practice-panel h2 {
    font-size: 32px;
    margin: 30px 0 25px;
  }
  .practice-panel .eyebrow {
    font-size: 9px;
  }
  .practice-panel > p:not(.eyebrow) {
    font-size: 12px;
  }
  .journal-grid {
    gap: 20px;
  }
  .journal-grid h3 {
    font-size: 24px;
  }
  .journal-meta {
    font-size: 8px;
    gap: 10px;
  }
  .footer-top {
    padding-bottom: 55px;
    gap: 30px;
  }
  .footer-top h2 {
    font-size: 38px;
  }
  .footer-top > div {
    min-width: 240px;
  }
  .footer-bottom {
    gap: 25px 30px;
  }
  .footer-nav {
    flex: 1;
    justify-content: end;
  }
  .footer-bottom > p {
    margin-inline-start: 0;
  }
  .footer-bottom > a:last-child {
    margin-inline-start: auto;
  }
  .page-heading h1 {
    font-size: 54px;
  }
  .page-intro {
    margin-inline-start: 0;
    max-width: 550px;
  }
  .filters {
    gap: 12px 22px;
  }
  .principles,
  .network {
    gap: 45px;
  }
  .principles h2 {
    font-size: 35px;
  }
  .principles .lead {
    font-size: 16px;
  }
  .principles li {
    gap: 18px;
  }
  .principles h3 {
    font-size: 23px;
  }
  .network h2 {
    font-size: 35px;
  }
  .expertise-row {
    gap: 7%;
    grid-template-columns: 1fr 1fr;
  }
  .expertise-text h2 {
    font-size: 32px;
  }
  .contact-details {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .project-story {
    gap: 7%;
  }
  .project-narrative {
    font-size: 24px;
  }
  .project-story dl > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }
  .article-body {
    gap: 7%;
  }
  .article-body > div > p:first-child {
    font-size: 25px;
  }
  .article-body > div > p {
    font-size: 18px;
  }
}
@media (max-width: 520px) {
  .section {
    padding-block: 60px;
  }
  .selected,
  .catalogue,
  .expertise-sections,
  .project-gallery {
    padding-top: 0;
  }
  .languages {
    gap: 12px;
    font-size: 10px;
  }
  .header-tools {
    gap: 22px;
  }
  .hero {
    min-height: 520px;
    max-height: 800px;
  }
  .hero h1 {
    font-size: 19vw;
  }
  .hero h1 span {
    font-size: 17px;
    display: block;
    width: 100%;
    margin-top: 7px;
  }
  .hero-topline {
    font-size: 9px;
    top: 24px;
  }
  .hero-content .eyebrow {
    margin-bottom: 20px;
  }
  .hero-bottom {
    margin-top: 23px;
  }
  .feature-index {
    grid-template-columns: 1fr;
  }
  .feature-index > a:not(:first-of-type) {
    display: none;
  }
  .feature-index > a:first-of-type {
    gap: 20px;
    align-items: center;
    font-size: 12px;
  }
  .feature-index > a > span:last-child {
    display: block;
    margin-inline-start: auto;
  }
  .feature-index small {
    font-size: 10px;
  }
  .intro > .eyebrow {
    font-size: 9px;
    gap: 20px;
  }
  .intro > .eyebrow span {
    max-width: 85px;
    text-align: end;
  }
  .intro h2 {
    font-size: 48px;
  }
  .intro-body > div {
    display: block;
  }
  .intro .lead {
    font-size: 21px;
    margin-bottom: 25px;
  }
  .intro-body > div > p:not(.lead) {
    font-size: 14px;
  }
  .section-heading h2 {
    font-size: 34px;
  }
  .section-heading > .text-link {
    font-size: 12px;
  }
  .selected-grid {
    display: block;
  }
  .selected-grid .project-card:nth-child(n) {
    margin: 0 0 40px;
  }
  .selected-grid .project-card:nth-child(n) .project-image {
    aspect-ratio: 1.3;
  }
  .selected-grid .project-card:nth-child(2),
  .selected-grid .project-card:nth-child(6) {
    margin-inline-start: 14%;
    margin-bottom: 50px;
  }
  .selected-grid .project-card:nth-child(2) .project-image,
  .selected-grid .project-card:nth-child(6) .project-image {
    aspect-ratio: 1;
  }
  .project-caption h3 {
    font-size: 22px;
  }
  .end-link {
    margin-top: 10px;
  }
  .expertise-home .section-heading {
    display: block;
  }
  .expertise-home .section-heading > p {
    margin-top: 25px;
    font-size: 14px;
  }
  .sector-list h3 {
    font-size: 25px;
  }
  .sector-list > a {
    gap: 12px;
    padding-block: 23px;
  }
  .sector-list > a > span:first-child {
    width: 18px;
    font-size: 9px;
  }
  .sector-list > a > span:last-child {
    margin-inline-start: 0;
    font-size: 24px;
  }
  .sector-count {
    font-size: 9px;
  }
  .practice-feature {
    display: flex;
    flex-direction: column;
  }
  .practice-photo {
    height: 290px;
  }
  .practice-panel {
    padding: 40px var(--gutter) 50px;
  }
  .practice-panel h2 {
    font-size: 38px;
    max-width: 400px;
  }
  .practice-panel > p:not(.eyebrow) {
    font-size: 14px;
  }
  .practice-panel .text-link {
    margin-top: 10px;
  }
  .journal-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .journal-grid h3 {
    font-size: 30px;
  }
  .journal-meta {
    font-size: 9px;
    margin-block: 16px;
  }
  .journal-grid .text-link {
    margin-top: 15px;
  }
  .journal-image {
    aspect-ratio: 1.6;
  }
  .footer-top {
    flex-direction: column;
    gap: 40px;
  }
  .footer-top h2 {
    font-size: 44px;
  }
  .footer-top .footer-email {
    font-size: 27px;
  }
  .footer-bottom {
    align-items: start;
  }
  .footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 25px;
    margin-inline-start: 30px;
  }
  .footer-bottom > p {
    width: 60%;
    font-size: 9px;
  }
  .footer-bottom > a:last-child {
    font-size: 9px;
    margin: 0;
  }
  .page-heading {
    padding-top: 50px;
  }
  .page-heading h1 {
    font-size: 43px;
  }
  .page-heading > .eyebrow {
    margin-bottom: 25px;
  }
  .page-intro {
    font-size: 15px;
    margin-top: 28px;
  }
  .project-search {
    flex-direction: column;
    gap: 12px;
    align-items: start;
    padding-block: 22px;
  }
  .project-search > label {
    font-size: 10px;
  }
  .project-search > div {
    width: 100%;
  }
  .project-search button {
    font-size: 11px;
    padding-inline-end: 0;
  }
  .filters {
    gap: 5px 18px;
    margin-top: 22px;
  }
  .filters a {
    font-size: 11px;
  }
  .catalogue-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .result-line {
    margin: 25px 0;
  }
  .principles,
  .network {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .principles h2 {
    font-size: 40px;
  }
  .city-list li {
    font-size: 31px;
  }
  .expertise-row {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-block: 40px 55px;
  }
  .expertise-text h2 {
    font-size: 36px;
  }
  .expertise-image img {
    aspect-ratio: 1.4;
  }
  .contact-details {
    padding-top: 0;
    gap: 30px;
  }
  .contact-email {
    font-size: 30px;
  }
  .contact-phone {
    font-size: 29px;
  }
  .project-heading h1 {
    font-size: 43px;
  }
  .project-heading > .back,
  .article-heading > .back {
    margin-bottom: 35px;
  }
  .project-heading > .eyebrow {
    font-size: 10px;
  }
  .project-story {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .project-narrative {
    font-size: 25px;
  }
  .project-story dl > div {
    grid-template-columns: 1fr 1.5fr;
    gap: 15px;
  }
  .detail-figure img {
    min-height: 250px;
    object-fit: cover;
  }
  .detail-figure.contained img {
    min-height: 0;
  }
  .detail-figure figcaption {
    font-size: 8px;
  }
  .project-gallery {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .project-gallery figure:nth-child(n) {
    grid-column: auto;
  }
  .article-heading h1 {
    font-size: 44px;
  }
  .article-body {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .article-body aside {
    padding-bottom: 25px;
    border-bottom: 1px solid var(--line);
  }
  .article-body > div > p:first-child {
    font-size: 27px;
  }
  .article-body > div > p {
    font-size: 19px;
  }
  [dir="rtl"] .hero h1 {
    font-size: 19vw;
  }
  [dir="rtl"] .intro h2 {
    font-size: 42px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}
.card-credit {
  font-size: 8px;
  line-height: 1.4;
  color: var(--muted);
  margin-top: 7px;
  letter-spacing: 0.01em;
}
.practice-photo {
  position: relative;
}
.photo-credit {
  position: absolute;
  bottom: 14px;
  inset-inline-end: 18px;
  font-size: 9px;
  background: #20201e99;
  color: #fff;
  padding: 4px 8px;
  max-width: calc(100% - 36px);
}

.journal-grid .card-credit {
  font-size: 8px;
  margin-top: 7px;
}

.project-gallery > figure:only-child {
  grid-column: 1 / -1;
  width: min(100%, 900px);
  margin-inline: auto;
}

/* Visible, concise practice facts for clients and search readers. */
.practice-answers > h2 { font-size: clamp(30px, 4vw, 56px); font-weight: 400; margin: 24px 0 48px; }
.practice-answers > div { display: grid; grid-template-columns: 1fr 1fr; gap: 40px 64px; }
.practice-answers article { border-top: 1px solid var(--line); padding-top: 24px; }
.practice-answers h3 { font-size: 21px; font-weight: 400; margin: 0 0 18px; }
.practice-answers article p { color: var(--muted); line-height: 1.7; max-width: 62ch; }
@media (max-width: 700px) { .practice-answers > div { grid-template-columns: 1fr; gap: 28px; } }

/* Shared project recognition: exact award category, result and project. */
.recognition-list{list-style:none;padding:0;margin:0;border-top:1px solid var(--line,#deded9)}
.recognition-list li{display:grid;grid-template-columns:100px 1fr auto;gap:32px;padding:32px 0;border-bottom:1px solid var(--line,#deded9)}
.recognition-year{color:#777;line-height:1.5}
.recognition-list h3{font-size:clamp(20px,2vw,30px);font-weight:400;margin:0 0 8px}
.recognition-list p{color:#777;margin:0 0 20px}
.recognition-result{color:var(--red,#ef2026);font-size:14px;line-height:1.6}
[dir=rtl] .recognition-list h3,[dir=rtl] .recognition-list p{text-align:right}
@media(max-width:680px){.recognition-list li{grid-template-columns:1fr auto;gap:14px}.recognition-year{grid-column:1}.recognition-list li>div{grid-column:1/-1;grid-row:2}.recognition-result{grid-column:2;grid-row:1}}

/* Fixed vector geometry: no platform-dependent emoji or font glyphs. */
.arrow-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  vertical-align: -0.15em;
}
.text-link > .arrow-icon,
.text-link > span > .arrow-icon { vertical-align: middle; }
.hero-link .arrow-icon,
.image-action .arrow-icon,
.footer-email .arrow-icon,
.contact-email .arrow-icon { width: 20px; height: 20px; }
[dir="rtl"] .arrow-icon { transform: scaleX(-1); }
[dir="rtl"] [dir="ltr"] .arrow-icon { transform: none; }
@media (max-width: 680px) {
  .text-link { gap: 18px; }
  .journal-grid .text-link .arrow-icon { width: 15px; height: 15px; }
}

/* Corporate contact details: shared factual address and restrained directory. */
.office-address { font-style: normal; line-height: 1.8; }
.footer-top { padding-bottom: 56px; }
.footer-directory {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr .7fr;
  gap: clamp(32px, 5vw, 80px);
  padding: 40px 0 48px;
  border-top: 1px solid #51524c;
}
.footer-directory > section { min-width: 0; }
.footer-directory h3 { color: #b3b4ac; margin-bottom: 20px; letter-spacing: .1em; }
.footer-directory p, .footer-directory address, .footer-cities {
  font-size: 13px; line-height: 1.8; color: #e0e1da;
}
.footer-directory .text-link { font-size: 12px; margin-top: 18px; border-color: #72736b; }
.footer-cities { list-style: none; padding: 0; margin: 0; columns: 2; column-gap: 24px; }
.footer-cities li { break-inside: avoid; margin-bottom: 4px; }
.footer-directory .footer-timezone { margin-top: 18px; color: #b3b4ac; font-size: 11px; }
.contact-page .contact-details { padding-bottom: 70px; }
.contact-office {
  display: grid; grid-template-columns: 1.35fr 1fr; gap: clamp(40px, 6vw, 100px);
  padding-top: 0; align-items: start;
}
.contact-office figure img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.contact-office figcaption { margin-top: 14px; font-size: 12px; color: var(--muted); }
.contact-office figcaption span { display: block; font-size: 10px; margin-top: 4px; }
.contact-office-info > .eyebrow:first-child { color: var(--red); margin-bottom: 20px; }
.contact-office h2 { font-size: clamp(32px, 3.2vw, 50px); margin-bottom: 34px; }
.contact-office .address-label { margin-bottom: 10px; color: var(--muted); }
.contact-office .office-address { font-size: 17px; }
.contact-office .text-link { margin-top: 18px; }
.visit-note { font-size: 13px; color: var(--muted); margin-top: 24px; max-width: 380px; }
.office-timezone { border-top: 1px solid var(--line); padding-top: 22px; margin-top: 28px; }
.office-timezone > p:last-child { font-size: 14px; margin-top: 6px; }
.contact-brief { display: grid; grid-template-columns: 1fr 1fr; gap: 10%; background: var(--paper); }
.contact-brief > div > .eyebrow { color: var(--red); margin-bottom: 28px; }
.contact-brief h2 { font-size: clamp(32px, 3.6vw, 56px); line-height: 1.12; }
.brief-intro { font-size: 15px; color: var(--muted); margin: 25px 0 22px; max-width: 400px; }
.contact-brief ol { margin: 0; padding: 0; list-style: none; }
.contact-brief li { display: grid; grid-template-columns: 28px 1fr; gap: 18px; border-top: 1px solid var(--line); padding: 24px 0; }
.brief-number { color: var(--red); font-size: 11px; line-height: 2.2; }
.contact-brief h3 { font-size: 22px; letter-spacing: -.02em; margin-bottom: 10px; }
.contact-brief li p { color: var(--muted); font-size: 14px; }
.contact-network { display: grid; grid-template-columns: 1fr 1fr; gap: 10%; }
.contact-network .eyebrow { color: var(--red); margin-bottom: 20px; }
.contact-network h2 { font-size: clamp(28px, 3vw, 44px); max-width: 480px; }
.contact-network ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 30px; }
.contact-network li { border-top: 1px solid var(--line); padding: 13px 0; font-size: 20px; }
@media (max-width: 960px) {
  .footer-directory { grid-template-columns: 1fr 1fr; gap: 34px; }
  .footer-directory > section:first-child { grid-column: 1 / -1; max-width: 540px; }
  .contact-office { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-office .office-address { font-size: 15px; }
  .contact-brief, .contact-network { gap: 6%; }
}
@media (max-width: 680px) {
  .footer-directory { grid-template-columns: 1fr; gap: 30px; padding: 30px 0 36px; }
  .footer-directory > section:first-child { grid-column: auto; }
  .footer-directory h3 { margin-bottom: 12px; }
  .footer-directory p, .footer-directory address, .footer-cities { font-size: 14px; }
  .footer-directory .text-link { margin-top: 13px; }
  .footer-top { padding-bottom: 36px; }
  .contact-page .contact-details { padding-bottom: 42px; }
  .contact-page .contact-email, .contact-page .contact-phone { font-size: clamp(23px, 6.4vw, 30px); }
  .contact-office, .contact-brief, .contact-network { grid-template-columns: 1fr; gap: 36px; }
  .contact-office { padding-bottom: 55px; }
  .contact-office h2 { font-size: 36px; margin-bottom: 28px; }
  .contact-office .office-address { font-size: 16px; }
  .contact-brief h2 { font-size: 36px; }
  .contact-brief { padding-block: 52px; }
  .contact-brief ol { margin-top: 4px; }
  .contact-network { padding-block: 55px; gap: 28px; }
  .contact-network h2 { font-size: 31px; }
  .contact-network li { font-size: 20px; }
}
