:root {
  --navy: #0a1f33;
  --navy-deep: #081827;
  --paper: #f5f5f5;
  --ivory: #ece7dd;
  --ink: #1f2024;
  --muted: #5e6670;
  --silver: #a8b0b8;
  --slate: #667787;
  --line: rgba(31, 43, 55, 0.2);
  --line-light: rgba(245, 245, 245, 0.17);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "IBM Plex Sans", system-ui, sans-serif;
  --condensed: "IBM Plex Sans Condensed", "Arial Narrow", sans-serif;
  --page: 1280px;
  --gutter: clamp(22px, 5vw, 72px);
  --section: clamp(84px, 10vw, 144px);
  --header-height: 88px;
}

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

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button {
  font: inherit;
}

::selection {
  background: #d2d9df;
  color: var(--navy-deep);
}

:focus-visible {
  outline: 2px solid #9eb8d0;
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  z-index: 300;
  top: 8px;
  left: 8px;
  transform: translateY(-160%);
  background: var(--paper);
  color: var(--navy);
  padding: 10px 14px;
  text-decoration: none;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: none;
}

.wrap {
  width: min(100%, var(--page));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.eyebrow {
  margin: 0 0 26px;
  color: var(--slate);
  font-family: var(--condensed);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.27em;
  line-height: 1.3;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  text-wrap: balance;
}

h1 {
  max-width: 12.5ch;
  font-size: clamp(50px, 7.8vw, 104px);
  letter-spacing: -0.038em;
  line-height: 0.94;
}

h2 {
  font-size: clamp(38px, 5.1vw, 68px);
  letter-spacing: -0.028em;
  line-height: 1;
}

h3 {
  font-size: clamp(25px, 2.4vw, 33px);
  letter-spacing: -0.015em;
  line-height: 1.08;
}

.lead {
  font-size: clamp(17px, 1.55vw, 20px);
  line-height: 1.68;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  padding: 15px 25px;
  font-family: var(--condensed);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.19em;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button-light {
  border-color: rgba(245, 245, 245, 0.48);
  color: var(--paper);
}

.button-light:hover,
.button-light:focus-visible {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--navy);
}

.button-dark {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--paper);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: transparent;
  color: var(--navy);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 120;
  top: 0;
  right: 0;
  left: 0;
  color: var(--paper);
  transition: background-color 180ms ease, border-color 180ms ease;
}

.site-header.scrolled,
.site-header.menu-visible,
.site-header.legal-header {
  background: rgba(8, 24, 39, 0.96);
  border-bottom: 1px solid var(--line-light);
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
}

.site-header.menu-visible {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.wordmark {
  position: relative;
  z-index: 2;
  width: clamp(132px, 14vw, 174px);
  flex: none;
}

.wordmark img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.7vw, 39px);
}

.desktop-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: rgba(245, 245, 245, 0.74);
  font-family: var(--condensed);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: #fff;
}

.desktop-nav .nav-cta {
  border-bottom: 1px solid rgba(245, 245, 245, 0.42);
  padding-bottom: 3px;
  color: var(--paper);
}

.menu-button {
  position: relative;
  z-index: 2;
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
}

.menu-button::before,
.menu-button::after {
  position: absolute;
  left: 10px;
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, top 180ms ease;
}

.menu-button::before {
  top: 19px;
}

.menu-button::after {
  top: 28px;
}

.menu-button[aria-expanded="true"]::before {
  top: 24px;
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"]::after {
  top: 24px;
  transform: rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  z-index: 1;
  inset: 0;
  display: none;
  width: 100vw;
  height: 100svh;
  padding: calc(var(--header-height) + 42px) var(--gutter) 44px;
  background: var(--navy-deep);
}

.mobile-nav.open {
  display: flex;
  flex-direction: column;
}

.mobile-nav a {
  border-bottom: 1px solid var(--line-light);
  padding: 17px 0;
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(28px, 8vw, 40px);
  line-height: 1.1;
  text-decoration: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--navy);
  color: var(--paper);
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 100svh;
  align-items: center;
  padding-top: clamp(142px, 17vh, 196px);
  padding-bottom: clamp(112px, 16vh, 176px);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, 780px);
}

