:root {
  --ink: #18252d;
  --ink-deep: #101a21;
  --ink-soft: #55636a;
  --teal: #18a9af;
  --teal-deep: #087e84;
  --teal-light: #dff5f4;
  --orange: #f2a20c;
  --orange-light: #fff1cf;
  --paper: #ffffff;
  --canvas: #f4f6f5;
  --sand: #f6f1e6;
  --line: #dce2e1;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Aptos, "Segoe UI", Helvetica, Arial, sans-serif;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

address {
  font-style: normal;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--orange);
  padding: 0.8rem 1rem;
  color: var(--ink-deep);
  font-weight: 800;
}

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

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  background: var(--paper);
}

.nav-shell,
.hero-shell,
.metrics-shell,
.section-shell,
.sector-shell,
.contact-shell,
.footer-shell,
.footer-legal {
  width: min(1220px, calc(100% - 4rem));
  margin: 0 auto;
}

.nav-shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 112px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  width: max-content;
}

.brand-logo {
  display: block;
  width: 138px;
  height: auto;
}

.wordmark-symbol {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: -0.08em;
  text-transform: uppercase;
}

.wordmark-copy strong,
.wordmark-copy small {
  display: block;
}

.wordmark-copy strong {
  font-size: 1.05rem;
  letter-spacing: -0.025em;
}

.wordmark-copy small {
  margin-top: 0.12rem;
  color: #7d888d;
  font-size: 0.58rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  color: #344149;
  font-size: 0.84rem;
  font-weight: 650;
}

.nav-links a {
  position: relative;
  padding: 0.4rem 0;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--orange);
  content: "";
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 0.65rem;
  border-left: 1px solid var(--line);
  padding: 0.8rem 0 0.8rem 1.5rem;
  font-size: 0.82rem;
  font-weight: 800;
}

.nav-cta span {
  color: var(--teal-deep);
  font-size: 1rem;
  transition: transform 180ms ease;
}

.nav-cta:hover span,
.nav-cta:focus-visible span {
  transform: translate(2px, -2px);
}

.hero {
  padding-top: 112px;
  background: var(--ink-deep);
  color: var(--paper);
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(390px, 0.75fr);
  min-height: 710px;
}

.hero-copy {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 6rem 6rem 6rem 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.6rem;
  color: var(--teal-deep);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 34px;
  height: 2px;
  background: var(--orange);
}

.eyebrow.light {
  color: #8adce0;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(4rem, 6.2vw, 6.7rem);
  font-weight: 690;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.hero h1 span {
  display: block;
  color: var(--orange);
}

.hero-lead {
  max-width: 680px;
  margin: 2rem 0 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-top: 2.5rem;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  padding: 0.9rem 1.3rem;
  font-size: 0.82rem;
  font-weight: 850;
  transition: transform 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-accent {
  background: var(--orange);
  color: var(--ink-deep);
}

.button-accent:hover,
.button-accent:focus-visible {
  background: #ffb01d;
}

.hero-link {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 0.3rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 750;
}

.hero-link:hover,
.hero-link:focus-visible {
  color: var(--paper);
}

.hero-visual {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #23343c;
}

.hero-visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 57% center;
  filter: saturate(0.78) contrast(1.03);
}

.hero-visual::before {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
  width: 14px;
  height: 34%;
  background: var(--orange);
  content: "";
}

.hero-visual-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(9, 20, 26, 0.02) 28%, rgba(9, 20, 26, 0.9) 100%),
    linear-gradient(90deg, rgba(12, 24, 31, 0.18), transparent 45%);
}

.hero-visual-copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 3.5rem;
}

