@font-face {
  font-family: "Hanken Grotesk";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/fonts/27f9b812-dcc2-4834-8557-3eb2930254c4.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Hanken Grotesk";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/fonts/7a71ae00-899c-4fe8-9607-8d9e2ff60381.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Noto Serif Ethiopic";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("/fonts/4853332a-07d8-43d3-a1f2-be11c0f07c9e.woff2") format("woff2");
  unicode-range: U+030E, U+1200-1399, U+2D80-2DDE, U+AB01-AB2E, U+1E7E0-1E7E6, U+1E7E8-1E7EB, U+1E7ED-1E7EE, U+1E7F0-1E7FE;
}

:root {
  --night: #071426;
  --night-raised: #0e2038;
  --paper: #f3f5f7;
  --white: #ffffff;
  --ink: #101b2c;
  --muted: #526176;
  --line: #c8d1dc;
  --line-dark: #31445e;
  --blue: #315cff;
  --blue-dark: #1737c7;
  --coral: #ff674f;
  --coral-dark: #a92f24;
  --coral-soft: #ffd7d0;
  --mist: #dfe6ee;
  --max: 1440px;
  --gutter: clamp(22px, 4vw, 68px);
  --sans: "Hanken Grotesk", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --cc-font-family: var(--sans);
  --cc-modal-border-radius: 2px;
  --cc-btn-border-radius: 0;
  --cc-bg: var(--white);
  --cc-primary-color: var(--ink);
  --cc-secondary-color: var(--muted);
  --cc-btn-primary-bg: var(--blue);
  --cc-btn-primary-color: var(--white);
  --cc-btn-primary-border-color: var(--blue);
  --cc-btn-primary-hover-bg: var(--blue-dark);
  --cc-btn-primary-hover-color: var(--white);
  --cc-btn-primary-hover-border-color: var(--blue-dark);
  --cc-btn-secondary-bg: var(--white);
  --cc-btn-secondary-color: var(--ink);
  --cc-btn-secondary-border-color: var(--ink);
  --cc-btn-secondary-hover-bg: var(--mist);
  --cc-btn-secondary-hover-color: var(--ink);
  --cc-btn-secondary-hover-border-color: var(--ink);
  --cc-separator-border-color: var(--line);
  --cc-toggle-on-bg: var(--blue);
  --cc-toggle-off-bg: var(--muted);
  --cc-toggle-readonly-bg: var(--line);
  --cc-cookie-category-block-bg: var(--paper);
  --cc-cookie-category-block-border: var(--line);
  --cc-cookie-category-block-hover-bg: var(--mist);
  --cc-cookie-category-block-hover-border: var(--line);
  --cc-footer-bg: var(--paper);
  --cc-footer-border-color: var(--line);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

a:hover {
  text-decoration-thickness: 2px;
}

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

::selection {
  background: var(--coral);
  color: var(--night);
}

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

h1,
h2,
h3 {
  font-weight: 600;
  letter-spacing: -0.045em;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--coral);
  color: var(--night);
  font-weight: 700;
  transform: translateY(-160%);
}

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

.site-shell {
  min-height: 100vh;
  overflow: clip;
}

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 0.8fr 2fr auto;
  align-items: center;
  min-height: 82px;
  padding: 0 var(--gutter);
  background: var(--night);
  border-bottom: 1px solid var(--line-dark);
  color: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
  color: var(--white);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  width: 24px;
  height: 24px;
  border: 1px solid var(--coral);
  transform: rotate(45deg);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  background: var(--coral);
}

.brand-mark::before {
  top: 50%;
  left: 4px;
  width: 14px;
  height: 1px;
}

.brand-mark::after {
  top: 4px;
  left: 50%;
  width: 1px;
  height: 14px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3vw, 48px);
}

.site-nav a {
  color: #cbd7e6;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--white);
}

.header-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  background: var(--coral);
  color: var(--night);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.header-contact:hover {
  background: var(--white);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px;
  background: transparent;
  border: 1px solid var(--line-dark);
  color: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 5px 0;
  background: currentColor;
}