.hero h1 em {
  display: block;
  font-weight: 400;
}

.hero-copy {
  max-width: 640px;
  margin: clamp(30px, 4vw, 45px) 0 0;
  color: rgba(245, 245, 245, 0.78);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 30px;
  margin-top: clamp(34px, 4.5vw, 50px);
}

.architecture {
  position: absolute;
  z-index: 1;
  right: -2vw;
  bottom: 0;
  left: auto;
  display: block;
  width: min(74vw, 1120px);
  height: auto;
  opacity: 0.4;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 28%, rgba(0, 0, 0, 0.45) 43%, #000 57%);
  mask-image: linear-gradient(90deg, transparent 0%, transparent 28%, rgba(0, 0, 0, 0.45) 43%, #000 57%);
}

.architecture-lines {
  stroke: var(--silver);
  stroke-width: 1.1;
  vector-effect: non-scaling-stroke;
}

/* Shared sections */
.section {
  position: relative;
  padding-block: var(--section);
}

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

/* Need */
.need {
  background: var(--paper);
}

.need-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(52px, 9vw, 132px);
  align-items: start;
}

.need h2 {
  max-width: 10.5ch;
}

.need-copy {
  max-width: 680px;
}

.need-copy .lead {
  margin: 0;
}

.signals {
  margin: clamp(42px, 6vw, 70px) 0 0;
  padding: 0;
  list-style: none;
}

.signals li {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: baseline;
  border-top: 1px solid var(--line);
  padding: 18px 0;
  color: #41464c;
}

.signals li:last-child {
  border-bottom: 1px solid var(--line);
}

.signals span {
  color: var(--slate);
  font-family: var(--condensed);
  font-size: 10px;
  letter-spacing: 0.24em;
}

/* Role */
.role {
  overflow: hidden;
  background: var(--navy);
  color: var(--paper);
}

.role-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(56px, 9vw, 130px);
  align-items: center;
}

.role h2 {
  max-width: 10.5ch;
}

.role-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin: 34px 0 0;
  color: rgba(245, 245, 245, 0.75);
}

.role-copy > p + p:not(.eyebrow) {
  margin-top: 20px;
}

.matter-map {
  width: 100%;
  max-width: 650px;
  margin: 0;
  justify-self: end;
}

.coordination-diagram {
  display: block;
  width: 100%;
  height: auto;
}

.diagram-lines {
  stroke: rgba(168, 176, 184, 0.42);
  stroke-width: 1;
}

.diagram-centre {
  fill: var(--navy-deep);
  stroke: rgba(245, 245, 245, 0.12);
  stroke-width: 1;
}

.diagram-points {
  fill: var(--paper);
}

.diagram-labels {
  fill: rgba(245, 245, 245, 0.82);
  font-family: var(--condensed);
  font-size: 17px;
  letter-spacing: 2.3px;
  text-transform: uppercase;
}

/* Mandates */
.mandates {
  background: var(--ivory);
}

.mandates h2 {
  max-width: 11ch;
}

.mandate-list {
  display: grid;
  grid-template-columns: 0.95fr 1.18fr 0.95fr;
  margin-top: clamp(58px, 8vw, 94px);
  border-top: 1px solid var(--line);
}

.mandate {
  min-height: 330px;
  border-right: 1px solid var(--line);
  padding: clamp(28px, 4vw, 50px) clamp(24px, 3.3vw, 45px) 0 0;
}

.mandate + .mandate {
  padding-left: clamp(24px, 3.3vw, 45px);
}

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

.mandate-number {
  margin: 0 0 38px;
  color: var(--slate);
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
}

.mandate h3 {
  max-width: 12ch;
}

.mandate p:last-child {
  max-width: 48ch;
  margin: 22px 0 0;
  color: #4d545b;
}

/* Process */
.process {
  background: var(--paper);
}