.hero-visual-copy > span {
  color: #a6e3e5;
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-visual-copy > p {
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
}

.hero-visual-copy > strong {
  display: block;
  margin-top: 0.15rem;
  color: var(--paper);
  font-size: clamp(2.7rem, 4.1vw, 4.5rem);
  font-weight: 690;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.hero-visual-copy > div {
  display: flex;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  margin-top: 2rem;
  padding-top: 1rem;
}

.hero-visual-copy small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-statement {
  position: relative;
  display: flex;
  overflow: hidden;
  justify-content: flex-end;
  flex-direction: column;
  background: var(--teal);
  padding: 4rem;
  color: var(--ink-deep);
}

.hero-statement::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 13px;
  height: 42%;
  background: var(--orange);
  content: "";
}

.hero-statement::after {
  position: absolute;
  top: 14%;
  right: -90px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  box-shadow: 0 0 0 56px rgba(255, 255, 255, 0.08), 0 0 0 112px rgba(255, 255, 255, 0.045);
  content: "";
}

.statement-index {
  position: absolute;
  top: 3.2rem;
  left: 3.5rem;
  z-index: 2;
  color: rgba(16, 26, 33, 0.66);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.statement-grid {
  position: absolute;
  top: 9rem;
  left: 3.5rem;
  display: grid;
  grid-template-columns: repeat(2, 34px);
  gap: 8px;
}

.statement-grid i {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(16, 26, 33, 0.25);
}

.statement-grid i:first-child,
.statement-grid i:last-child {
  background: rgba(255, 255, 255, 0.36);
}

.hero-statement > p,
.hero-statement > strong,
.statement-bottom {
  position: relative;
  z-index: 2;
}

.hero-statement > p {
  margin: 0;
  font-size: 1.08rem;
}

.hero-statement > strong {
  margin-top: 0.2rem;
  font-size: clamp(3rem, 4.5vw, 5rem);
  font-weight: 720;
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.statement-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid rgba(16, 26, 33, 0.27);
  margin-top: 3rem;
  padding-top: 1.4rem;
}

.statement-bottom span {
  color: rgba(16, 26, 33, 0.82);
  font-size: 1.8rem;
  font-weight: 950;
  letter-spacing: -0.09em;
}

.statement-bottom small {
  max-width: 190px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.5;
  text-align: right;
  text-transform: uppercase;
}

.metrics {
  position: relative;
  z-index: 4;
  background: var(--paper);
}

.metrics-shell {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.metric {
  display: flex;
  min-height: 132px;
  align-items: center;
  gap: 1.1rem;
  border-right: 1px solid var(--line);
  padding: 1.6rem 2rem;
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  color: var(--teal-deep);
  font-size: 2.5rem;
  letter-spacing: -0.07em;
}

.metric span {
  max-width: 110px;
  color: var(--ink-soft);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section {
  padding: 8rem 0;
}

.section-kicker {
  margin: 0;
  color: var(--teal-deep);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.intro {
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.35fr 1.65fr;
  gap: 4rem;
}

.intro-grid > .section-kicker {
  padding-top: 0.7rem;
}

.intro-copy h2 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(3rem, 5.6vw, 5.8rem);
  font-weight: 610;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.intro-copy > p {
  max-width: 780px;
  margin: 2.2rem 0 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.8;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  border-bottom: 2px solid var(--orange);
  margin-top: 2.2rem;
  padding: 0 0 0.45rem;
  font-size: 0.82rem;
  font-weight: 850;
}

.arrow-link span {
  color: var(--teal-deep);
  transition: transform 180ms ease;
}

.arrow-link:hover span,
.arrow-link:focus-visible span {
  transform: translateX(4px);
}

.services {
  background: var(--canvas);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.6fr);
  align-items: end;
  gap: 6rem;
}

.split-heading h2,
.value-heading h2,
.sector-copy h2,
.experience-grid h2,
.contact-heading h2 {
  margin: 0;
  font-size: clamp(3rem, 4.8vw, 5rem);
  font-weight: 650;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.split-heading > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.75;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 5rem;
  border-top: 1px solid #cfd7d5;
  border-left: 1px solid #cfd7d5;
}

.service-card {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  border-right: 1px solid #cfd7d5;
  border-bottom: 1px solid #cfd7d5;
  background: var(--paper);
  padding: 1.5rem 1.6rem 2rem;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.service-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 5px;
  background: var(--orange);
  content: "";
  transition: width 220ms ease;
}

.service-card:hover {
  z-index: 2;
  transform: translateY(-5px);
  background: var(--teal-light);
  box-shadow: 0 20px 48px rgba(30, 53, 60, 0.12);
}

.service-card:hover::after {
  width: 100%;
}

.service-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-topline span {
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.service-topline small {
  color: #879297;
  font-size: 0.6rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-code {
  margin: 4.6rem 0 0.55rem;
  color: var(--teal-deep);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 0;
  font-size: 1.9rem;
  letter-spacing: -0.045em;
}

.service-card > p:not(.service-code) {
  margin: 1rem 0 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.7;
}

.card-arrow {
  position: absolute;
  right: 1.5rem;
  bottom: 1.4rem;
  color: var(--teal-deep);
  font-size: 1.2rem;
}

.value-section {
  background: var(--ink-deep);
  color: var(--paper);
}

.value-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 8rem;
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.value-heading {
  align-self: start;
}

.value-heading h2 {
  max-width: 610px;
}

.value-list {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.value-list article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  padding: 2.1rem 0;
}

.value-list article > span {
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.value-list h3 {
  margin: 0;
  font-size: 1.55rem;
  letter-spacing: -0.035em;
}

.value-list p {
  max-width: 620px;
  margin: 0.75rem 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.7;
}

.editorial-visual {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(390px, 0.55fr);
  min-height: 640px;
  background: var(--canvas);
}

.editorial-image {
  position: relative;
  min-height: 640px;
  overflow: hidden;
}

.editorial-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 62%, rgba(16, 26, 33, 0.12));
  content: "";
}

.editorial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.83) contrast(1.02);
}

.editorial-card {
  display: flex;
  justify-content: center;
  flex-direction: column;
  background: var(--orange-light);
  padding: clamp(3.5rem, 5vw, 6rem);
}

.editorial-card .eyebrow {
  color: var(--teal-deep);
}

.editorial-card h2 {
  margin: 0;
  font-size: clamp(2.8rem, 4.4vw, 4.8rem);
  font-weight: 640;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.editorial-card > p:not(.eyebrow) {
  margin: 1.7rem 0 0;
  color: #596268;
  font-size: 0.95rem;
  line-height: 1.75;
}

.focus {
  background: var(--paper);
}

.focus-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 4rem;
}

.focus-heading h2 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(3rem, 5vw, 5.1rem);
  font-weight: 630;
  letter-spacing: -0.06em;
  line-height: 0.98;
  text-align: right;
}

.focus-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 1rem;
}

.focus-card {
  display: flex;
  min-height: 420px;
  justify-content: flex-end;
  flex-direction: column;
  padding: 2.3rem;
}

.focus-card > span {
  margin-bottom: auto;
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.focus-card h3 {
  margin: 0;
  font-size: 2rem;
  font-weight: 680;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.focus-card p {
  margin: 1.2rem 0 0;
  font-size: 0.88rem;
  line-height: 1.7;
}

.focus-card a {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 0.7rem;
  border-bottom: 1px solid currentColor;
  margin-top: 1.7rem;
  padding-bottom: 0.35rem;
  font-size: 0.76rem;
  font-weight: 850;
}

.focus-card a span {
  transition: transform 180ms ease;
}

.focus-card a:hover span,
.focus-card a:focus-visible span {
  transform: translateX(4px);
}

.focus-1 {
  background: var(--orange);
  color: var(--ink-deep);
}

.focus-2 {
  background: var(--canvas);
  color: var(--ink);
}

.focus-2 > span {
  color: var(--teal-deep);
}

.focus-3 {
  background: var(--teal);
  color: var(--ink-deep);
}

.sector {
  overflow: hidden;
  background: #17272f;
  color: var(--paper);
}

.sector-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(390px, 0.65fr);
  align-items: center;
  gap: 8rem;
  min-height: 720px;
  padding: 8rem 0;
}

.sector-shell::before {
  position: absolute;
  top: -280px;
  left: -430px;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(24, 169, 175, 0.23);
  border-radius: 50%;
  box-shadow: 0 0 0 100px rgba(24, 169, 175, 0.04), 0 0 0 200px rgba(24, 169, 175, 0.025);
  content: "";
}

.sector-copy {
  position: relative;
  z-index: 2;
}

.sector-copy > p:not(.eyebrow) {
  max-width: 700px;
  margin: 1.8rem 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 1rem;
  line-height: 1.75;
}

.sector-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 3.4rem;
}

.sector-pillars > div {
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  padding-top: 1.4rem;
}

.sector-pillars span {
  display: block;
  margin-bottom: 1.2rem;
  color: var(--orange);
  font-size: 0.68rem;
  font-weight: 900;
}

.sector-pillars strong {
  display: block;
  font-size: 1rem;
}

.sector-pillars p {
  margin: 0.65rem 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.8rem;
  line-height: 1.6;
}

.sector-panel {
  position: relative;
  display: flex;
  min-height: 470px;
  justify-content: center;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.025);
  padding: 3.5rem;
}

