.page {
  --blue: #0047ab;
  --blue-dark: #0047ab;
  --blue-soft: #eaf1fb;
  --green: #2f7650;
  --ink: #132c3a;
  --muted: #596a72;
  --line: #dbe3e1;
  --mist: #f3f6f4;
  --white: #ffffff;
  --font-body: var(--font-geist-sans), "Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
  --font-display: var(--font-body);
  --side-pad: max(48px, calc((100vw - 1480px) / 2));
  --container: calc(100vw - var(--side-pad) - var(--side-pad));
  min-height: 100vh;
  overflow-x: clip;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
}

.page * {
  box-sizing: border-box;
}

.page section[id] {
  scroll-margin-top: 104px;
}

.page :where(a, button, summary):focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.skipLink {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 12px 16px;
  color: var(--white);
  background: var(--blue-dark);
  transform: translateY(-150%);
}

.skipLink:focus {
  transform: translateY(0);
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  min-height: 88px;
  display: grid;
  grid-template-columns: 205px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 0 var(--side-pad);
  border-bottom: 1px solid rgba(219, 227, 225, 0.88);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
}

.brand {
  display: block;
  width: 188px;
}

.brand img {
  width: 100%;
  height: auto;
  display: block;
}

.desktopNav {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 2.3vw, 38px);
}

.desktopNav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}

.desktopNav a:hover {
  color: var(--blue);
}

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