.process h2 {
  max-width: 10ch;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: clamp(58px, 8vw, 94px) 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.step {
  min-height: 300px;
  border-right: 1px solid var(--line);
  padding: clamp(28px, 4vw, 48px) clamp(22px, 2.8vw, 38px) 0 0;
}

.step + .step {
  padding-left: clamp(22px, 2.8vw, 38px);
}

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

.step-number {
  display: block;
  margin-bottom: 34px;
  color: var(--slate);
  font-family: var(--condensed);
  font-size: 10px;
  letter-spacing: 0.24em;
}

.step h3 {
  max-width: 9ch;
}

.step p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

/* Director */
.director {
  overflow: hidden;
  background: var(--navy);
  color: var(--paper);
}

.director-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  grid-template-areas:
    "photo heading"
    "photo copy";
  column-gap: clamp(62px, 10vw, 148px);
  row-gap: 28px;
  align-items: center;
}

.director-heading {
  grid-area: heading;
  align-self: end;
}

.director-photo {
  position: relative;
  grid-area: photo;
  max-width: 430px;
  margin: 0;
}

.director-copy {
  grid-area: copy;
  align-self: start;
}

.director-photo::before {
  position: absolute;
  z-index: 0;
  inset: 18px -18px -18px 18px;
  border: 1px solid var(--line-light);
  content: "";
}

.director-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border: 1px solid var(--line-light);
  filter: grayscale(1) contrast(1.02);
}

.director h2 {
  max-width: none;
  white-space: nowrap;
}

.director-name {
  margin: 38px 0 0;
  font-family: var(--serif);
  font-size: 29px;
  line-height: 1.15;
}

.director-role {
  margin: 0;
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(25px, 3vw, 32px);
  line-height: 1.15;
}

.director-bio {
  max-width: 690px;
  margin-top: 30px;
}

.director-bio p {
  margin: 0;
  color: rgba(245, 245, 245, 0.77);
}

.director-bio p + p {
  margin-top: 18px;
}

.director-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-top: 30px;
  border-bottom: 1px solid rgba(245, 245, 245, 0.27);
  padding-bottom: 3px;
  color: rgba(245, 245, 245, 0.72);
  font-family: var(--condensed);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
}

.director-link:hover,
.director-link:focus-visible {
  border-color: rgba(245, 245, 245, 0.7);
  color: #fff;
}

/* Contact */
.contact {
  background: var(--paper);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  gap: clamp(62px, 10vw, 142px);
  align-items: center;
}

.contact h2 {
  max-width: 11ch;
}

.contact-body {
  max-width: 650px;
  border-top: 1px solid var(--line);
  padding-top: 30px;
}

.contact-copy {
  max-width: 670px;
  margin-top: 0;
}

.contact-copy p {
  margin: 0;
  color: #464c52;
}

.contact-copy p + p {
  margin-top: 18px;
}

.contact-card {
  width: min(100%, 350px);
  margin-top: 34px;
}

.contact-card .button {
  width: 100%;
}

.contact-email {
  display: inline-block;
  margin-top: 25px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 3px;
  text-decoration: none;
}

.contact-email:hover,
.contact-email:focus-visible {
  border-color: var(--navy);
}

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: rgba(245, 245, 245, 0.62);
}

.footer-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px;
  padding-top: clamp(56px, 7vw, 82px);
  padding-bottom: 42px;
}

.footer-wordmark {
  width: clamp(145px, 17vw, 188px);
}

.footer-wordmark img {
  width: 100%;
  height: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 28px;
}

.footer-links a {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border-bottom: 1px solid transparent;
  color: rgba(245, 245, 245, 0.66);
  font-family: var(--condensed);
  font-size: 10px;
  letter-spacing: 0.17em;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  border-color: rgba(245, 245, 245, 0.4);
  color: #fff;
}

.footer-legal {
  border-top: 1px solid var(--line-light);
  padding-top: 28px;
  padding-bottom: max(30px, env(safe-area-inset-bottom));
}

.footer-legal > p {
  max-width: 970px;
  margin: 0;
  color: rgba(245, 245, 245, 0.47);
  font-size: 12px;
  line-height: 1.65;
}