.sector-panel::before {
  position: absolute;
  top: -1px;
  right: -1px;
  width: 78px;
  height: 78px;
  border-top: 14px solid var(--teal);
  border-right: 14px solid var(--teal);
  content: "";
}

.sector-panel > p {
  margin: 0 0 2rem;
  color: #8edfe3;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.sector-panel > strong {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0.55rem 0;
  font-size: 2.6rem;
  font-weight: 650;
  letter-spacing: -0.05em;
}

.sector-panel > span {
  max-width: 280px;
  margin-top: 2.2rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.6;
  text-transform: uppercase;
}

.experience {
  background: var(--sand);
}

.experience-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.65fr);
  gap: 8rem;
}

.experience-copy {
  align-self: end;
}

.experience-copy > p {
  margin: 0;
  color: #5f635e;
  font-size: 1rem;
  line-height: 1.8;
}

.region-list {
  display: grid;
  margin-top: 2.4rem;
  border-top: 1px solid rgba(70, 70, 55, 0.2);
}

.region-list span {
  border-bottom: 1px solid rgba(70, 70, 55, 0.2);
  padding: 0.85rem 0;
  font-size: 0.8rem;
  font-weight: 800;
}

.region-list span::before {
  margin-right: 0.8rem;
  color: var(--orange);
  content: "•";
}