.languageToggle,
.headerCta,
.mobileMenu summary {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  font: inherit;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.languageToggle {
  min-width: 54px;
  padding: 0 13px;
  color: var(--blue);
  background: var(--white);
  cursor: pointer;
}

.languageToggle:hover {
  border-color: var(--blue);
}

.headerCta {
  padding: 0 18px;
  border-color: var(--blue);
  color: var(--white);
  background: var(--blue);
}

.headerCta:hover {
  background: var(--blue-dark);
}

.mobileMenu {
  display: none;
  position: relative;
}

.mobileMenu summary {
  min-width: 74px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
  list-style: none;
}

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

.mobileMenu nav {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(320px, calc(100vw - 32px));
  display: grid;
  padding: 10px 18px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 20px 50px rgba(10, 46, 104, 0.16);
}

.mobileMenu nav a {
  min-height: 48px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  text-decoration: none;
}

.mobileMenu nav a:last-child {
  justify-content: center;
  margin: 10px 0 4px;
  border: 0;
  color: var(--white);
  background: var(--blue);
  font-weight: 700;
}

.eyebrow {
  margin: 0;
  color: var(--blue);
  font-size: clamp(12px, 0.8vw, 14px);
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.sectionHeading h2,
.roleIntro h2,
.workIntro h2,
.insightPanel h2,
.finalCta h2 {
  margin: 18px 0 0;
  font-family: var(--font-display);
  font-size: clamp(48px, 5.2vw, 76px);
  font-weight: 610;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.sectionHeading > h2:first-child {
  margin-top: 0;
}

.sectionHeading > p:last-child,
.roleIntro > p:last-child,
.workIntro > p:last-child {
  max-width: 720px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.primaryButton,
.lightButton {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid var(--blue);
  color: var(--white);
  background: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.025em;
  text-decoration: none;
}

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

.textLink,
.lightLink {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.textLink:hover {
  color: var(--blue);
}

.hero {
  width: var(--container);
  min-height: 700px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(400px, 0.92fr);
  align-items: stretch;
}

.heroCopy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 82px clamp(44px, 5vw, 82px) 64px 0;
}

.hero h1 {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--blue-dark);
  font-family: var(--font-display);
  font-size: clamp(66px, 7.2vw, 102px);
  font-weight: 620;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.hero h1 span {
  display: block;
}

.page:lang(zh-CN) :is(
  .hero h1,
  .sectionHeading h2,
  .roleIntro h2,
  .workIntro h2,
  .insightPanel h2,
  .finalCta h2
) {
  font-family: var(--font-body);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.heroBody {
  max-width: 620px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.heroActions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  margin-top: 34px;
}

.heroImage,
.editorialImage {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--mist);
}

.heroImage {
  min-height: 620px;
  margin: 40px 0;
}

.heroImage::after,
.editorialImage::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.heroImage::after {
  background: rgba(10, 46, 104, 0.05);
}

.heroImage img,
.editorialImage img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.heroImage img {
  object-position: 54% center;
}

.focus,
.connected,
.work {
  width: var(--container);
  margin: 0 auto;
}

.roleIntro,
.workIntro {
  display: grid;
  grid-template-columns: minmax(0, 680px) minmax(320px, 1fr);
  grid-template-areas:
    "eyebrow ."
    "title intro";
  column-gap: clamp(56px, 7vw, 112px);
  row-gap: 18px;
  align-items: start;
}

.roleIntro > .eyebrow,
.workIntro > .eyebrow {
  grid-area: eyebrow;
}

.roleIntro h2,
.workIntro h2 {
  grid-area: title;
  margin-top: 0;
}

.roleIntro > p:last-child,
.workIntro > p:last-child {
  grid-area: intro;
  max-width: 480px;
  margin-top: 0;
  padding-top: 5px;
}

.roleIntro.headingWithoutEyebrow {
  grid-template-areas: "title intro";
  row-gap: 0;
}

.numberedItem {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
}

.numberedItem > span,
.numberedItem h3 {
  font-family: var(--font-body);
  font-size: var(--numbered-title-size, 30px);
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.numberedItem > span {
  grid-column: 1;
  grid-row: 1;
  color: var(--blue);
  font-variant-numeric: tabular-nums;
}

.numberedItem > div {
  display: contents;
}

.numberedItem h3 {
  grid-column: 1;
  grid-row: 2;
  margin: 18px 0 0;
  color: var(--ink);
}

.numberedItem p {
  grid-column: 1;
  grid-row: 3;
}

.unnumberedItem h3 {
  grid-row: 1;
  margin-top: 0;
}

.unnumberedItem p {
  grid-row: 2;
}

.stageGrid p,
.differenceList p,
.roleSteps p,
.connectedGrid p,
.audienceGrid p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.focus {
  padding: 112px 0 118px;
}

.focus::before {
  position: absolute;
  right: 0;
  left: 0;
  z-index: -1;
  height: 100%;
  background: var(--mist);
  content: "";
}

.focus {
  position: relative;
}

.focus::after {
  position: absolute;
  top: 0;
  right: calc((100vw - var(--container)) / -2);
  bottom: 0;
  left: calc((100vw - var(--container)) / -2);
  z-index: -2;
  background: var(--mist);
  content: "";
}

.focusIntro {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(440px, 1.12fr);
  gap: clamp(48px, 7vw, 104px);
  align-items: center;
}

.focusIntro .editorialImage {
  min-height: 0;
  height: auto;
  aspect-ratio: 1672 / 941;
  background: transparent;
}

.focusIntro .editorialImage img {
  object-position: center;
}

.stageGrid {
  --numbered-title-size: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 76px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stageGrid article {
  position: relative;
  min-height: 310px;
  padding: 30px 34px 34px;
}

.stageGrid article + article {
  border-left: 1px solid var(--line);
}

.stageTag {
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stageGrid .numberedItem {
  margin-top: 42px;
}

.alternativeRoute,
.projectLens,
.participation {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.alternativeRoute span,
.projectLens span,
.participation span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.alternativeRoute p,
.projectLens p,
.participation p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
}

.difference {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.differenceMedia {
  position: relative;
  min-width: 0;
  background: var(--white);
}

.differenceMedia .editorialImage {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1672 / 941;
  margin: 0;
}

.differenceMedia .editorialImage img {
  object-position: center;
}

.differenceCopy {
  padding: clamp(56px, 4.5vw, 80px) 0 72px clamp(48px, 5vw, 88px);
}

.differenceCopy .sectionHeading > p:last-child {
  max-width: 520px;
}

.projectChain {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 36px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.projectChain li {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 20px 16px 20px 0;
}

.projectChain li + li {
  padding-left: 16px;
}

.projectChain li:not(:last-child)::after {
  margin-left: auto;
  color: var(--blue);
  content: "→";
  font-size: 18px;
  line-height: 1;
}

.projectChain strong {
  color: var(--ink);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.3;
}

.differenceList {
  --numbered-title-size: clamp(21px, 1.45vw, 26px);
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.differenceList article {
  min-height: 300px;
  padding: 32px clamp(24px, 2.2vw, 40px) 38px;
}

.differenceList article + article {
  border-left: 1px solid var(--line);
}

.differenceList p {
  max-width: none;
  margin-top: 18px;
}

.role {
  padding: 112px var(--side-pad) 108px;
  color: var(--white);
  background: var(--blue);
}

.role .eyebrow {
  color: var(--blue-soft);
}

.roleIntro h2,
.roleIntro > p:last-child {
  color: var(--white);
}

.roleIntro h2 {
  max-width: 680px;
  line-height: 1.08;
}

.roleIntro > p:last-child {
  max-width: 480px;
  color: rgba(255, 255, 255, 0.76);
}

.roleSteps {
  --numbered-title-size: 30px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 78px 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
  list-style: none;
}

.roleSteps li {
  min-height: 300px;
  padding: 28px 26px 32px;
}

.roleSteps li + li {
  border-left: 1px solid rgba(255, 255, 255, 0.26);
}

.roleSteps .numberedItem > span {
  color: var(--blue-soft);
}

.roleSteps .numberedItem h3 {
  color: var(--white);
}

.roleSteps p {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.72);
}

.projectLens {
  margin-top: 28px;
  border-bottom-color: rgba(255, 255, 255, 0.26);
}

.participation {
  margin-top: 28px;
  border-bottom-color: rgba(255, 255, 255, 0.26);
}

.projectLens span,
.participation span {
  color: var(--blue-soft);
}

.projectLens p,
.participation p {
  color: rgba(255, 255, 255, 0.82);
}

.connected {
  padding: 118px 0 110px;
}

.connected > .sectionHeading {
  display: block;
}

.connected > .sectionHeading h2 {
  max-width: 840px;
  margin-top: 18px;
}

.connectedGrid {
  --numbered-title-size: 38px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 68px;
}

.connectedGrid article {
  position: relative;
  min-height: 390px;
  padding: 34px 38px 40px;
  border-top: 5px solid var(--blue);
  background: var(--mist);
}

.connectedGrid article:last-child {
  border-top-color: var(--blue);
}

.connectedGrid article > span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.connectedGrid .numberedItem {
  max-width: 520px;
  margin-top: 58px;
}

.connectedGrid p {
  max-width: 600px;
}

.connectedClose {
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 14px;
  text-align: right;
}

.work {
  padding: 112px 0 118px;
  position: relative;
}

.work::after {
  position: absolute;
  top: 0;
  right: calc((100vw - var(--container)) / -2);
  bottom: 0;
  left: calc((100vw - var(--container)) / -2);
  z-index: -1;
  background: var(--mist);
  content: "";
}

.workIntro h2 {
  max-width: 900px;
}

.workIntro > p:last-child {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.audienceGrid {
  --numbered-title-size: 29px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 68px;
}

.audienceGrid article {
  min-height: 310px;
  padding: 32px 30px;
  border: 1px solid var(--line);
  background: var(--white);
}

.audienceGrid p {
  max-width: 560px;
}

.firstEngagement {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 72px;
  margin-top: 24px;
  padding: 44px 46px;
  color: var(--white);
  background: var(--blue-dark);
}

.firstEngagement .eyebrow {
  color: var(--blue-soft);
}

.firstEngagement ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 28px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.firstEngagement li {
  position: relative;
  padding-left: 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.55;
}

.firstEngagement li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--blue-soft);
  content: "";
}

.engagementAction {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

.engagementAction p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.65;
}

.engagementAction .primaryButton {
  color: var(--blue-dark);
  border-color: var(--white);
  background: var(--white);
}

.insightPanel {
  width: var(--container);
  margin: 0 auto;
  padding: 100px 0;
  color: var(--ink);
  background: var(--white);
  border-top: 4px solid var(--blue);
  border-bottom: 1px solid var(--line);
}

.insightPanel .eyebrow {
  color: var(--blue);
}

.insightPanel h2 {
  max-width: 980px;
  color: var(--blue-dark);
  font-size: clamp(42px, 4vw, 62px);
}

.insightPanel > p:not(.eyebrow) {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.insightPanel > div,
.finalCta > div:last-child > div {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  margin-top: 36px;
}

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

.lightLink {
  color: var(--white);
}

.insightPanel .lightButton {
  color: var(--white);
  border-color: var(--blue);
  background: var(--blue);
}

.insightPanel .lightButton:hover {
  border-color: var(--blue-dark);
  background: var(--blue-dark);
}

.insightPanel .lightLink {
  color: var(--blue-dark);
}

.finalCta {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
  gap: clamp(72px, 8vw, 132px);
  align-items: start;
  padding: 100px var(--side-pad);
  color: var(--white);
  background: var(--blue-dark);
}

.finalCta .eyebrow {
  color: var(--blue-soft);
}

.finalCta h2 {
  color: var(--white);
}

.contactIntro > p:last-child {
  max-width: 560px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.75;
}

.contactIntro > h2:first-child {
  margin-top: 0;
}

.contactActions {
  display: flex;
  min-height: 240px;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  justify-content: center;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.contactActions .primaryButton {
  color: var(--blue-dark);
  border-color: var(--white);
  background: var(--white);
}

.contactActions .textLink {
  color: var(--white);
}

.contactActions small {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  line-height: 1.6;
}

.contactForm {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 28px;
}

.contactForm label:not(.formConsent) {
  display: grid;
  gap: 10px;
}

.contactForm label > span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.contactForm input:not([type="checkbox"]),
.contactForm select,
.contactForm textarea {
  width: 100%;
  min-height: 48px;
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 0;
  outline: 0;
  color: var(--white);
  background: transparent;
  font: inherit;
}

.contactForm textarea {
  min-height: 120px;
  resize: vertical;
}

.contactForm select {
  color-scheme: light;
}

.contactForm select option {
  color: var(--ink);
  background: var(--white);
}

.contactForm select option:disabled {
  color: var(--muted);
}

.contactForm input:focus,
.contactForm select:focus,
.contactForm textarea:focus {
  border-bottom-color: var(--white);
  box-shadow: 0 2px 0 rgba(255, 255, 255, 0.9);
}

.formWide {
  grid-column: 1 / -1;
}

.formConsent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.formConsent input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin: 1px 0 0;
  accent-color: var(--white);
}

.formConsent span {
  letter-spacing: 0;
  text-transform: none;
}

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

.formAction {
  display: flex;
  gap: 24px;
  align-items: center;
}

.formAction button {
  min-height: 52px;
  flex: 0 0 auto;
  padding: 0 26px;
  border: 1px solid var(--white);
  color: var(--blue);
  background: var(--white);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.formAction small {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  line-height: 1.5;
}

.footer {
  min-height: 136px;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 34px;
  align-items: center;
  padding: 30px var(--side-pad);
  color: rgba(255, 255, 255, 0.64);
  background: var(--blue-dark);
  font-size: 11px;
}

.footer img {
  width: 170px;
  height: auto;
}

.footer p {
  margin: 0;
  text-align: center;
}

.footer > nav {
  display: flex;
  gap: 24px;
}

.footer a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--white);
  text-decoration: none;
}

@media (max-width: 1180px) {
  .page {
    --side-pad: 28px;
    --container: calc(100vw - var(--side-pad) - var(--side-pad));
  }

  .header {
    grid-template-columns: 180px 1fr auto;
    padding-inline: 28px;
  }

  .brand {
    width: 170px;
  }

  .desktopNav {
    gap: 18px;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.92fr);
  }

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

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

  .roleSteps li:nth-child(4) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.26);
  }

  .roleSteps li:nth-child(5) {
    border-top: 1px solid rgba(255, 255, 255, 0.26);
  }

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

  .differenceList article:nth-child(4) {
    border-left: 0;
  }

  .differenceList article:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }

  .insightPanel {
    padding-block: 82px;
  }
}

@media (max-width: 980px) {
  .page {
    --side-pad: 20px;
    --container: calc(100vw - var(--side-pad) - var(--side-pad));
  }

  .header {
    grid-template-columns: 1fr auto;
    min-height: 78px;
    gap: 18px;
    padding-inline: 20px;
  }

  .desktopNav,
  .headerCta {
    display: none;
  }

  .mobileMenu {
    display: block;
  }

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

  .heroCopy {
    min-height: 620px;
    padding: 74px 0 54px;
  }

  .heroImage {
    min-height: 560px;
    margin: 0;
    clip-path: none;
  }

  .roleIntro,
  .workIntro {
    grid-template-columns: 1fr;
    grid-template-areas:
      "eyebrow"
      "title"
      "intro";
    row-gap: 18px;
  }

  .roleIntro > p:last-child,
  .workIntro > p:last-child {
    padding-top: 0;
  }

  .roleIntro.headingWithoutEyebrow {
    grid-template-areas:
      "title"
      "intro";
  }

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

  .focusIntro .editorialImage {
    min-height: 0;
    height: auto;
    aspect-ratio: 1672 / 941;
  }

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

  .differenceMedia .editorialImage {
    position: relative;
    top: auto;
    height: auto;
    aspect-ratio: 1672 / 941;
    margin: 0;
  }

  .differenceCopy {
    padding: 72px var(--side-pad);
  }

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

  .roleSteps li:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.26);
  }

  .roleSteps li:nth-child(4) {
    border-left: 1px solid rgba(255, 255, 255, 0.26);
  }

  .roleSteps li:nth-child(5) {
    border-left: 0;
  }

  .firstEngagement,
  .finalCta {
    grid-template-columns: 1fr;
  }

  .finalCta {
    gap: 46px;
  }

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

  .footer > nav {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .page {
    --side-pad: 16px;
    --container: calc(100vw - var(--side-pad) - var(--side-pad));
  }

  .header {
    padding-inline: 16px;
  }

  .brand {
    width: 148px;
  }

  .languageToggle {
    min-width: 48px;
    padding-inline: 10px;
  }

  .heroCopy {
    min-height: 560px;
    padding-top: 58px;
  }

  .hero h1 {
    margin-top: 22px;
    font-size: clamp(44px, 13.8vw, 64px);
    line-height: 0.94;
  }

  .heroBody {
    margin-top: 26px;
    font-size: 16px;
  }

  .heroActions {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 30px;
  }

  .heroImage {
    min-height: 440px;
  }

  .sectionHeading h2,
  .roleIntro h2,
  .workIntro h2,
  .insightPanel h2,
  .finalCta h2 {
    font-size: clamp(38px, 11.5vw, 52px);
    line-height: 1;
  }

  .focus,
  .connected,
  .work {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .stageGrid,
  .connectedGrid,
  .audienceGrid {
    grid-template-columns: 1fr;
  }

  .stageGrid article,
  .stageGrid article + article {
    min-height: 0;
    padding: 28px 0 34px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .stageGrid article:first-child {
    border-top: 0;
  }

  .stageGrid article {
    padding-inline: 0;
  }

  .alternativeRoute,
  .projectLens,
  .participation {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

  .projectChain li,
  .projectChain li + li {
    padding: 16px 0;
    border-left: 0;
  }

  .projectChain li + li {
    border-top: 1px solid var(--line);
  }

  .projectChain li:not(:last-child)::after {
    content: "↓";
  }

  .focusIntro .editorialImage {
    min-height: 0;
    height: auto;
    aspect-ratio: 1672 / 941;
  }

  .differenceMedia .editorialImage {
    min-height: 0;
    height: auto;
    aspect-ratio: 1672 / 941;
  }

  .differenceCopy {
    padding: 64px 16px;
  }

  .differenceList {
    --numbered-title-size: 28px;
    grid-template-columns: 1fr;
  }

  .differenceList article,
  .differenceList article + article,
  .differenceList article:nth-child(4) {
    min-height: 0;
    padding: 28px 16px 34px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .differenceList article:first-child {
    border-top: 0;
  }

  .role {
    padding: 78px 16px;
  }

  .roleSteps {
    grid-template-columns: 1fr;
    margin-top: 54px;
  }

  .roleSteps li,
  .roleSteps li + li,
  .roleSteps li:nth-child(3),
  .roleSteps li:nth-child(4),
  .roleSteps li:nth-child(5) {
    min-height: 0;
    padding: 26px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.26);
    border-left: 0;
  }

  .roleSteps li:first-child {
    border-top: 0;
  }

  .connectedGrid,
  .audienceGrid {
    gap: 14px;
  }

  .connectedGrid article,
  .audienceGrid article {
    min-height: 0;
    padding: 28px 24px 32px;
  }

  .connectedGrid {
    --numbered-title-size: 32px;
  }

  .audienceGrid {
    --numbered-title-size: 28px;
  }

  .connectedClose {
    text-align: left;
  }

  .firstEngagement {
    gap: 42px;
    padding: 34px 24px;
  }

  .firstEngagement ul {
    grid-template-columns: 1fr;
  }

  .insightPanel {
    padding: 78px 0;
  }

  .finalCta {
    padding: 78px 16px;
  }

  .contactActions {
    min-height: 0;
    padding: 28px 24px;
  }

  .insightPanel > div,
  .formAction {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .formWide {
    grid-column: auto;
  }

  .footer {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 34px 16px;
  }

  .footer p {
    text-align: left;
  }

  .footer > nav {
    grid-column: auto;
  }
}

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