.signal-strip {
  display: flex;
  align-items: center;
  min-height: 44px;
  overflow: hidden;
  background: var(--blue);
  color: var(--white);
  border-bottom: 1px solid #6681ff;
}

.signal-label {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  align-self: stretch;
  display: flex;
  align-items: center;
  padding: 0 var(--gutter);
  background: var(--coral);
  color: var(--night);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signal-track {
  display: flex;
  width: max-content;
  min-width: 200%;
  animation: signal-move 34s linear infinite;
}

.signal-track span {
  display: block;
  flex: 0 0 auto;
  padding-left: 34px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

@keyframes signal-move {
  to { transform: translateX(-50%); }
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 126px));
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(280px, 0.72fr);
  background: var(--night);
  color: var(--white);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(72px, 10vw, 150px) var(--gutter) clamp(80px, 9vw, 130px);
}

.kicker,
.section-kicker,
.breadcrumbs,
.meta-label,
.route-label {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.kicker,
.section-kicker {
  color: var(--coral);
}

.section-kicker {
  color: var(--coral-dark);
}

.hero .kicker,
.page-hero .kicker,
.detail-hero .kicker,
.manifesto .section-kicker,
.approach-section .section-kicker,
.legal-hero .section-kicker {
  color: var(--coral);
}

.project-brief .section-kicker {
  color: var(--night);
}

.hero h1 {
  max-width: 1000px;
  margin: 20px 0 30px;
  font-size: clamp(60px, 8.8vw, 142px);
  line-height: 0.86;
}

.hero h1 .outline-word {
  color: transparent;
  -webkit-text-stroke: 1.5px #9ab0ca;
}

.hero-deck {
  max-width: 710px;
  margin-bottom: 38px;
  color: #c8d5e5;
  font-size: clamp(20px, 2.1vw, 30px);
  line-height: 1.34;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid var(--blue);
  background: var(--blue);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.button::after {
  content: "↗";
  font-size: 20px;
  font-weight: 400;
}

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

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

.button.secondary:hover {
  background: var(--night-raised);
}

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

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

.hero-atlas {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  min-height: 100%;
  border-left: 1px solid var(--line-dark);
  overflow: hidden;
}

.hero-atlas::before {
  content: "አ";
  position: absolute;
  z-index: 0;
  right: -0.08em;
  bottom: -0.24em;
  color: var(--coral);
  font-family: "Noto Serif Ethiopic", serif;
  font-size: clamp(290px, 34vw, 570px);
  line-height: 1;
  opacity: 0.12;
}

.script-cell {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 120px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.script-cell:nth-child(2n) {
  border-right: 0;
}

.script-cell b {
  font-size: clamp(38px, 4vw, 68px);
  font-weight: 500;
  line-height: 1;
}

.script-cell small {
  color: #8297b1;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.script-cell.coral {
  background: var(--coral);
  color: var(--night);
}

.script-cell.coral small {
  color: #5b2118;
}

.section {
  padding: clamp(82px, 10vw, 150px) var(--gutter);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(230px, 0.7fr) minmax(0, 1.5fr);
  gap: clamp(36px, 8vw, 130px);
  align-items: start;
  margin-bottom: clamp(48px, 7vw, 100px);
}

.section-head h2,
.manifesto h2,
.project-brief h2,
.page-hero h1,
.detail-hero h1,
.legal-page h1 {
  margin-bottom: 0;
  font-size: clamp(48px, 7vw, 108px);
  line-height: 0.94;
}

.section-intro {
  max-width: 740px;
  color: var(--muted);
  font-size: clamp(20px, 2.4vw, 31px);
  line-height: 1.35;
}

.capability-field {
  border-top: 1px solid var(--line);
}

.capability-route {
  display: grid;
  grid-template-columns: minmax(220px, 0.78fr) minmax(260px, 1.15fr) minmax(220px, 0.9fr) 44px;
  gap: clamp(20px, 4vw, 64px);
  align-items: start;
  padding: 34px 0 38px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: background 180ms ease, padding 180ms ease;
}

.capability-route:hover,
.capability-route:focus-visible {
  margin: 0 calc(var(--gutter) * -0.35);
  padding-right: calc(var(--gutter) * 0.35);
  padding-left: calc(var(--gutter) * 0.35);
  background: var(--white);
}

.capability-route h3 {
  margin: 0;
  font-size: clamp(27px, 3vw, 45px);
  line-height: 1.04;
}

.capability-route p {
  margin: 0;
  color: var(--muted);
}

.route-links {
  color: var(--blue-dark);
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.75;
}

.route-arrow {
  color: var(--blue);
  font-size: 31px;
  line-height: 1;
}

.manifesto {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  background: var(--blue);
  color: var(--white);
}

.manifesto-copy {
  padding: clamp(76px, 10vw, 145px) var(--gutter);
}

.manifesto h2 {
  max-width: 940px;
}

.manifesto h2 span {
  color: var(--coral-soft);
}

.manifesto-aside {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(52px, 7vw, 100px) var(--gutter);
  background: var(--night);
  border-left: 1px solid var(--line-dark);
}

.manifesto-aside p {
  max-width: 430px;
  color: #c8d5e5;
  font-size: 20px;
}

.client-section {
  background: var(--white);
}

.client-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  list-style: none;
}

.client-list li {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(48px, 10vw, 160px);
}

.about-grid .lead {
  max-width: 920px;
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.about-grid .body-copy {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  color: var(--muted);
}

.project-brief {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  background: var(--coral);
  color: var(--night);
}

.project-brief-copy,
.project-brief-action {
  padding: clamp(72px, 9vw, 130px) var(--gutter);
}

.project-brief-copy h2 {
  max-width: 900px;
}

.project-brief-action {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-left: 1px solid rgba(7, 20, 38, 0.28);
}

.project-brief-action p {
  max-width: 430px;
  font-size: 20px;
}

.site-footer {
  display: grid;
  grid-template-columns: 0.8fr 1.5fr auto;
  gap: 36px;
  padding: 48px var(--gutter);
  background: var(--night);
  border-top: 1px solid var(--line-dark);
  color: #9fb0c4;
  font-size: 13px;
}

.site-footer strong {
  color: var(--white);
  letter-spacing: 0.12em;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 25px;
}

.site-footer a,
.privacy-settings {
  padding: 0;
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer a:hover,
.privacy-settings:hover {
  color: var(--white);
}

/* Capability directory, hubs, and detail pages */
.page-hero,
.detail-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.45fr);
  min-height: 610px;
  background: var(--night);
  color: var(--white);
  overflow: hidden;
}

.page-hero-copy,
.detail-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(80px, 10vw, 150px) var(--gutter) clamp(70px, 8vw, 110px);
}

.breadcrumbs {
  margin-bottom: 36px;
  color: #91a5bd;
}

.breadcrumbs a {
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--white);
}