.footer-legal > p + p {
  margin-top: 7px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  color: rgba(245, 245, 245, 0.38);
  font-family: var(--condensed);
  font-size: 9px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

/* Legal pages */
.legal-page {
  background: var(--paper);
}

.legal-main {
  padding: clamp(154px, 17vw, 210px) 0 var(--section);
}

.legal-title {
  max-width: 780px;
}

.legal-title h1 {
  max-width: 10ch;
  font-size: clamp(48px, 7vw, 88px);
}

.legal-date {
  margin: 24px 0 0;
  color: var(--slate);
  font-family: var(--condensed);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(180px, 0.3fr) minmax(0, 0.7fr);
  gap: clamp(56px, 10vw, 130px);
  margin-top: clamp(66px, 9vw, 112px);
  align-items: start;
}

.legal-aside {
  position: sticky;
  top: calc(var(--header-height) + 30px);
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.legal-aside a {
  border-bottom: 1px solid var(--line);
  padding: 11px 0;
  color: var(--muted);
  font-family: var(--condensed);
  font-size: 10px;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-decoration: none;
  text-transform: uppercase;
}

.legal-aside a:hover,
.legal-aside a:focus-visible {
  color: var(--navy);
}

.legal-content {
  max-width: 760px;
}

.legal-content section {
  padding: 0;
}

.legal-content section + section {
  margin-top: 66px;
  padding-top: 66px;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin: 0 0 27px;
  font-size: clamp(31px, 3.7vw, 48px);
}

.legal-content h3 {
  margin: 32px 0 14px;
  font-size: 25px;
}

.legal-content p,
.legal-content li {
  color: #454b51;
}

.legal-content p {
  margin: 0;
}

.legal-content p + p,
.legal-content ul + p,
.legal-content ol + p {
  margin-top: 18px;
}

.legal-content ul,
.legal-content ol {
  margin: 20px 0 0;
  padding-left: 23px;
}

.legal-content li + li {
  margin-top: 9px;
}

.legal-content a {
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-note {
  margin-top: 30px !important;
  border-left: 1px solid var(--navy);
  padding-left: 20px;
  color: var(--slate) !important;
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
}

/* Error page */
.error-page {
  display: flex;
  min-height: 100svh;
  align-items: center;
  background: var(--navy);
  color: var(--paper);
}

.error-content {
  padding-block: 150px 80px;
}

.error-content h1 {
  max-width: 10ch;
}

.error-content p:not(.eyebrow) {
  max-width: 560px;
  margin: 30px 0 0;
  color: rgba(245, 245, 245, 0.72);
}

.error-content .button {
  margin-top: 36px;
}

/* Motion */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.js .mandate:nth-child(2),
.js .step:nth-child(2) {
  transition-delay: 70ms;
}

.js .mandate:nth-child(3),
.js .step:nth-child(3) {
  transition-delay: 140ms;
}

.js .step:nth-child(4) {
  transition-delay: 210ms;
}

/* Deliberate, one-screen progression for desktop trackpads and mouse wheels. */
@media (min-width: 1021px) and (min-height: 760px) and (pointer: fine) {
  html {
    scroll-behavior: auto;
    scroll-padding-top: 0;
    scroll-snap-type: y mandatory;
  }

  .hero,
  main > .section {
    min-height: 100svh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  main > .section {
    display: grid;
    align-items: center;
    padding-top: max(calc(var(--header-height) + 38px), 8vh);
    padding-bottom: max(54px, 7vh);
  }

  .mandate-list,
  .steps {
    margin-top: clamp(46px, 6vh, 68px);
  }

  .mandate {
    min-height: min(330px, 36vh);
  }

  .step {
    min-height: min(300px, 33vh);
  }

  .matter-map,
  .director-photo {
    max-height: calc(100svh - var(--header-height) - 112px);
  }

  .coordination-diagram,
  .director-photo img {
    max-height: calc(100svh - var(--header-height) - 112px);
    object-fit: contain;
  }

  .site-footer {
    scroll-snap-align: end;
  }
}

/* Tablet */
@media (max-width: 1020px) {
  :root {
    --gutter: clamp(24px, 5.8vw, 54px);
  }

  .desktop-nav {
    gap: 20px;
  }

  .desktop-nav a {
    font-size: 9px;
    letter-spacing: 0.14em;
  }

  .role-grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
    gap: 60px;
  }

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

  .mandate,
  .mandate + .mandate {
    display: grid;
    min-height: 0;
    grid-template-columns: 72px minmax(190px, 0.75fr) minmax(0, 1.25fr);
    gap: 24px;
    align-items: start;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 30px 0;
  }

  .mandate-number,
  .mandate p:last-child {
    margin: 0;
  }

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

  .step {
    border-bottom: 1px solid var(--line);
  }

  .step:nth-child(2) {
    border-right: 0;
    padding-right: 0;
  }

  .step:nth-child(3) {
    padding-left: 0;
  }

  .director-grid {
    column-gap: 74px;
  }
}

/* Mobile and portrait tablet */
@media (max-width: 820px) {
  :root {
    --header-height: 78px;
    --section: clamp(72px, 16vw, 112px);
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .wordmark {
    width: 142px;
  }

  .hero-inner {
    min-height: 100svh;
    align-items: flex-start;
    justify-content: center;
    padding-top: 136px;
    padding-bottom: 122px;
  }

  .hero-content {
    width: 100%;
  }

  .architecture {
    right: auto;
    bottom: clamp(28px, 5svh, 46px);
    left: -21%;
    width: 142%;
    height: auto;
    opacity: 0.4;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .need-grid,
  .role-grid,
  .director-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .need-grid {
    gap: 42px;
  }

  .role-grid {
    gap: 72px;
  }

  .role-copy > p:not(.eyebrow) {
    margin-top: 28px;
  }

  .matter-map {
    justify-self: center;
  }

  .coordination-diagram {
    width: min(100%, 650px);
    margin-inline: auto;
  }

  .director-grid {
    grid-template-areas:
      "heading"
      "photo"
      "copy";
    gap: 42px;
  }

  .director-photo {
    width: min(100%, 430px);
  }

  .director-copy {
    max-width: 680px;
  }

  .director h2 {
    white-space: normal;
  }

  .director-heading {
    align-self: auto;
  }

  .contact-grid {
    gap: 64px;
  }

  .contact-card {
    max-width: 520px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .legal-aside {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 22px;
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: clamp(46px, 15.2vw, 68px);
    line-height: 0.97;
  }

  h2 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .eyebrow {
    margin-bottom: 22px;
    font-size: 10px;
    letter-spacing: 0.22em;
  }

  .hero-copy {
    margin-top: 28px;
    font-size: 16px;
    line-height: 1.64;
  }

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

  .signals li {
    grid-template-columns: 43px 1fr;
    padding: 16px 0;
  }

  .diagram-labels {
    font-size: 22px;
    letter-spacing: 2px;
  }

  .mandate,
  .mandate + .mandate {
    display: block;
    padding: 29px 0 34px;
  }

  .mandate-number {
    margin-bottom: 20px;
  }

  .mandate p:last-child {
    margin-top: 18px;
  }

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

  .step,
  .step + .step,
  .step:nth-child(3) {
    min-height: 0;
    border-right: 0;
    padding: 28px 0 34px;
  }

  .step-number {
    margin-bottom: 18px;
  }

  .step h3 {
    max-width: none;
  }

  .director-photo {
    width: 100%;
  }

  .director-photo::before {
    display: none;
  }

  .director-name {
    margin-top: 30px;
  }

  .footer-main,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

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

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

  .wordmark {
    width: 132px;
  }

  .hero-inner {
    padding-top: 126px;
  }

  .button {
    width: 100%;
  }

  .diagram-labels {
    font-size: 23px;
    letter-spacing: 1.6px;
  }
}

/* Very short phones cannot fit the full proposition, CTA and illustration
   without sacrificing legibility. Keep the content intact and remove only the
   decorative skyline at this height. */
@media (max-width: 620px) and (max-height: 720px) {
  .hero-inner {
    padding-top: 108px;
    padding-bottom: 48px;
  }

  .architecture {
    display: none;
  }
}

@media (orientation: landscape) and (max-height: 560px) {
  .hero,
  .hero-inner {
    min-height: 640px;
  }

  .architecture {
    height: auto;
  }
}

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

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

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

@media print {
  .site-header,
  .mobile-nav,
  .button,
  .architecture {
    display: none !important;
  }

  body,
  .role,
  .director,
  .site-footer {
    background: #fff !important;
    color: #000 !important;
  }

  .section {
    padding: 40px 0;
  }

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