@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/manrope-400.ttf") format("truetype");
}
@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/manrope-500.ttf") format("truetype");
}
@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/manrope-600.ttf") format("truetype");
}
@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/manrope-700.ttf") format("truetype");
}
:root {
  --mirza-blue: #0056a7;
  --mirza-blue-dark: #003d78;
  --mirza-blue-deep: #082b49;
  --mirza-blue-mid: #427eaf;
  --mirza-blue-soft: #cbddeb;
  --mirza-blue-mist: #edf3f7;
  --paper: #f7f6f2;
  --ink: #171a1c;
  --grey: #62686c;
  --line: #d7dbda;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Manrope, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}
body.menu-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button {
  color: inherit;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #438ed1;
  outline-offset: 5px;
}
button {
  border: 0;
  background: none;
}
img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
figure {
  margin: 0;
  overflow: hidden;
}
p {
  margin: 0 0 1.6em;
}
h1,
h2,
h3 {
  font-weight: 500;
  line-height: 1.13;
  margin: 0;
  letter-spacing: -0.045em;
}
h1 {
  font-size: clamp(3rem, 6.5vw, 7.5rem);
}
h2 {
  font-size: clamp(2rem, 3.8vw, 4rem);
}
h3 {
  font-size: 1.55rem;
}
small {
  font-size: 12px;
}
address {
  font-style: normal;
}
section {
  position: relative;
}
.wrap {
  width: calc(100% - 112px);
  max-width: 1440px;
  margin-inline: auto;
}
.section {
  padding-block: 150px;
}
.compact {
  padding-top: 30px;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.16em;
  font-weight: 600;
  margin-bottom: 36px;
  text-transform: uppercase;
}
.display {
  font-size: clamp(2.6rem, 4.4vw, 5rem);
  line-height: 1.16;
}
.display span {
  color: var(--mirza-blue);
}
.lead {
  font-size: clamp(1.1rem, 1.7vw, 1.5rem);
  line-height: 1.7;
}
.text-link {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 36px;
  padding: 13px 0;
  border-bottom: 1px solid currentColor;
  line-height: 1.5;
  font-size: 14px;
}
.text-link span {
  display: inline-block;
  transition: transform 0.3s var(--ease);
}
.text-link:hover span {
  transform: translate(4px, -4px);
}
.skip {
  position: fixed;
  top: 0;
  left: 20px;
  transform: translateY(-150%);
  z-index: 100;
  background: white;
  padding: 14px;
}
.skip:focus {
  transform: none;
}
.site-header {
  height: 100px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 40;
  display: flex;
  align-items: center;
  padding: 0 3.6%;
  gap: 32px;
  border-bottom: 1px solid #ffffff40;
  transition:
    background 0.4s,
    color 0.4s,
    height 0.4s;
}
.site-header.over-hero {
  color: white;
}
.site-header.solid,
.site-header.scrolled,
.site-header.menu-active {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--line);
  height: 88px;
}
.brand {
  flex-shrink: 0;
  display: inline-block;
  line-height: 1;
}
.brand img {
  width: 190px;
  height: auto;
}
.brand-text {
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -0.04em;
  display: block;
  text-align: center;
}
.brand-text small {
  display: block;
  font-size: 10px;
  letter-spacing: 0.45em;
  margin-top: 7px;
  padding-left: 0.45em;
}
.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  flex: 1;
}
.nav-item {
  display: flex;
  align-items: center;
}
.nav-link {
  font-size: 12px;
  white-space: nowrap;
  padding-block: 20px;
  position: relative;
}
.nav-link > span {
  display: none;
}
.nav-link:after {
  position: absolute;
  content: "";
  bottom: 12px;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.nav-link:hover:after {
  transform: scaleX(1);
}
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 24px;
  width: 24px;
  height: 44px;
  padding: 0;
  margin-left: 4px;
  line-height: 1;
}
.menu-chevron {
  display: block;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  transform-origin: center;
  transition: transform 0.3s var(--ease);
}
.menu-toggle[aria-expanded="true"] .menu-chevron {
  transform: rotate(180deg);
}
.header-end {
  display: flex;
  align-items: center;
  gap: 24px;
}
.languages {
  display: flex;
  gap: 9px;
  font-size: 12px;
}
.languages a {
  padding: 14px 0;
  opacity: 0.6;
}
.languages a[aria-current] {
  opacity: 1;
  font-weight: 700;
}
.languages span {
  opacity: 0.4;
  padding-block: 14px;
}
.mobile-open {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
}
.mobile-open span {
  display: block;
  height: 1px;
  background: currentColor;
  margin: 7px 0;
  width: 24px;
}
.mega {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--paper);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 40px 40px #001f3814;
}
.mega-inner {
  padding: 50px 7%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 12%;
  max-width: 1600px;
  margin: auto;
}
.mega .eyebrow {
  margin-bottom: 6px;
}
.mega-list {
  margin-top: 25px;
}
.mega-list > a {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 24px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.mega-list > a span {
  margin-left: auto;
}
.mega-list > a:hover {
  color: var(--mirza-blue);
}
.mega-list small {
  color: var(--grey);
}
.mega figure {
  height: 345px;
  position: relative;
}
.mega figure figcaption {
  position: absolute;
  left: 24px;
  bottom: 18px;
  color: white;
  text-shadow: 0 1px 10px black;
}
.mega img {
  transition: opacity 0.35s;
}
.hero {
  height: 100svh;
  min-height: 720px;
  max-height: 1300px;
  background: var(--mirza-blue-deep);
  color: white;
  isolation: isolate;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  object-position: 50% 46%;
  animation: hero-scale 2s var(--ease) both;
}
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(
    180deg,
    #041b354d 0%,
    #09253b10 25%,
    #071b317d 60%,
    #071b31a8 100%
  );
}
.hero-copy {
  padding-top: clamp(230px, 31vh, 420px);
}
.hero-copy .eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  margin-bottom: 26px;
}
.hero h1 {
  font-size: clamp(3.8rem, 7vw, 8rem);
  line-height: 1.06;
  font-weight: 500;
  letter-spacing: -0.047em;
}
.hero h1 > span {
  display: block;
  animation: line-reveal 1.2s var(--ease) both;
}
.hero h1 > span:nth-child(2) {
  animation-delay: 0.14s;
}
.hero-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-top: 45px;
}
.hero-bottom p {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  opacity: 0.88;
}
.scroll-link {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 11px;
  letter-spacing: 0.15em;
}
.scroll-link span {
  width: 44px;
  height: 44px;
  border: 1px solid #ffffff70;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 20px;
}
.hero-place {
  font-size: 10px;
  letter-spacing: 0.18em;
  opacity: 0.8;
}
.hero-index {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-top: 1px solid #ffffff45;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding-inline: 3.6%;
  height: 94px;
  background: #09253b12;
}
.hero-index a {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  border-right: 1px solid #ffffff28;
  font-size: 13px;
}
.hero-index a:first-child {
  padding-left: 0;
}
.hero-index a:last-child {
  border: 0;
}
.hero-index a > span {
  margin-left: auto;
}
.hero-index small {
  opacity: 0.55;
  font-size: 10px;
}
.hero-index a:hover {
  background: #ffffff0d;
}
.intro {
  display: grid;
  grid-template-columns: 2fr 10fr;
  gap: 30px;
}
.intro .eyebrow {
  margin-top: 12px;
}
.intro-tail {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 70px;
  align-items: end;
  margin-top: 50px;
  margin-left: 25%;
  font-size: 15px;
}
.intro-tail p {
  margin: 0;
  max-width: 550px;
  color: var(--grey);
}
.intro-tail .text-link {
  white-space: nowrap;
}
.section-title {
  display: grid;
  grid-template-columns: 2fr 7fr 3fr;
  gap: 30px;
  margin-bottom: 65px;
  align-items: start;
}
.section-title .eyebrow {
  margin-top: 10px;
}
.section-title > .text-link {
  justify-self: end;
  align-self: end;
}
.sector-story {
  background: #efefeb;
}
.sector-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 9%;
  align-items: start;
}
.sector-visual {
  height: 680px;
  position: sticky;
  top: 120px;
  overflow: hidden;
}
.sector-image {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition:
    opacity 0.8s,
    transform 1s var(--ease);
  transform: scale(1.04);
}
.sector-image.active {
  opacity: 1;
  transform: scale(1);
}
.sector-counter {
  position: absolute;
  bottom: 25px;
  left: 28px;
  color: white;
  font-size: 13px;
  text-shadow: 0 1px 5px #000;
}
.sector-counter b {
  font-size: 25px;
  font-weight: 400;
  margin-right: 5px;
}
.sector-chapter {
  padding: 35px 0 50px;
  border-top: 1px solid #c3cacd;
}
.is-sticky .sector-chapter {
  min-height: 56vh;
  padding-top: 50px;
}
.sector-row {
  display: grid;
  grid-template-columns: 30px 1fr 44px;
  gap: 12px;
  align-items: center;
}
.sector-row > span {
  font-size: 12px;
  color: var(--mirza-blue);
}
.sector-row h3 {
  font-size: clamp(1.6rem, 2.5vw, 2.7rem);
}
.sector-row > a {
  font-size: 26px;
  text-align: right;
  min-height: 44px;
}
.sector-chapter p {
  margin: 25px 0 20px 42px;
  max-width: 340px;
  color: var(--grey);
  font-size: 15px;
}
.sector-chapter > .text-link {
  margin-left: 42px;
}
.mobile-sector-image {
  display: none;
}
.vision {
  display: grid;
  grid-template-columns: 5fr 5fr;
  gap: 14%;
  align-items: center;
}
.vision figure {
  height: 680px;
}
.vision > div {
  padding-top: 110px;
}
.vision p {
  margin-top: 35px;
  color: var(--grey);
  max-width: 400px;
}
.numbers {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  padding: 60px 0 100px;
  border-bottom: 1px solid var(--line);
  align-items: end;
}
.numbers strong {
  font-weight: 400;
  font-size: clamp(6rem, 12vw, 12rem);
  color: var(--mirza-blue);
  line-height: 1;
}
.numbers span {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  margin-top: 28px;
}
.numbers p {
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1.3;
  margin: 0;
  padding-bottom: 35px;
}
.company-list {
  display: grid;
  gap: 80px;
}
.company-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12%;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: 80px;
}
.company-block:nth-child(even) figure {
  order: 2;
}
.company-block:nth-child(even) > div {
  padding-left: 10%;
}
.company-block figure {
  height: 400px;
}
.company-block img {
  transition: transform 0.9s var(--ease);
}
.company-block:hover img {
  transform: scale(1.025);
}
.company-block h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}
.company-block p {
  max-width: 430px;
  margin-top: 24px;
  color: var(--grey);
}
.company-block .eyebrow {
  margin-bottom: 25px;
}
.sustain-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--mirza-blue-mist);
  min-height: 700px;
  align-items: center;
}
.sustain-feature > .wrap {
  padding: 100px 0;
  width: 75%;
  margin-inline: auto;
}
.sustain-feature > img {
  height: 700px;
}
.sustain-feature p {
  margin-top: 35px;
  max-width: 380px;
}
.news-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 30px;
}
.news-grid figure {
  height: 280px;
}
.news-grid article:first-child figure {
  height: 380px;
}
.news-grid h3 {
  font-size: clamp(1.3rem, 1.7vw, 1.9rem);
  line-height: 1.35;
  letter-spacing: -0.03em;
}
.news-grid h3 span {
  display: inline-block;
  font-size: 19px;
}
.news-grid img {
  transition: transform 0.8s var(--ease);
}
.news-grid a:hover img {
  transform: scale(1.035);
}
.news-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 10px;
  color: var(--grey);
  margin: 20px 0 15px;
  letter-spacing: 0.02em;
}
.career-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #e9e8e2;
  align-items: center;
}
.career-cta .wrap {
  width: 75%;
  padding: 90px 0;
}
.career-cta img {
  height: 580px;
}
.career-cta .text-link {
  margin-top: 35px;
}
.site-footer {
  background: var(--mirza-blue-deep);
  color: white;
  padding: 90px 0 25px;
}
.footer-statement {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(3rem, 6.3vw, 7rem);
  line-height: 1.12;
  letter-spacing: -0.055em;
  border-bottom: 1px solid #ffffff30;
  padding-bottom: 80px;
  margin-bottom: 70px;
}
.footer-statement > a {
  font-size: clamp(3rem, 7vw, 8rem);
  font-weight: 400;
  padding: 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr 1.3fr;
  gap: 60px;
  font-size: 13px;
}
.footer-grid a:not(.brand) {
  display: block;
  margin-bottom: 10px;
  opacity: 0.8;
}
.footer-grid a:hover {
  opacity: 1;
}
.footer-grid address {
  line-height: 1.9;
}
.footer-grid address > a {
  margin-top: 15px;
}
.footer-grid .eyebrow {
  font-size: 10px;
  margin-bottom: 25px;
}
.footer-bottom {
  border-top: 1px solid #ffffff30;
  padding-top: 25px;
  margin-top: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  font-size: 10px;
  color: #ffffffb0;
}
.footer-bottom > div {
  display: flex;
  gap: 25px;
}
.footer-bottom a > span {
  display: none;
}
.page-hero {
  padding-top: 180px;
  padding-bottom: 90px;
}
.page-hero h1 {
  max-width: 1150px;
}
.page-hero .lead {
  margin-top: 35px;
  max-width: 650px;
  color: var(--grey);
}
.page-hero .eyebrow {
  color: var(--mirza-blue);
  font-size: 10px;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12%;
}
.wide-image {
  height: 600px;
  max-width: 1800px;
  margin-inline: auto;
}
.prose {
  max-width: 800px;
  font-size: 17px;
  line-height: 1.9;
}
.prose h2 {
  font-size: 32px;
  margin: 50px 0 25px;
}
.prose h2:first-child {
  margin-top: 0;
}
.prose .text-link {
  margin-right: 25px;
  margin-bottom: 20px;
}
.article-body,
.legal-body {
  margin: 80px auto 140px;
  width: calc(100% - 40px);
}
.article-body .lead {
  font-size: 24px;
}
.verification {
  border-left: 2px solid var(--mirza-blue);
  background: var(--mirza-blue-mist);
  padding: 22px 25px;
  margin: 35px 0;
  color: #38556a;
  font-size: 13px;
  line-height: 1.7;
}
.verification > span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.verification p {
  margin: 10px 0 0;
}
.chapters article {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding: 35px 0;
}
.chapters article > span {
  font-size: 12px;
  color: var(--mirza-blue);
}
.chapters h2 {
  font-size: 30px;
}
.chapters p {
  margin: 20px 0 0;
  color: var(--grey);
}
.corporate-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 10%;
}
.corporate-links > img {
  grid-row: span 5;
  max-height: 600px;
}
.chapter-link {
  border-top: 1px solid var(--line);
  font-size: 25px;
  padding: 25px 0;
  display: flex;
  align-items: center;
  gap: 20px;
}
.chapter-link > span {
  margin-left: auto;
}
.chapter-link small {
  color: var(--mirza-blue);
  font-size: 12px;
}
.timeline article {
  border-top: 1px solid var(--line);
  padding: 30px 0;
}
.timeline b {
  font-size: 35px;
  font-weight: 400;
  color: var(--mirza-blue);
}
.timeline h3 {
  margin: 15px 0;
  font-size: 23px;
}
.timeline p {
  color: var(--grey);
}
.chair-identity {
  position: sticky;
  top: 120px;
  align-self: start;
}
.chair-identity img {
  height: 600px;
}
.chair-identity h2 {
  font-size: 30px;
  margin-top: 30px;
}
.chair-identity p {
  margin-top: 10px;
}
.board-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8%;
  max-width: 1000px;
}
.board-grid img,
.portrait-placeholder {
  height: 550px;
}
.portrait-placeholder {
  background: var(--mirza-blue-mist);
  display: grid;
  place-items: center;
  color: var(--grey);
  font-size: 13px;
}
.board-grid h2 {
  font-size: 30px;
  margin-top: 25px;
}
.sector-hero {
  min-height: 600px;
  height: 82svh;
}
.sector-hero .hero-copy {
  padding-top: 35vh;
}
.sector-hero .lead {
  margin-top: 30px;
}
.sector-perspective {
  max-width: 1000px;
}
.sector-perspective .lead {
  max-width: 600px;
  margin: 40px 0 0 auto;
}
.company-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--mirza-blue-deep);
  color: white;
  align-items: center;
}
.company-highlight > img {
  height: 550px;
}
.company-highlight > div {
  padding: 70px;
}
.company-highlight p {
  margin-top: 30px;
}
.next-sector > .text-link {
  font-size: clamp(2rem, 4vw, 4.5rem);
  width: 100%;
}
.previous-next {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
}
.editorial-form {
  width: 100%;
  min-width: 0;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 28px;
}
.field {
  margin-bottom: 25px;
  min-width: 0;
}
.field label {
  font-size: 12px;
  display: block;
  margin-bottom: 8px;
}
.field input,
.field textarea,
.field select {
  display: block;
  width: 100%;
  min-width: 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #a7afb3;
  border-radius: 0;
  padding: 10px 0;
  color: var(--ink);
  min-height: 44px;
  resize: vertical;
}
.field input[type="file"] {
  font-size: 12px;
}
.field-error {
  display: block;
  font-size: 12px;
  color: #a52828;
  margin-top: 6px;
}
.field [aria-invalid="true"] {
  border-color: #a52828;
}
.consent {
  display: flex;
  align-items: start;
  gap: 12px;
  font-size: 12px;
}
.consent input {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  accent-color: var(--mirza-blue);
}
.consent a {
  text-decoration: underline;
}
.form-note {
  font-size: 12px;
  color: var(--grey);
  margin-top: 24px;
}
.submit-link {
  width: 100%;
  display: flex;
  justify-content: space-between;
  background: var(--mirza-blue-deep);
  color: white;
  padding: 18px 25px;
  min-height: 55px;
}
.form-status:not(:empty) {
  padding: 20px;
  background: var(--mirza-blue-mist);
  margin-top: 20px;
  font-size: 14px;
}
.contact-phone {
  display: inline-block;
  font-size: 25px;
  margin: 30px 0;
}
.map-section {
  padding-bottom: 130px;
}
.map-section h2 {
  margin-bottom: 35px;
}
.map-section iframe {
  width: 100%;
  height: 480px;
  border: 0;
  filter: grayscale(1);
}
dialog {
  border: 0;
  margin: 0;
  max-width: none;
  max-height: none;
  width: 100%;
  height: 100dvh;
  background: var(--mirza-blue-deep);
  color: white;
  padding: 25px;
  overflow-y: auto;
}
dialog::backdrop {
  background: var(--mirza-blue-deep);
}
.mobile-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 45px;
}
.mobile-close {
  font-size: 38px;
  width: 50px;
  height: 50px;
  line-height: 1;
}
.mobile-row {
  border-top: 1px solid #ffffff35;
  display: grid;
  grid-template-columns: 1fr 44px;
  align-items: center;
}
.mobile-link {
  font-size: clamp(22px, 5.8vw, 34px);
  padding: 18px 0;
  line-height: 1.3;
  letter-spacing: -0.03em;
}
.mobile-link > span {
  display: none;
}
.mobile-link small {
  font-size: 10px;
  opacity: 0.55;
  margin-right: 15px;
}
.accordion-toggle {
  font-size: 24px;
  width: 44px;
  height: 44px;
}
.mobile-children {
  grid-column: 1/-1;
  padding: 5px 0 20px 30px;
}
.mobile-children a {
  display: flex;
  border: 0;
  font-size: 15px;
  padding: 9px 0;
}
.mobile-bottom {
  display: flex;
  gap: 30px;
  margin: 35px 0;
  font-size: 14px;
}
.reveal {
  transition: clip-path 0.85s var(--ease);
}
.js-motion .reveal:not(.revealed) {
  clip-path: none;
}
.reveal.revealed {
  clip-path: inset(0);
}
@keyframes line-reveal {
  from {
    clip-path: inset(100% 0 0);
    transform: translateY(30px);
  }
  to {
    clip-path: inset(0);
    transform: translateY(0);
  }
}
@keyframes hero-scale {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1);
  }
}
@media (min-width: 1700px) {
  .site-header {
    padding-inline: max(4%, calc((100vw - 1560px) / 2));
  }
  .desktop-nav {
    gap: 30px;
  }
  .nav-link {
    font-size: 14px;
  }
  .hero-copy {
    padding-top: 34vh;
  }
}
@media (max-width: 1279px) {
  .desktop-nav {
    display: none;
  }
  .mobile-open {
    display: block;
  }
  .header-end {
    margin-left: auto;
  }
  .wrap {
    width: calc(100% - 80px);
  }
  .section {
    padding-block: 110px;
  }
  .section-title {
    grid-template-columns: 1fr 3fr;
  }
  .section-title > .text-link {
    grid-column: 2;
    justify-self: start;
  }
  .hero-index a {
    font-size: 12px;
    padding-inline: 15px;
    gap: 12px;
  }
  .hero {
    min-height: 740px;
  }
  .hero-copy {
    padding-top: 270px;
  }
  .intro-tail {
    margin-left: 0;
    gap: 35px;
  }
  .footer-grid {
    gap: 35px;
  }
  .sector-visual {
    height: 600px;
  }
  .company-highlight > div {
    padding: 40px;
  }
  .compact {
    padding-top: 25px;
  }
}
@media (max-width: 767px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .site-header {
    padding-inline: 20px;
    height: 80px;
  }
  .site-header.solid,
  .site-header.scrolled,
  .site-header.menu-active {
    height: 74px;
  }
  .brand-text {
    font-size: 21px;
  }
  .brand-text small {
    font-size: 8px;
  }
  .brand img {
    width: 150px;
  }
  .languages {
    font-size: 11px;
    gap: 7px;
  }
  .header-end {
    gap: 12px;
  }
  .hero {
    min-height: 740px;
    height: 100svh;
    max-height: 1000px;
  }
  .hero-copy {
    padding-top: 30vh;
  }
  .hero h1 {
    font-size: clamp(3.1rem, 9.8vw, 5rem);
    line-height: 1.1;
  }
  .hero-copy .eyebrow {
    font-size: 9px;
    letter-spacing: 0.1em;
    margin-bottom: 22px;
  }
  .hero-bottom {
    margin-top: 32px;
    gap: 15px;
  }
  .hero-bottom p {
    font-size: 12px;
  }
  .hero-place {
    display: none;
  }
  .scroll-link {
    font-size: 9px;
    gap: 10px;
  }
  .scroll-link span {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
  .hero-index {
    height: 114px;
    padding: 10px 20px;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
  }
  .hero-index a {
    font-size: 10px;
    padding: 8px 0;
    border: 0;
    gap: 8px;
    min-height: 40px;
  }
  .hero-index a > span {
    display: none;
  }
  .hero-index small {
    font-size: 9px;
  }
  .hero-index a:last-child {
    grid-column: 2/4;
  }
  .hero-media {
    object-position: 56% center;
  }
  .section {
    padding-block: 80px;
  }
  .display {
    font-size: clamp(2.1rem, 7.8vw, 3.2rem);
  }
  .eyebrow {
    font-size: 10px;
    margin-bottom: 25px;
  }
  .intro {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .intro-tail {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 28px;
  }
  .intro-tail p {
    font-size: 14px;
  }
  .intro-tail .text-link {
    justify-self: start;
  }
  .section-title {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 35px;
  }
  .section-title .eyebrow {
    margin: 0;
  }
  .section-title > .text-link {
    grid-column: auto;
  }
  .sector-layout {
    display: block;
  }
  .sector-visual {
    display: none;
  }
  .sector-chapter,
  .is-sticky .sector-chapter {
    padding: 30px 0 40px;
    min-height: 0;
  }
  .sector-row h3 {
    font-size: 28px;
  }
  .sector-chapter p {
    font-size: 14px;
    margin-top: 20px;
  }
  .mobile-sector-image {
    display: block;
    height: 370px;
    margin-top: 30px;
  }
  .vision {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .vision figure {
    height: 430px;
  }
  .vision > div {
    padding: 0;
  }
  .vision p {
    margin-top: 25px;
  }
  .numbers {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    padding: 20px 0 60px;
  }
  .numbers p {
    grid-column: 1/-1;
    grid-row: 2;
    font-size: 28px;
    padding: 20px 0 0;
  }
  .numbers strong {
    font-size: 100px;
  }
  .numbers span {
    font-size: 9px;
    margin-top: 20px;
  }
  .company-list {
    gap: 45px;
  }
  .company-block {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 45px;
  }
  .company-block:nth-child(even) figure {
    order: 0;
  }
  .company-block:nth-child(even) > div {
    padding: 0;
  }
  .company-block figure {
    height: 360px;
  }
  .company-block .eyebrow {
    font-size: 10px;
    margin-bottom: 18px;
  }
  .company-block p {
    font-size: 14px;
  }
  .sustain-feature {
    grid-template-columns: 1fr;
  }
  .sustain-feature > .wrap {
    width: calc(100% - 40px);
    padding: 70px 0;
  }
  .sustain-feature > img {
    height: 380px;
  }
  .sustain-feature p {
    font-size: 14px;
  }
  .news-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .news-grid figure,
  .news-grid article:first-child figure {
    height: 300px;
  }
  .news-grid h3 {
    font-size: 25px;
  }
  .news-meta {
    font-size: 10px;
  }
  .career-cta {
    grid-template-columns: 1fr;
  }
  .career-cta .wrap {
    width: calc(100% - 40px);
    padding: 65px 0;
  }
  .career-cta img {
    height: 330px;
  }
  .site-footer {
    padding-top: 65px;
  }
  .footer-statement {
    font-size: 43px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    gap: 10px;
  }
  .footer-statement > a {
    font-size: 45px;
    padding: 5px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 25px;
    font-size: 12px;
  }
  .footer-grid > .brand {
    grid-column: 1/-1;
    justify-self: start;
  }
  .footer-grid address {
    grid-column: 1/-1;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: start;
    font-size: 10px;
    gap: 20px;
    margin-top: 45px;
  }
  .footer-bottom > div {
    gap: 18px;
    flex-wrap: wrap;
  }
  .page-hero {
    padding-top: 140px;
    padding-bottom: 65px;
  }
  .page-hero h1 {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }
  .page-hero .lead {
    font-size: 16px;
  }
  .two-col {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .wide-image {
    height: 380px;
  }
  .compact {
    padding-top: 10px;
  }
  .prose {
    font-size: 16px;
  }
  .prose h2 {
    font-size: 28px;
  }
  .chapters article {
    grid-template-columns: 30px 1fr;
    gap: 10px;
    padding: 28px 0;
  }
  .chapters h2 {
    font-size: 27px;
  }
  .chapters p {
    font-size: 14px;
  }
  .corporate-links {
    grid-template-columns: 1fr;
  }
  .corporate-links > img {
    height: 380px;
    margin-bottom: 35px;
  }
  .chapter-link {
    font-size: 22px;
    padding: 22px 0;
  }
  .chair-identity {
    position: static;
  }
  .chair-identity img {
    height: 460px;
  }
  .board-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .board-grid img,
  .portrait-placeholder {
    height: 450px;
  }
  .sector-hero {
    height: 75svh;
    min-height: 570px;
  }
  .sector-hero .hero-copy {
    padding-top: 30vh;
  }
  .sector-hero .lead {
    font-size: 20px;
  }
  .company-highlight {
    grid-template-columns: 1fr;
  }
  .company-highlight > img {
    height: 380px;
  }
  .company-highlight > div {
    padding: 35px 25px;
  }
  .company-highlight p {
    font-size: 14px;
  }
  .next-sector > .text-link {
    font-size: 28px;
  }
  .article-body,
  .legal-body {
    margin: 55px auto 80px;
  }
  .article-body .lead {
    font-size: 20px;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .map-section {
    padding-bottom: 80px;
  }
  .map-section iframe {
    height: 350px;
  }
  .previous-next {
    gap: 25px;
  }
  .previous-next .text-link {
    font-size: 12px;
  }
  .hero-bottom .scroll-link {
    flex-shrink: 0;
  }
}
@media (max-width: 359px) {
  .wrap {
    width: calc(100% - 32px);
  }
  .hero h1 {
    font-size: 2.8rem;
  }
  .header-end {
    gap: 5px;
  }
  .site-header {
    padding-inline: 16px;
  }
  .hero-bottom p {
    font-size: 11px;
  }
  .hero-index {
    padding-inline: 16px;
  }
  .footer-statement {
    font-size: 36px;
  }
  .hero-copy {
    padding-top: 245px;
  }
  .brand img {
    width: 134px;
  }
  .languages {
    font-size: 10px;
  }
  .hero-index a {
    font-size: 9px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .js-motion .reveal:not(.revealed) {
    clip-path: none;
  }
  .is-sticky .sector-chapter {
    min-height: 0;
  }
  .sector-image {
    transform: none;
  }
}
.logo-blue {
  display: none !important;
}
.site-header.solid .logo-white,
.site-header.scrolled .logo-white,
.site-header.menu-active .logo-white {
  display: none !important;
}
.site-header.solid .logo-blue,
.site-header.scrolled .logo-blue,
.site-header.menu-active .logo-blue {
  display: block !important;
}
.mobile-top > img {
  width: 165px;
  height: auto;
}
.mobile-top > .logo-blue {
  display: none !important;
}
.site-header .logo-blue {
  filter: brightness(0) saturate(100%) invert(20%) sepia(36%) saturate(2130%)
    hue-rotate(174deg) brightness(89%) contrast(100%);
}
