:root {
  --navy: #07111f;
  --navy-soft: #0c1a2d;
  --navy-raised: #10223a;
  --blue: #2878ff;
  --blue-bright: #64a0ff;
  --blue-pale: #dfeaff;
  --paper: #f2f0eb;
  --paper-deep: #e6e2da;
  --ink: #0a182a;
  --ink-soft: #4e5d70;
  --white: #f8fbff;
  --line-dark: rgba(205, 222, 246, 0.16);
  --line-light: rgba(10, 24, 42, 0.15);
  --shell: min(1280px, calc(100vw - 80px));
  --header-height: 88px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--white);
  background: var(--navy);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--white);
  background: var(--blue);
}

a {
  color: inherit;
}

button {
  color: inherit;
  font: inherit;
}

img {
  max-width: 100%;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  padding: 10px 14px;
  color: var(--white);
  background: var(--blue);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 120;
  width: 0;
  height: 2px;
  background: var(--blue-bright);
  pointer-events: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background-color 240ms ease, border-color 240ms ease, height 240ms var(--ease);
}

.site-header.is-scrolled {
  height: 76px;
  background: rgba(7, 17, 31, 0.9);
  border-color: var(--line-dark);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: block;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: #eef3f7;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-copy {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.brand-copy strong {
  font-size: 24px;
  letter-spacing: 0.12em;
}

.brand-copy small {
  color: #afbdd0;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
}

.site-nav a {
  position: relative;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.035em;
  text-decoration: none;
}

.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--blue-bright);
  transition: right 220ms var(--ease);
}

.site-nav > a:hover::after,
.site-nav > a:focus-visible::after,
.site-nav > a.is-active::after {
  right: 0;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 12px 16px;
  color: var(--white);
  background: var(--blue);
  border: 1px solid var(--blue);
  transition: background-color 180ms ease, border-color 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: #1263ec;
  border-color: #1263ec;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-toggle i,
.menu-toggle i::before {
  display: block;
  width: 24px;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease, top 180ms ease;
}

.menu-toggle i {
  position: relative;
}

.menu-toggle i::before {
  content: "";
  position: absolute;
  top: -7px;
}

.menu-toggle[aria-expanded="true"] i {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] i::before {
  top: 0;
  transform: rotate(90deg);
}

.hero {
  position: relative;
  min-height: max(820px, 100svh);
  overflow: hidden;
  background: var(--navy);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  scale: 1.02;
  animation: hero-drift 16s ease-out both;
}

@keyframes hero-drift {
  from { scale: 1.08; }
  to { scale: 1.02; }
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(4, 11, 21, 0.97) 0%, rgba(5, 13, 25, 0.9) 36%, rgba(5, 13, 25, 0.38) 67%, rgba(5, 13, 25, 0.24) 100%),
    linear-gradient(0deg, rgba(4, 11, 21, 0.96) 0%, transparent 42%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: max(820px, 100svh);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  align-items: end;
  gap: 80px;
  padding-top: calc(var(--header-height) + 120px);
  padding-bottom: 190px;
}

.hero-copy {
  max-width: 900px;
}

.eyebrow,
.kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: #b9cff0;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 24px;
  height: 1px;
  background: var(--blue-bright);
}

.hero h1 {
  max-width: 920px;
  margin-bottom: 30px;
  font-family: var(--serif);
  font-size: clamp(68px, 8.2vw, 126px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.86;
}

.hero h1 em {
  color: var(--blue-bright);
  font-weight: 400;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 36px;
  color: #cad6e7;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.55;
}

.hero-actions,
.cmodule-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  min-height: 54px;
  padding: 13px 18px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 220ms var(--ease);
}

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

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

.button-primary:hover,
.button-primary:focus-visible {
  background: #1263ec;
  border-color: #1263ec;
}