.page-hero h1,
.detail-hero h1 {
  max-width: 1050px;
  margin-bottom: 28px;
  overflow-wrap: anywhere;
}

.page-hero .hero-deck,
.detail-hero .hero-deck {
  margin-bottom: 0;
}

.page-hero-mark,
.detail-hero-mark {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  background: var(--blue);
  border-left: 1px solid #6681ff;
  color: var(--white);
  font-size: clamp(130px, 17vw, 290px);
  font-weight: 500;
  line-height: 1;
  overflow: hidden;
}

.page-hero-mark.ethiopic,
.detail-hero-mark.ethiopic {
  font-family: "Noto Serif Ethiopic", serif;
}

.page-hero-mark::after,
.detail-hero-mark::after {
  content: attr(data-label);
  position: absolute;
  right: 20px;
  bottom: 20px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.directory-intro {
  background: var(--white);
}

.hub-services {
  background: var(--white);
}

.service-route {
  display: grid;
  grid-template-columns: 70px minmax(250px, 0.8fr) minmax(300px, 1.2fr) 50px;
  gap: clamp(20px, 4vw, 60px);
  align-items: start;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  text-decoration: none;
}

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

.service-route:hover h3 {
  color: var(--blue);
}

.service-route .route-label {
  color: var(--blue);
}

.service-route h3 {
  margin: 0;
  font-size: clamp(29px, 3vw, 45px);
  line-height: 1.05;
}

.service-route p {
  color: var(--muted);
}

.signal-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  background: var(--mist);
}