.certifications {
  background: var(--paper);
  padding: 7rem 0;
}

.certifications-heading {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  align-items: end;
  gap: 6rem;
}

.certifications-heading h2 {
  max-width: 780px;
  margin: 0.9rem 0 0;
  font-size: clamp(2.7rem, 4.2vw, 4.4rem);
  font-weight: 640;
  letter-spacing: -0.055em;
  line-height: 1;
}

.certifications-heading > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.7;
}

.certification-list {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-top: 4rem;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.certification-mark {
  display: flex;
  min-height: 138px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1rem;
  text-align: center;
}

.certification-mark strong {
  color: var(--teal-deep);
  font-size: 1.55rem;
  letter-spacing: -0.04em;
}

.certification-mark span {
  max-width: 130px;
  margin-top: 0.55rem;
  color: #737e83;
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  line-height: 1.45;
  text-transform: uppercase;
}

.contact {
  background: var(--teal);
  color: var(--ink-deep);
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(400px, 0.75fr);
  gap: 8rem;
  min-height: 620px;
  padding: 7rem 0;
}

.contact-heading {
  align-self: center;
}

.contact .eyebrow.light {
  color: rgba(16, 26, 33, 0.66);
}

.button-dark {
  margin-top: 2.5rem;
  background: var(--ink-deep);
  color: var(--paper);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: #000a0f;
}

.contact-details {
  display: grid;
  align-self: center;
  border-top: 1px solid rgba(16, 26, 33, 0.28);
}

.contact-details > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1.2rem;
  border-bottom: 1px solid rgba(16, 26, 33, 0.28);
  padding: 1.5rem 0;
}

.contact-details span {
  padding-top: 0.18rem;
  color: rgba(16, 26, 33, 0.62);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-details a,
.contact-details p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.65;
}

.contact-details a {
  width: max-content;
  max-width: 100%;
  border-bottom: 1px solid transparent;
}

.contact-details a:hover,
.contact-details a:focus-visible {
  border-color: currentColor;
}

footer {
  background: #0c151b;
  color: var(--paper);
}

.footer-shell {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  align-items: center;
  min-height: 150px;
}

.footer-wordmark .wordmark-symbol {
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: transparent;
}

.footer-wordmark .wordmark-copy small {
  color: rgba(255, 255, 255, 0.44);
}

.footer-logo {
  display: block;
  width: 152px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.88;
}

.footer-shell > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.43);
  font-size: 0.72rem;
  text-align: center;
}

.footer-shell > a:last-child {
  justify-self: end;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 800;
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.4rem 0 1.8rem;
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.64rem;
}

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

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

@media (max-width: 1080px) {
  .nav-links {
    gap: 1.2rem;
  }

  .hero-shell {
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.65fr);
  }

  .hero-copy {
    padding-right: 3rem;
  }

  .hero-statement {
    padding: 3rem;
  }

  .hero-visual-copy {
    padding: 2.5rem;
  }

  .split-heading,
  .experience-grid,
  .certifications-heading {
    gap: 4rem;
  }

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

  .value-shell,
  .sector-shell,
  .contact-shell {
    gap: 4.5rem;
  }

  .editorial-visual {
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  }

  .focus-card {
    min-height: 390px;
    padding: 1.8rem;
  }

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