.button-ghost {
  color: var(--white);
  background: rgba(7, 17, 31, 0.3);
  border-color: rgba(255, 255, 255, 0.42);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.hero-note {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 18px;
  margin-bottom: 4px;
  background: rgba(7, 17, 31, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.24);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.hero-note p {
  margin: 0;
  color: #c6d3e5;
  font-size: 12px;
  line-height: 1.5;
}

.hero-note strong {
  display: block;
  color: var(--white);
  font-size: 13px;
}

.pulse {
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  margin-top: 5px;
  border-radius: 50%;
  background: #6cf0be;
  box-shadow: 0 0 0 5px rgba(108, 240, 190, 0.12);
}

.hero-metrics {
  position: absolute;
  inset: auto 0 0;
  z-index: 3;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(4, 11, 21, 0.6);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 0.72fr) 1.45fr;
}

.metric-grid article {
  min-height: 126px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 24px clamp(20px, 2.6vw, 40px);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.metric-grid article:first-child {
  border-left: 0;
}

.metric-grid strong {
  font-family: var(--serif);
  font-size: 43px;
  font-weight: 400;
  letter-spacing: -0.05em;
}

.metric-grid span {
  max-width: 150px;
  color: #aebdd1;
  font-size: 11px;
  line-height: 1.45;
}

.metric-wide span {
  max-width: 250px;
}

.audience-strip {
  color: var(--ink);
  background: var(--paper-deep);
  border-bottom: 1px solid var(--line-light);
}

.audience-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.audience-inner p {
  margin: 0;
  color: #626d7c;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.audience-inner div {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 34px;
}

.audience-inner span {
  font-size: 12px;
  font-weight: 650;
}

.section {
  padding-block: clamp(100px, 10vw, 150px);
}

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #42536a;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-label span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.section-label p {
  margin: 0;
}

.section-label-light {
  color: #9db4d4;
}

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

.intro-grid {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(50px, 8vw, 120px);
}

.intro-copy h2 {
  max-width: 950px;
  margin-bottom: 60px;
  font-family: var(--serif);
  font-size: clamp(45px, 5.5vw, 78px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.intro-columns {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 7vw, 100px);
  margin-bottom: 70px;
}

.intro-columns p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
}

.intro-columns .lead-copy {
  color: var(--ink);
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.45;
}

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

.value-line span {
  position: relative;
  padding: 22px 32px 0 18px;
  border-left: 1px solid var(--line-light);
  font-size: 12px;
  font-weight: 700;
}

.value-line span:first-child {
  padding-left: 0;
  border-left: 0;
}

.value-line span::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 18px;
  width: 30px;
  height: 3px;
  background: var(--blue);
}

.value-line span:first-child::before {
  left: 0;
}

.expertise {
  background: var(--navy-soft);
}

.section-head {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(50px, 8vw, 120px);
  margin-bottom: 70px;
}

.section-head > div:last-child {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
}

.section-head h2,
.recovery-title h2,
.cmodule-head h2,
.equipment-head h2,
.network-head h2,
.approach-copy h2,
.regions-content h2,
.contact-copy h2 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 5.5vw, 80px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.section-head > div:last-child > p {
  max-width: 360px;
  margin: 0;
  color: #aab9ce;
  font-size: 14px;
}

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

.service-card {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3.5vw, 48px);
  background: rgba(255, 255, 255, 0.012);
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  transition: background-color 250ms ease, transform 250ms var(--ease);
}

.service-card:hover {
  z-index: 1;
  background: var(--navy-raised);
  transform: translateY(-5px);
}

.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 62px;
  color: var(--blue-bright);
  font-size: 11px;
}

.service-top i {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  font-style: normal;
  transition: rotate 220ms ease, border-color 220ms ease;
}

.service-card:hover .service-top i {
  rotate: 45deg;
  border-color: var(--blue-bright);
}

.service-card h3 {
  max-width: 430px;
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 43px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.service-card > p {
  max-width: 500px;
  margin-bottom: 34px;
  color: #aab9ce;
  font-size: 14px;
}

.service-card ul,
.pillar ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: auto 0 0;
  list-style: none;
}

.service-card li,
.pillar li {
  padding: 7px 10px;
  color: #bdcadd;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  font-size: 10px;
}

.recovery {
  color: var(--ink);
  background: var(--paper);
}

.recovery-lead,
.cmodule-head {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(50px, 8vw, 120px);
  margin-bottom: 70px;
}