.signal-panel-title,
.signal-panel-list {
  padding: clamp(65px, 8vw, 115px) var(--gutter);
}

.signal-panel-title {
  border-right: 1px solid var(--line);
}

.signal-panel h2 {
  margin: 16px 0 0;
  font-size: clamp(41px, 5.5vw, 78px);
  line-height: 0.98;
}

.signal-panel-list ul,
.deliverable-list,
.plain-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.signal-panel-list li,
.deliverable-list li {
  position: relative;
  padding: 19px 0 19px 36px;
  border-bottom: 1px solid var(--line);
  font-size: clamp(19px, 2vw, 27px);
  font-weight: 600;
  line-height: 1.25;
}

.signal-panel-list li:first-child,
.deliverable-list li:first-child {
  border-top: 1px solid var(--line);
}

.signal-panel-list li::before,
.deliverable-list li::before {
  content: "↳";
  position: absolute;
  left: 0;
  color: var(--blue);
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.outcome {
  min-height: 270px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.outcome .meta-label {
  color: var(--blue);
}

.outcome h3 {
  margin: 70px 0 12px;
  font-size: 27px;
  line-height: 1.1;
}

.outcome p {
  color: var(--muted);
}

.detail-intro {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(48px, 10vw, 160px);
  background: var(--white);
}

.detail-intro .challenge {
  max-width: 900px;
  font-size: clamp(29px, 4vw, 56px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.detail-intro .detail-copy {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  color: var(--muted);
}

.approach-section {
  background: var(--night);
  color: var(--white);
}

.approach-section .section-head h2 {
  color: var(--white);
}

.approach-section .section-intro {
  color: #b9c8d9;
}

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

.approach-step {
  min-height: 350px;
  padding: 34px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.approach-step .meta-label {
  color: var(--coral);
}

.approach-step h3 {
  margin: 100px 0 16px;
  font-size: 31px;
  line-height: 1.05;
}

.approach-step p {
  color: #aebfd2;
}

.deliverables {
  display: grid;
  grid-template-columns: minmax(230px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(50px, 9vw, 150px);
  background: var(--white);
}

.deliverables h2 {
  margin: 16px 0 0;
  font-size: clamp(41px, 5.5vw, 78px);
  line-height: 0.98;
}

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

.related-route {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.related-route:hover {
  background: var(--white);
}

.related-route h3 {
  max-width: 420px;
  margin: 0;
  font-size: 31px;
  line-height: 1.05;
}

.related-route span:last-child {
  color: var(--blue);
  font-size: 28px;
}

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

.legal-page .site-header,
.legal-page .site-footer {
  max-width: none;
  margin: 0;
}

.legal-page .back-link {
  color: #cbd7e6;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.legal-page .back-link:hover {
  color: var(--white);
}

.legal-page .legal-hero {
  padding: clamp(80px, 10vw, 140px) var(--gutter) clamp(65px, 7vw, 100px);
  background: var(--night);
  color: var(--white);
}

.legal-page h1,
.legal-page h2,
.legal-page h3 {
  font-family: var(--sans);
}

.legal-page .legal-hero p {
  color: #aebfd2;
}

.legal-page main {
  max-width: 1050px;
  margin: 0 auto;
  padding: 70px var(--gutter) 120px;
}

.legal-page main h2 {
  margin: 68px 0 18px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: clamp(31px, 4vw, 48px);
  line-height: 1.05;
}

.legal-page main h3 {
  margin: 31px 0 10px;
  font-size: 24px;
  letter-spacing: -0.02em;
}

.legal-page main p,
.legal-page main li {
  max-width: 830px;
}

.legal-page .summary {
  margin: 0 0 50px;
  padding: 28px;
  background: var(--white);
  border-left: 6px solid var(--blue);
}

.legal-page .summary strong {
  display: block;
  margin-bottom: 8px;
}

.legal-page .summary p {
  margin: 0;
}

.legal-page .table-wrap {
  overflow-x: auto;
  margin: 25px 0;
  border: 1px solid var(--line);
}

.legal-page table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  background: var(--white);
  font-size: 14px;
}

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

.legal-page th {
  background: var(--mist);
}

.legal-page .privacy-settings {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  margin-top: 10px;
  padding: 0 20px;
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}

/* 404 */
.not-found {
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  background: var(--night);
  color: var(--white);
}

.not-found-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px var(--gutter);
}

.not-found h1 {
  margin: 18px 0 25px;
  font-size: clamp(70px, 12vw, 180px);
  line-height: 0.86;
}

.not-found p {
  max-width: 640px;
  color: #b9c8d9;
  font-size: 21px;
}

.not-found-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--coral);
  color: var(--night);
  font-size: clamp(170px, 26vw, 430px);
  font-weight: 600;
}

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

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 82px 0 0;
    display: none;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    gap: 0;
    padding: 30px var(--gutter);
    background: var(--night);
  }

  .nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 22px 0;
    border-bottom: 1px solid var(--line-dark);
    font-size: 25px;
  }

  .header-contact {
    margin-top: 12px;
  }

  .header-contact + .nav-toggle {
    margin-left: auto;
  }

  .site-header > .header-contact {
    display: none;
  }

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

  .hero-atlas {
    grid-template-columns: repeat(4, 1fr);
    min-height: 260px;
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .script-cell {
    min-height: 130px;
  }

  .capability-route {
    grid-template-columns: minmax(210px, 0.8fr) minmax(260px, 1.2fr) 42px;
  }

  .capability-route .route-links {
    display: none;
  }

  .manifesto,
  .project-brief {
    grid-template-columns: 1fr;
  }

  .manifesto-aside,
  .project-brief-action {
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .client-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-hero,
  .detail-hero {
    grid-template-columns: 1fr;
  }

  .page-hero-mark,
  .detail-hero-mark {
    min-height: 230px;
    border-top: 1px solid #6681ff;
    border-left: 0;
  }

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

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .signal-label {
    padding: 0 14px;
  }

  .hero h1 {
    font-size: clamp(52px, 17vw, 84px);
  }

  .page-hero h1,
  .detail-hero h1 {
    font-size: clamp(42px, 12.5vw, 64px);
  }

  .hero-atlas {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-head,
  .about-grid,
  .detail-intro,
  .deliverables,
  .signal-panel {
    grid-template-columns: 1fr;
  }

  .section-head {
    gap: 22px;
  }

  .capability-route {
    grid-template-columns: 1fr 35px;
    gap: 12px;
    padding: 28px 0;
  }

  .capability-route .route-label {
    grid-column: 1 / -1;
  }

  .capability-route p {
    grid-column: 1;
  }

  .route-arrow {
    grid-column: 2;
    grid-row: 2;
  }

  .capability-route:hover,
  .capability-route:focus-visible {
    margin: 0;
    padding-right: 0;
    padding-left: 0;
    background: transparent;
  }

  .client-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid .body-copy,
  .detail-intro .detail-copy {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .service-route {
    grid-template-columns: 42px 1fr 30px;
    gap: 14px;
  }

  .service-route p {
    grid-column: 2 / -1;
  }

  .service-route .route-arrow {
    grid-column: 3;
    grid-row: 1;
  }

  .signal-panel-title {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .outcome-grid,
  .approach-grid,
  .related-routes {
    grid-template-columns: 1fr;
  }

  .outcome,
  .approach-step {
    min-height: 0;
  }

  .outcome h3,
  .approach-step h3 {
    margin-top: 55px;
  }

  .not-found {
    grid-template-columns: 1fr;
  }

  .not-found-mark {
    min-height: 240px;
  }
}

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

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