@media (max-width: 820px) {
  .nav-shell,
  .hero-shell,
  .metrics-shell,
  .section-shell,
  .sector-shell,
  .contact-shell,
  .footer-shell,
  .footer-legal {
    width: min(100% - 2.5rem, 1220px);
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
    min-height: 98px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 98px;
  }

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

  .hero-copy {
    min-height: 650px;
    padding: 5.5rem 0;
  }

  .hero h1 {
    max-width: 720px;
    font-size: clamp(3.6rem, 11vw, 5.7rem);
  }

  .hero-statement {
    min-height: 480px;
    padding: 3.5rem;
  }

  .hero-visual {
    min-height: 540px;
  }

  .hero-visual-copy {
    padding: 3.2rem;
  }

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

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

  .metric:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 6rem 0;
  }

  .intro-grid,
  .split-heading,
  .value-shell,
  .experience-grid,
  .certifications-heading,
  .contact-shell {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .intro-grid > .section-kicker {
    padding-top: 0;
  }

  .value-shell {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .focus-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .focus-heading h2 {
    text-align: left;
  }

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

  .editorial-visual {
    grid-template-columns: 1fr;
  }

  .editorial-image {
    min-height: 520px;
  }

  .editorial-card {
    padding: 5rem max(1.25rem, calc((100vw - 1220px) / 2));
  }

  .focus-card {
    min-height: 370px;
  }

  .sector-shell {
    grid-template-columns: 1fr;
    gap: 4rem;
    padding: 6rem 0;
  }

  .sector-panel {
    min-height: 420px;
  }

  .contact-shell {
    padding: 6rem 0;
  }

  .contact-heading {
    margin-bottom: 1rem;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    gap: 1.4rem;
    padding: 2.8rem 0;
  }

  .footer-shell > p {
    text-align: left;
  }

  .footer-shell > a:last-child {
    justify-self: start;
  }
}

@media (max-width: 560px) {
  .nav-shell,
  .hero-shell,
  .metrics-shell,
  .section-shell,
  .sector-shell,
  .contact-shell,
  .footer-shell,
  .footer-legal {
    width: min(100% - 2rem, 1220px);
  }

  .wordmark-copy strong {
    font-size: 0.92rem;
  }

  .brand-logo {
    width: 108px;
  }

  .nav-cta {
    border-left: 0;
    padding-left: 0.7rem;
  }

  .hero-copy {
    min-height: 610px;
    padding: 4.8rem 0;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 16vw, 4.6rem);
  }

  .hero-lead {
    font-size: 0.98rem;
  }

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

  .hero-statement {
    min-height: 430px;
    padding: 2rem;
  }

  .hero-visual {
    min-height: 470px;
  }

  .hero-visual-copy {
    padding: 2rem;
  }

  .hero-visual-copy > strong {
    font-size: 3rem;
  }

  .hero-visual-copy > div {
    flex-wrap: wrap;
  }

  .editorial-image {
    min-height: 390px;
  }

  .editorial-card {
    padding: 4.5rem 1rem;
  }

  .statement-index,
  .statement-grid {
    left: 2rem;
  }

  .statement-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.8rem;
  }

  .statement-bottom small {
    text-align: left;
  }

  .metric {
    min-height: 118px;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1.3rem 1rem;
  }

  .metric strong {
    font-size: 2.1rem;
  }

  .section {
    padding: 5rem 0;
  }

  .intro-copy h2,
  .split-heading h2,
  .value-heading h2,
  .sector-copy h2,
  .experience-grid h2,
  .contact-heading h2,
  .focus-heading h2,
  .certifications-heading h2 {
    font-size: 2.8rem;
  }

  .service-grid {
    grid-template-columns: 1fr;
    margin-top: 3.5rem;
  }

  .service-card {
    min-height: 320px;
  }

  .value-list article {
    grid-template-columns: 46px 1fr;
  }

  .sector-pillars {
    grid-template-columns: 1fr;
  }

  .sector-panel {
    min-height: 390px;
    padding: 2rem;
  }

  .certifications {
    padding: 5rem 0;
  }

  .certification-list {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 3rem;
  }

  .contact-details > div {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .contact-details span {
    padding-top: 0;
  }

  .contact-details a,
  .contact-details p {
    overflow-wrap: anywhere;
  }

  .footer-legal {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.8rem;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