.recovery-title .kicker {
  color: var(--blue);
}

.recovery-title h2 {
  max-width: 990px;
}

.recovery-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.85fr);
  min-height: 620px;
  margin-bottom: 42px;
  background: var(--ink);
}

.recovery-image {
  position: relative;
  min-height: 620px;
  margin: 0;
  overflow: hidden;
}

.recovery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recovery-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 15, 28, 0.68), transparent 42%);
}

.recovery-image figcaption {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 24px;
  left: 28px;
  color: #d8e3f2;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.recovery-plan {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 5vw, 70px);
  color: var(--white);
}

.recovery-plan > p {
  margin-bottom: 36px;
  color: #b3c0d2;
  font-size: 15px;
}

.recovery-plan ol,
.approach-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.recovery-plan li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  padding: 17px 0;
  border-top: 1px solid var(--line-dark);
}

.recovery-plan li > span {
  color: var(--blue-bright);
  font-size: 10px;
}

.recovery-plan strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
}

.recovery-plan li p {
  margin: 4px 0 0;
  color: #98a8bd;
  font-size: 12px;
}

.project-references {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  border: 0;
}

.project-reference-card {
  min-width: 0;
  overflow: hidden;
  background: #e9edf5;
  border: 1px solid rgba(10, 24, 42, 0.08);
  transition: transform 300ms var(--ease), box-shadow 300ms var(--ease);
}

.project-reference-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(7, 17, 31, 0.12);
}

.project-reference-media {
  aspect-ratio: 2.75 / 1;
  margin: 0;
  overflow: hidden;
  background: var(--paper-deep);
}

.project-reference-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.project-reference-card:first-child .project-reference-media img {
  object-position: 50% 52%;
}

.project-reference-card:last-child .project-reference-media img {
  object-position: 50% center;
}

.project-reference-card:hover .project-reference-media img {
  transform: scale(1.025);
}

.project-reference-copy {
  min-height: 305px;
  padding: clamp(30px, 4vw, 52px);
}

.project-references article {
  padding: 0;
  border: 0;
}

.project-references span,
.network-card > span,
.pillar > span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.project-references h3 {
  margin: 15px 0 18px;
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.project-references p {
  max-width: 520px;
  margin: 0;
  color: #29364a;
  font-size: 15px;
  line-height: 1.65;
}

.cmodule {
  position: relative;
  background:
    radial-gradient(circle at 90% 12%, rgba(40, 120, 255, 0.16), transparent 28%),
    var(--navy-soft);
}

.cmodule-head .kicker {
  color: var(--blue-bright);
}

.cmodule-head h2 {
  margin-bottom: 28px;
}

.cmodule-intro {
  max-width: 680px;
  margin: 0;
  color: #bdcadd;
  font-size: clamp(18px, 1.8vw, 24px);
}

.cmodule-visual {
  position: relative;
  min-height: 610px;
  margin-bottom: 0;
  overflow: hidden;
  background: var(--navy);
}

.cmodule-visual img {
  width: 100%;
  height: 610px;
  object-fit: cover;
  object-position: center 52%;
}

.cmodule-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 52%, rgba(4, 12, 24, 0.72));
}

.cmodule-claim {
  position: absolute;
  z-index: 1;
  right: 44px;
  bottom: 42px;
  width: min(380px, calc(100% - 80px));
  padding: 26px;
  background: rgba(7, 17, 31, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.25);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.cmodule-claim span {
  display: block;
  margin-bottom: 12px;
  color: var(--blue-bright);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cmodule-claim strong {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
  line-height: 1.22;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 70px;
  border-left: 1px solid var(--line-dark);
}

.spec-grid article {
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  background: var(--navy);
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.spec-grid strong {
  margin-bottom: 6px;
  font-family: var(--serif);
  font-size: clamp(37px, 4vw, 58px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1;
}

.spec-grid span {
  color: #9eafc5;
  font-size: 11px;
}

.pillar-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.3fr 0.85fr;
  margin-bottom: 50px;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.pillar {
  min-width: 0;
  padding: clamp(28px, 3vw, 40px);
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.pillar > span {
  color: var(--blue-bright);
}

.pillar h3 {
  margin: 24px 0 18px;
  font-family: var(--serif);
  font-size: clamp(27px, 2.5vw, 37px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.pillar > p {
  margin-bottom: 30px;
  color: #aab9ce;
  font-size: 13px;
}

.pillar ul {
  align-items: flex-start;
  flex-direction: column;
}

.pillar li {
  border-radius: 0;
  line-height: 1.45;
}

.cmodule-actions {
  justify-content: space-between;
  padding-top: 36px;
  border-top: 1px solid var(--line-dark);
}

.cmodule-actions p {
  margin: 0 0 3px;
  font-family: var(--serif);
  font-size: 25px;
}

.cmodule-actions > div > span {
  color: #91a2b9;
  font-size: 12px;
}

.equipment {
  color: var(--ink);
  background: #e2e8f0;
}

.equipment-head {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(50px, 8vw, 120px);
  margin-bottom: 70px;
}

.equipment-head .kicker {
  margin-bottom: 20px;
  color: var(--blue);
}

.equipment-head h2 {
  max-width: 990px;
  margin-bottom: 28px;
}

.equipment-head > div:last-child > p:last-child {
  max-width: 760px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.7vw, 22px);
}

.equipment-capabilities {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 28px;
  color: var(--white);
  background: var(--blue);
}

.equipment-capabilities article {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.equipment-capabilities article:last-child {
  border-right: 0;
}

.equipment-capabilities strong,
.equipment-capabilities span {
  display: block;
}

.equipment-capabilities strong {
  font-family: var(--serif);
  font-size: clamp(27px, 2.7vw, 41px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}

.equipment-capabilities span {
  margin-top: 5px;
  color: #e1ecff;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.equipment-capabilities p {
  min-height: 35px;
  margin: 34px 0 0;
  color: #cbdcff;
  font-size: 10px;
  line-height: 1.55;
}

.equipment-chapter {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(390px, 0.8fr);
  margin-bottom: 28px;
  overflow: hidden;
  background: var(--white);
}

.chapter-media,
.aerated-media {
  position: relative;
  min-height: 610px;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.chapter-media img,
.aerated-media img,
.precast-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease);
}

.chapter-media:hover img,
.aerated-media:hover img,
.precast-visual:hover img {
  transform: scale(1.035);
}

.chapter-media::after,
.aerated-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(4, 12, 24, 0.72), transparent 48%);
  pointer-events: none;
}

.chapter-media figcaption,
.aerated-media figcaption {
  position: absolute;
  z-index: 1;
  right: 34px;
  bottom: 30px;
  left: 34px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  color: var(--white);
}

.chapter-media figcaption span,
.aerated-media figcaption {
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.chapter-media figcaption strong {
  font-family: var(--serif);
  font-size: 37px;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.chapter-copy,
.aerated-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 5vw, 72px);
}

.chapter-index {
  margin: 0 0 28px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.chapter-copy h3,
.aerated-copy h3,
.precast-story-head h3,
.availability-head h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.chapter-copy > p:not(.chapter-index),
.aerated-copy > p:not(.chapter-index) {
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.material-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}

.material-list span {
  padding: 8px 10px;
  color: #40516a;
  border: 1px solid var(--line-light);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

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

.delivery-line li {
  position: relative;
  padding: 18px 8px 0 0;
  color: #40516a;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.delivery-line li::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
}

.delivery-line span {
  display: block;
  margin-bottom: 4px;
  color: #8b99ab;
  font-size: 8px;
}

.aerated-chapter {
  grid-template-columns: minmax(420px, 0.82fr) minmax(0, 1.18fr);
  color: var(--white);
  background: var(--ink);
}

.aerated-copy {
  background:
    radial-gradient(circle at 15% 15%, rgba(26, 105, 255, 0.26), transparent 35%),
    var(--ink);
}

.aerated-copy .chapter-index {
  color: var(--blue-bright);
}

.aerated-copy > p:not(.chapter-index) {
  color: #aebdd1;
}

.aac-capacity {
  display: flex;
  align-items: flex-end;
  gap: 18px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--line-dark);
}

.aac-capacity strong {
  font-family: var(--serif);
  font-size: clamp(55px, 6vw, 85px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.75;
}

.aac-capacity span {
  color: #b7c5d8;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.1em;
  line-height: 1.45;
  text-transform: uppercase;
}

.relocation-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 7px;
  margin-top: 42px;
  color: #dce6f4;
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.relocation-line i {
  color: var(--blue-bright);
  font-style: normal;
}

.aerated-media {
  min-height: 570px;
}

.aerated-media img {
  object-position: center;
}

.precast-story {
  padding: clamp(42px, 6vw, 82px);
  margin-bottom: 28px;
  background: var(--white);
}

.precast-story-head {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.6fr);
  align-items: end;
  gap: clamp(50px, 8vw, 120px);
  margin-bottom: 58px;
}

.precast-story-head h3 {
  max-width: 760px;
}

.precast-story-head > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.precast-specs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.precast-specs article {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.precast-specs span,
.precast-specs small {
  color: #69768a;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.precast-specs strong {
  margin-top: auto;
  font-family: var(--serif);
  font-size: clamp(27px, 3vw, 42px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1;
}

.precast-specs small {
  margin-top: 7px;
  color: var(--blue);
}

.precast-team {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  align-items: center;
  gap: 30px;
  padding: 24px 28px;
  color: var(--white);
  background: var(--blue);
}

.precast-team p {
  margin: 0;
  font-family: var(--serif);
  font-size: 21px;
}

.precast-team div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.precast-team span {
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #e6efff;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.precast-visuals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.precast-visual {
  margin: 0;
  overflow: hidden;
  background: #edf1f6;
}

.precast-visual img {
  height: 270px;
}

.precast-visual figcaption {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5px 13px;
  padding: 22px;
  background: #edf1f6;
}

.precast-visual figcaption span {
  grid-row: span 2;
  color: var(--blue);
  font-size: 9px;
  font-weight: 750;
}

.precast-visual figcaption strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}

.precast-visual figcaption small {
  color: #657286;
  font-size: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.plant-lifecycle li {
  min-height: 96px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.plant-lifecycle span {
  align-self: flex-start;
  color: var(--blue);
  font-size: 9px;
}

.plant-lifecycle strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
}

.availability-head {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) minmax(260px, 0.55fr);
  align-items: end;
  gap: clamp(35px, 6vw, 85px);
  padding: 82px 0 45px;
}

.availability-head .chapter-index {
  margin-bottom: 4px;
}

.availability-head h3 {
  max-width: 690px;
  font-size: clamp(35px, 3.5vw, 49px);
}

.availability-head > p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

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

.facility-card {
  min-width: 0;
  padding: clamp(30px, 4vw, 50px);
  background: var(--white);
  border: 1px solid rgba(10, 24, 42, 0.1);
}

.facility-card-top {
  min-height: 58px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line-light);
}

.facility-card-top > span {
  flex: 0 0 auto;
  color: var(--blue);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.facility-card-top p {
  max-width: 230px;
  margin: 0;
  color: #43536a;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.055em;
  line-height: 1.45;
  text-align: right;
  text-transform: uppercase;
}

.facility-card h3 {
  margin: 34px 0 15px;
  font-family: var(--serif);
  font-size: clamp(34px, 3.5vw, 48px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.facility-intro {
  min-height: 58px;
  margin-bottom: 36px;
  color: var(--ink-soft);
  font-size: 14px;
}

.facility-card dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.facility-card dl div {
  min-height: 106px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.facility-card dt {
  color: #657286;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.facility-card dd {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 31px);
  letter-spacing: -0.04em;
  line-height: 1;
}

.network {
  color: var(--ink);
  background: var(--paper);
}

.network-head {
  display: grid;
  grid-template-columns: 220px minmax(0, 1.15fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: clamp(40px, 6vw, 90px);
  margin-bottom: 70px;
}

.network-head > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

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

.network-card {
  min-height: 350px;
  padding: 30px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  transition: color 220ms ease, background-color 220ms ease;
}

.network-card:hover {
  color: var(--white);
  background: var(--ink);
}

.network-card h3 {
  margin: 70px 0 18px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.network-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.network-card:hover p {
  color: #aebdd1;
}

.accountability {
  min-height: 170px;
  display: grid;
  grid-template-columns: 0.9fr 1.5fr auto;
  align-items: center;
  gap: 50px;
  padding: 32px 42px;
  color: var(--white);
  background: var(--blue);
}

.accountability strong {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
}

.accountability p {
  max-width: 590px;
  margin: 0;
  color: #e2ecff;
  font-size: 13px;
}

.accountability > span {
  font-family: var(--serif);
  font-size: 28px;
}

.approach {
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.95), rgba(7, 17, 31, 0.9)),
    url("assets/digital-strategy.jpg") center / cover fixed;
}

.approach-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(500px, 1.2fr);
  gap: clamp(70px, 10vw, 150px);
}

.approach-copy h2 {
  margin: 45px 0 30px;
}

.approach-copy > p {
  max-width: 520px;
  color: #aebdd1;
  font-size: 15px;
}

.approach-list {
  border-top: 1px solid var(--line-dark);
}

.approach-list li {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line-dark);
}

.approach-list li > span {
  color: var(--blue-bright);
  font-size: 11px;
}

.approach-list h3 {
  margin-bottom: 5px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
}

.approach-list p {
  max-width: 520px;
  margin: 0;
  color: #9fafc4;
  font-size: 12px;
}

.regions {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-block: 130px;
}

.regions-media,
.regions-shade {
  position: absolute;
  inset: 0;
}

.regions-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.regions-shade {
  background: linear-gradient(90deg, rgba(4, 11, 21, 0.96) 0%, rgba(4, 11, 21, 0.76) 50%, rgba(4, 11, 21, 0.22) 100%);
}

.regions-content {
  position: relative;
  z-index: 1;
}

.regions-content h2 {
  max-width: 900px;
  margin-bottom: 28px;
}

.regions-content > p:not(.eyebrow) {
  max-width: 540px;
  margin-bottom: 36px;
  color: #bcc9da;
}

.market-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  max-width: 760px;
}

.market-list span {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(7, 17, 31, 0.42);
  font-size: 10px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.contact {
  padding-block: clamp(100px, 11vw, 160px);
  color: var(--white);
  background: var(--blue);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(370px, 0.65fr);
  align-items: end;
  gap: clamp(70px, 10vw, 150px);
}

.contact-copy .eyebrow {
  color: #e2ecff;
}

.contact-copy .eyebrow > span {
  background: var(--white);
}

.contact-copy h2 {
  max-width: 800px;
  font-size: clamp(60px, 7vw, 105px);
}

.contact-copy > p:last-child {
  max-width: 650px;
  margin: 35px 0 0;
  color: #dfebff;
  font-size: 17px;
}

.contact-card {
  padding: 30px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 30px 80px rgba(4, 25, 65, 0.25);
}

.contact-name {
  margin-bottom: 2px;
  font-family: var(--serif);
  font-size: 33px;
  letter-spacing: -0.04em;
}

.contact-card > span {
  display: block;
  margin-bottom: 38px;
  color: var(--ink-soft);
  font-size: 11px;
}

.contact-card > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 0;
  border-top: 1px solid var(--line-light);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.contact-card > a i {
  font-style: normal;
  transition: transform 180ms ease;
}

.contact-card > a:hover i {
  transform: translate(3px, -3px);
}

.contact-meta {
  display: flex;
  gap: 8px;
  margin-top: 28px;
}

.contact-meta span {
  padding: 6px 9px;
  color: var(--ink-soft);
  border: 1px solid var(--line-light);
  font-size: 9px;
  text-transform: uppercase;
}

.site-footer {
  padding-block: 44px;
  color: var(--white);
  background: #030a13;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  align-items: center;
  gap: 50px;
}

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

.footer-links a {
  color: #aab9ce;
  font-size: 10px;
  text-decoration: none;
}

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

.site-footer > .shell > p {
  margin: 0;
  color: #7f90a7;
  font-size: 9px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

:focus-visible {
  outline: 2px solid var(--blue-bright);
  outline-offset: 5px;
}

@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 56px, 1280px);
  }

  .site-nav {
    gap: 17px;
  }

  .site-nav a {
    font-size: 11px;
  }

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

  .hero-note {
    display: none;
  }

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

  .metric-grid article {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .intro-grid,
  .section-head,
  .recovery-lead,
  .cmodule-head,
  .equipment-head {
    grid-template-columns: 170px minmax(0, 1fr);
  }

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

  .equipment-capabilities article:nth-child(2) {
    border-right: 0;
  }

  .equipment-capabilities article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .precast-story-head {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr);
    gap: 55px;
  }

  .precast-team {
    grid-template-columns: 1fr;
  }

  .precast-team div {
    justify-content: flex-start;
  }

  .availability-head {
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .availability-head > p:last-child {
    grid-column: 2;
  }

  .network-head {
    grid-template-columns: 170px minmax(0, 1fr);
  }

  .network-head > p {
    grid-column: 2;
  }

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

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

  .pillar:nth-child(2) {
    grid-row: span 2;
  }

  .approach-grid {
    grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
    gap: 70px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 78px;
  }

  .menu-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 34px 28px;
    background: rgba(7, 17, 31, 0.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .site-nav a {
    padding: 18px 0;
    border-bottom: 1px solid var(--line-dark);
    font-family: var(--serif);
    font-size: 29px;
    font-weight: 400;
  }

  .site-nav > a::after {
    display: none;
  }

  .site-nav .nav-cta {
    justify-content: space-between;
    padding: 18px;
    margin-top: 24px;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 700;
  }

  .section-head > div:last-child {
    display: block;
  }

  .section-head > div:last-child > p {
    margin-top: 28px;
  }

  .recovery-showcase,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .project-references {
    grid-template-columns: 1fr;
  }

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

  .equipment-chapter,
  .aerated-chapter {
    grid-template-columns: 1fr;
  }

  .chapter-media,
  .aerated-media {
    min-height: 500px;
  }

  .precast-story-head {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 30px;
  }

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

  .precast-visuals {
    grid-template-columns: 1fr;
  }

  .precast-visual img {
    height: 390px;
  }

  .recovery-image,
  .recovery-showcase {
    min-height: 500px;
  }

  .recovery-plan {
    min-height: 520px;
  }

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

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

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

@media (max-width: 680px) {
  :root {
    --shell: min(100% - 32px, 1280px);
  }

  .brand-copy small {
    display: none;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .hero {
    min-height: 900px;
  }

  .hero-media img {
    object-position: 64% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(4, 11, 21, 0.94), rgba(4, 11, 21, 0.55)),
      linear-gradient(0deg, rgba(4, 11, 21, 0.98) 0%, transparent 62%);
  }

  .hero-inner {
    min-height: 900px;
    align-items: center;
    padding-top: 130px;
    padding-bottom: 270px;
  }

  .hero h1 {
    font-size: clamp(54px, 17vw, 78px);
    line-height: 0.92;
  }

  .hero-lead {
    font-size: 17px;
  }

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

  .hero-actions .button {
    width: 100%;
  }

  .hero-metrics {
    background: rgba(4, 11, 21, 0.78);
  }

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

  .metric-grid article {
    min-height: 105px;
    padding: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .metric-grid article:nth-child(odd) {
    border-left: 0;
  }

  .metric-grid article:nth-child(-n + 2) {
    border-top: 0;
  }

  .metric-grid strong {
    font-size: 34px;
  }

  .audience-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    padding-block: 24px;
  }

  .audience-inner div {
    gap: 8px;
  }

  .audience-inner span {
    padding: 6px 9px;
    border: 1px solid var(--line-light);
    font-size: 9px;
  }

  .section {
    padding-block: 86px;
  }

  .intro-grid,
  .section-head,
  .recovery-lead,
  .cmodule-head,
  .equipment-head,
  .network-head {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .intro-copy h2,
  .section-head h2,
  .recovery-title h2,
  .cmodule-head h2,
  .equipment-head h2,
  .network-head h2,
  .approach-copy h2,
  .regions-content h2 {
    font-size: clamp(43px, 13vw, 60px);
  }

  .intro-copy h2 {
    margin-bottom: 40px;
  }

  .intro-columns,
  .service-grid,
  .project-references,
  .pillar-grid {
    grid-template-columns: 1fr;
  }

  .intro-columns {
    gap: 26px;
    margin-bottom: 50px;
  }

  .value-line {
    grid-template-columns: 1fr;
  }

  .value-line span,
  .value-line span:first-child {
    padding: 18px 0;
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .value-line span::before {
    display: none;
  }

  .section-head > div:last-child > p {
    margin-top: 24px;
  }

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

  .recovery-image,
  .recovery-showcase {
    min-height: 390px;
  }

  .recovery-plan {
    min-height: auto;
    padding: 34px 24px;
  }

  .project-reference-media {
    aspect-ratio: auto;
    height: 230px;
  }

  .project-reference-copy {
    min-height: auto;
    padding: 30px 24px 34px;
  }

  .facility-card {
    padding: 28px 22px;
  }

  .equipment-capabilities {
    grid-template-columns: 1fr;
  }

  .equipment-capabilities article {
    min-height: 155px;
    padding: 24px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .equipment-capabilities article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .equipment-capabilities article:last-child {
    border-bottom: 0;
  }

  .equipment-capabilities p {
    min-height: 0;
    margin-top: 22px;
  }

  .chapter-media,
  .aerated-media {
    min-height: 330px;
  }

  .chapter-media figcaption,
  .aerated-media figcaption {
    right: 22px;
    bottom: 20px;
    left: 22px;
  }

  .chapter-media figcaption strong {
    font-size: 28px;
  }

  .chapter-copy,
  .aerated-copy {
    padding: 36px 24px 42px;
  }

  .delivery-line {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 22px;
  }

  .delivery-line li:nth-child(n + 4)::before {
    display: none;
  }

  .aac-capacity {
    align-items: flex-start;
    flex-direction: column;
  }

  .relocation-line {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .relocation-line i {
    transform: rotate(90deg);
  }

  .precast-story {
    padding: 38px 22px;
  }

  .precast-specs {
    grid-template-columns: 1fr;
  }

  .precast-specs article {
    min-height: 150px;
  }

  .precast-team {
    padding: 24px;
  }

  .precast-team div {
    align-items: flex-start;
    flex-direction: column;
  }

  .precast-visual img {
    height: 230px;
  }

  .plant-lifecycle {
    grid-template-columns: 1fr;
  }

  .plant-lifecycle li {
    min-height: 72px;
  }

  .availability-head {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 68px;
  }

  .availability-head > p:last-child {
    grid-column: auto;
  }

  .facility-card-top {
    flex-direction: column;
    gap: 10px;
  }

  .facility-card-top p {
    max-width: none;
    text-align: left;
  }

  .facility-intro {
    min-height: 0;
  }

  .facility-card dl div {
    min-height: 96px;
    padding: 15px;
  }

  .cmodule-visual,
  .cmodule-visual img {
    height: 500px;
    min-height: 500px;
  }

  .cmodule-visual img {
    object-position: 58% center;
  }

  .cmodule-claim {
    right: 18px;
    bottom: 18px;
    width: calc(100% - 36px);
  }

  .spec-grid article {
    min-height: 125px;
    padding: 20px;
  }

  .pillar:nth-child(2) {
    grid-row: auto;
  }

  .cmodule-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 24px;
  }

  .cmodule-actions .button {
    width: 100%;
  }

  .network-head > p {
    grid-column: auto;
  }

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

  .network-card {
    min-height: 290px;
  }

  .network-card h3 {
    margin-top: 50px;
  }

  .accountability {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 28px 24px;
  }

  .approach {
    background-attachment: scroll;
  }

  .regions {
    min-height: 690px;
    padding-block: 90px;
  }

  .regions-media img {
    object-position: 62% center;
  }

  .regions-shade {
    background: rgba(4, 11, 21, 0.75);
  }

  .contact-copy h2 {
    font-size: clamp(55px, 16vw, 80px);
  }

  .contact-card {
    padding: 25px 22px;
  }

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

@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;
  }

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