:root {
  --brand-blue: #081063;
  --ink: #111827;
  --ink-soft: #5c6472;
  --forest: #132b63;
  --forest-dark: #071334;
  --green: #2f5fa7;
  --green-light: #dce5f4;
  --signal: #e3ad2b;
  --signal-dark: #bd8714;
  --steel: #d9dfe8;
  --cream: #eef1f6;
  --paper: #f8f9fb;
  --white: #ffffff;
  --line: rgba(8, 16, 99, 0.15);
  --shadow: 0 24px 70px rgba(8, 16, 60, 0.16);
  --footer-bg: #050d25;
  --hero-tone: 4, 13, 36;
  --hero-panel: rgba(7, 19, 52, 0.91);
  --container: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 94px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

.company-grid > *,
.people-grid > *,
.section-intro > *,
.sector-grid > *,
.people-process > *,
.production-flow > *,
.work-feature > *,
.method-heading > *,
.method-layout > *,
.method-outcomes > *,
.certification-grid > *,
.capacity-grid > *,
.sites-grid > *,
.careers-grid > *,
.contact-grid > *,
.footer-top > * {
  min-width: 0;
}

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

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(15px);
}

.nav-wrap {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 58px;
  height: 54px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy strong {
  font-family: Bahnschrift, "Arial Narrow", Arial, sans-serif;
  font-size: 1.04rem;
  letter-spacing: 0.04em;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.82rem;
  font-weight: 750;
}

.main-nav > a:not(.button) {
  position: relative;
  padding-block: 8px;
}

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

.main-nav > a:hover::after,
.main-nav > a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid var(--forest);
  border-radius: 2px;
  color: var(--white);
  background: var(--forest);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  color: var(--forest);
  background: transparent;
  transform: translateY(-2px);
}

.button-small {
  min-height: 43px;
  padding-inline: 20px;
}

.button-accent {
  border-color: var(--signal);
  color: var(--ink);
  background: var(--signal);
}

.button-accent:hover,
.button-accent:focus-visible {
  color: var(--white);
  border-color: var(--white);
  background: transparent;
}

.eyebrow {
  margin: 0 0 19px;
  color: var(--green);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--signal);
}

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

h1,
h2,
h3 {
  font-family: Bahnschrift, "Arial Narrow", "Segoe UI", Arial, sans-serif;
}

h1,
h2 {
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.hero {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  color: var(--white);
  background: var(--forest-dark);
}

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

.hero-media::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(var(--hero-tone), 0.98) 0%, rgba(var(--hero-tone), 0.89) 42%, rgba(var(--hero-tone), 0.38) 74%, rgba(var(--hero-tone), 0.5) 100%),
    linear-gradient(0deg, rgba(var(--hero-tone), 0.6), transparent 42%);
  content: "";
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.72) contrast(1.08);
}

.hero-video {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  filter: saturate(0.62) contrast(1.12);
  transition: opacity 700ms ease;
}

.hero-video.is-playing {
  opacity: 1;
}

.hero-media-note {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 14px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 700px;
  align-items: center;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.55fr);
  gap: 80px;
  padding-block: 90px;
}

.hero-copy {
  max-width: 760px;
  min-width: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(3.35rem, 6.3vw, 6.15rem);
  text-transform: uppercase;
}

h1 em {
  display: block;
  color: var(--signal);
  font-style: normal;
}

.hero-text {
  max-width: 630px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-block: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 0.85rem;
  font-weight: 800;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.text-link-light {
  color: var(--white);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 42px;
}

.hero-badges span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-panel {
  align-self: end;
  min-width: 0;
  margin-bottom: 18px;
  padding: 30px;
  border-top: 4px solid var(--signal);
  background: var(--hero-panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero-panel > p {
  margin-bottom: 8px;
  color: var(--signal);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-panel > strong {
  display: block;
  margin-bottom: 22px;
  font-family: Bahnschrift, "Arial Narrow", Arial, sans-serif;
  font-size: 1.5rem;
  line-height: 1.12;
}

.hero-panel ul {
  display: grid;
  gap: 9px;
  margin: 0 0 24px;
  padding: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  list-style: none;
}

.hero-panel li::before {
  margin-right: 9px;
  color: var(--signal);
  content: "■";
  font-size: 0.5rem;
}

.hero-panel a {
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.facts {
  background: var(--signal);
}

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

.facts-grid > div {
  display: grid;
  min-height: 142px;
  align-content: center;
  padding: 24px 28px;
  border-right: 1px solid rgba(21, 27, 24, 0.22);
}

.facts-grid > div:first-child {
  padding-left: 0;
}

.facts-grid > div:last-child {
  border-right: 0;
}

.facts-grid strong {
  font-family: Bahnschrift, "Arial Narrow", Arial, sans-serif;
  font-size: clamp(2rem, 3vw, 3.1rem);
  letter-spacing: -0.04em;
  line-height: 1;
}

.facts-grid span {
  margin-top: 9px;
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

.section {
  padding: 112px 0;
}

.company-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 90px;
}

.company-image {
  position: relative;
  min-height: 520px;
}

.company-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  filter: saturate(0.78);
}

.company-image::before {
  position: absolute;
  z-index: -1;
  top: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  background:
    linear-gradient(90deg, var(--signal) 2px, transparent 2px) 0 0 / 16px 16px,
    linear-gradient(var(--signal) 2px, transparent 2px) 0 0 / 16px 16px;
  content: "";
}

.image-label {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 340px;
  padding: 24px 28px;
  color: var(--white);
  background: var(--forest);
}

.image-label span {
  display: block;
  margin-bottom: 6px;
  color: var(--signal);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.image-label strong {
  font-family: Bahnschrift, "Arial Narrow", Arial, sans-serif;
  font-size: 1.3rem;
}

.company-copy h2,
.section-intro h2,
.work-heading h2,
.cert-copy h2,
.capacity-copy h2,
.contact-copy h2 {
  margin-bottom: 26px;
  font-size: clamp(2.7rem, 4.7vw, 4.7rem);
  text-transform: uppercase;
}

.company-copy .lead {
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 700;
}

.company-copy > p:not(.eyebrow):not(.lead) {
  color: var(--ink-soft);
}

.company-manifesto {
  position: relative;
  margin: 34px 0 4px;
  padding: 24px 26px 24px 30px;
  border: 0;
  border-left: 4px solid var(--signal);
  background: var(--cream);
}

.company-manifesto span {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.company-manifesto p {
  margin: 0;
  color: var(--ink);
  font-family: Bahnschrift, "Arial Narrow", Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 750;
  line-height: 1.35;
}

.company-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 32px;
  border-top: 1px solid var(--line);
}

.company-points span {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 800;
}

.company-points span:nth-child(odd) {
  margin-right: 24px;
}

.company-points span::before {
  margin-right: 8px;
  color: var(--green);
  content: "■";
  font-size: 0.48rem;
}

.people {
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(240, 179, 35, 0.08), transparent 32%),
    var(--forest-dark);
}

.people-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 90px;
}

.people-copy h2 {
  max-width: 720px;
  margin-bottom: 26px;
  font-size: clamp(2.7rem, 4.7vw, 4.7rem);
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-transform: uppercase;
}

.people-copy .lead {
  max-width: 650px;
  font-size: 1.2rem;
  font-weight: 700;
}

.people-copy > p:not(.eyebrow):not(.lead) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.62);
}

.people-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.people-values article {
  padding: 22px 22px 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.people-values article:nth-child(even) {
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.people-values span {
  color: var(--signal);
  font-size: 0.67rem;
  font-weight: 900;
}

.people-values h3 {
  margin: 15px 0 8px;
  font-size: 1rem;
  line-height: 1.15;
  text-transform: uppercase;
}

.people-values p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
}

.people-visual {
  position: relative;
  min-height: 570px;
}

.people-visual::before {
  position: absolute;
  z-index: 2;
  top: -18px;
  right: -18px;
  width: 118px;
  height: 118px;
  background:
    linear-gradient(90deg, var(--signal) 2px, transparent 2px) 0 0 / 16px 16px,
    linear-gradient(var(--signal) 2px, transparent 2px) 0 0 / 16px 16px;
  content: "";
}

.people-visual img {
  width: 100%;
  height: 570px;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.08);
}

.people-stat {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  display: grid;
  width: 235px;
  min-height: 190px;
  align-content: center;
  padding: 28px;
  color: var(--ink);
  background: var(--signal);
}

.people-stat strong {
  font-family: Bahnschrift, "Arial Narrow", Arial, sans-serif;
  font-size: 4.5rem;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.people-stat span {
  margin-top: 12px;
  font-size: 0.7rem;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

.visual-note {
  position: absolute;
  z-index: 3;
  bottom: 12px;
  left: 15px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.strategic-value {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  margin-top: 85px;
  padding: 44px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.strategic-heading .eyebrow {
  margin-bottom: 12px;
}

.strategic-heading h3 {
  max-width: 560px;
  margin-bottom: 0;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.strategic-value > p {
  align-self: end;
  max-width: 620px;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 1rem;
}

.people-process {
  margin-top: 44px;
}

.process-label {
  margin-bottom: 20px;
  color: var(--signal);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.people-process ol {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  list-style: none;
}

.people-process li {
  min-height: 225px;
  padding: 25px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.people-process li > span {
  color: var(--signal);
  font-size: 0.68rem;
  font-weight: 900;
}

.people-process h3 {
  margin: 52px 0 10px;
  font-size: 1.25rem;
  text-transform: uppercase;
}

.people-process li p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
}

.people-careers-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 28px;
  padding: 24px 28px;
  color: var(--ink);
  background: var(--signal);
}

.people-careers-cta div {
  display: grid;
}

.people-careers-cta span {
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.people-careers-cta strong {
  margin-top: 3px;
  font-family: Bahnschrift, "Arial Narrow", Arial, sans-serif;
  font-size: 1.35rem;
  text-transform: uppercase;
}

.people-careers-cta .button {
  flex: 0 0 auto;
  border-color: var(--ink);
  color: var(--white);
  background: var(--ink);
}

.people-careers-cta .button:hover,
.people-careers-cta .button:focus-visible {
  color: var(--ink);
  background: transparent;
}

.sectors {
  background: var(--cream);
}

.section-intro {
  display: grid;
  align-items: end;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 90px;
  margin-bottom: 54px;
}

.section-intro h2 {
  margin-bottom: 0;
}

.section-intro > p {
  margin-bottom: 5px;
  color: var(--ink-soft);
}

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

.sector-card {
  position: relative;
  min-height: 245px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  transition: color 220ms ease, background 220ms ease;
}

.sector-card::after {
  position: absolute;
  right: 24px;
  bottom: 20px;
  color: var(--signal);
  content: "↗";
  font-size: 1.35rem;
  opacity: 0;
  transform: translate(-6px, 6px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.sector-card:hover {
  color: var(--white);
  background: var(--forest);
}

.sector-card:hover::after {
  opacity: 1;
  transform: translate(0, 0);
}

.sector-card > span {
  color: var(--green);
  font-family: Bahnschrift, "Arial Narrow", Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 900;
}

.sector-card:hover > span {
  color: var(--signal);
}

.sector-card h3 {
  max-width: 250px;
  margin: 42px 0 12px;
  font-size: 1.55rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.sector-card p {
  max-width: 275px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.sector-card:hover p {
  color: rgba(255, 255, 255, 0.67);
}

.work {
  color: var(--white);
  background: var(--ink);
}

.work-heading {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 80px;
  margin-bottom: 52px;
}

.work-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -12px;
}

.work-heading h2 {
  margin-bottom: 0;
}

.work-heading > p:not(.eyebrow) {
  align-self: end;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.62);
}

.production-flow {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  margin-bottom: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.flow-intro {
  padding: 34px 34px 34px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.flow-intro .eyebrow {
  margin-bottom: 16px;
}

.flow-intro h3 {
  max-width: 370px;
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.production-flow ol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.production-flow li {
  min-height: 220px;
  padding: 28px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.production-flow li:nth-child(3n) {
  border-right: 0;
}

.production-flow li:nth-child(n + 4) {
  border-bottom: 0;
}

.production-flow li > span {
  color: var(--signal);
  font-size: 0.68rem;
  font-weight: 900;
}

.production-flow li h3 {
  margin: 48px 0 9px;
  font-size: 1.05rem;
  text-transform: uppercase;
}

.production-flow li p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
}

.work-feature {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  margin-bottom: 18px;
}

.work-feature-media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.work-feature-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 55%, rgba(3, 13, 10, 0.3));
  content: "";
}

.work-feature-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  filter: saturate(0.75) contrast(1.08);
  transition: filter 300ms ease, transform 650ms ease;
}

.work-feature:hover img {
  filter: saturate(1);
  transform: scale(1.02);
}

.work-feature-media span {
  position: absolute;
  z-index: 2;
  bottom: 14px;
  left: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-feature-copy {
  display: grid;
  align-content: center;
  padding: 48px;
  border-top: 4px solid var(--signal);
  background: var(--forest);
}

.work-feature-copy h3 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.8vw, 3.8rem);
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-transform: uppercase;
}

.work-feature-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
}

.work-feature-copy ul {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  list-style: none;
}

.work-feature-copy li {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.76rem;
  font-weight: 700;
}

.work-feature-copy li::before {
  margin-right: 10px;
  color: var(--signal);
  content: "■";
  font-size: 0.48rem;
}

.gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.gallery-item {
  position: relative;
  min-height: 355px;
  overflow: hidden;
  margin: 0;
  background: var(--forest-dark);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 355px;
  object-fit: cover;
  filter: saturate(0.76);
  transition: filter 300ms ease, transform 500ms ease;
}

.gallery-item::after {
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(3, 13, 10, 0.86));
  content: "";
  pointer-events: none;
}

.gallery-item:hover img {
  filter: saturate(1);
  transform: scale(1.025);
}

.gallery-wide {
  min-height: 440px;
}

.gallery-wide img {
  min-height: 440px;
}

.gallery-item figcaption {
  position: absolute;
  z-index: 2;
  right: 25px;
  bottom: 22px;
  left: 25px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: Bahnschrift, "Arial Narrow", Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
}

.gallery-item figcaption span {
  color: var(--signal);
  font-size: 0.68rem;
}

.services-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.service-box {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 22px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.service-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid var(--signal);
  color: var(--signal);
  font-family: Bahnschrift, "Arial Narrow", Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 900;
}

.service-box h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
  text-transform: uppercase;
}

.service-box p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.84rem;
}

.industrial-method {
  background: var(--cream);
}

.method-heading {
  display: grid;
  align-items: end;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 90px;
  margin-bottom: 50px;
}

.method-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(2.7rem, 4.7vw, 4.7rem);
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-transform: uppercase;
}

.method-heading > p {
  max-width: 510px;
  margin-bottom: 5px;
  color: var(--ink-soft);
}

.method-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
}

.method-media {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: var(--ink);
}

.method-media::after {
  position: absolute;
  inset: 42% 0 0;
  background: linear-gradient(transparent, rgba(4, 18, 13, 0.9));
  content: "";
}

.method-media img {
  width: 100%;
  height: 100%;
  min-height: 650px;
  object-fit: cover;
  filter: saturate(0.62) contrast(1.12);
  transition: filter 350ms ease, transform 700ms ease;
}

.method-media:hover img {
  filter: saturate(0.9) contrast(1.08);
  transform: scale(1.025);
}

.method-media-caption {
  position: absolute;
  z-index: 2;
  right: 32px;
  bottom: 42px;
  left: 32px;
  color: var(--white);
}

.method-media-caption span {
  display: block;
  margin-bottom: 8px;
  color: var(--signal);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.method-media-caption strong {
  display: block;
  max-width: 500px;
  font-family: Bahnschrift, "Arial Narrow", Arial, sans-serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
  text-transform: uppercase;
}

.method-media > small {
  position: absolute;
  z-index: 2;
  bottom: 14px;
  left: 32px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.method-cards {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.method-card {
  position: relative;
  display: grid;
  min-height: 210px;
  grid-template-columns: 70px 1fr;
  align-content: center;
  column-gap: 24px;
  padding: 30px 64px 30px 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  transition: color 220ms ease, background 220ms ease;
}

.method-card:hover {
  color: var(--white);
  background: var(--forest);
}

.method-number {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 900;
}

.method-card:hover .method-number {
  color: var(--signal);
}

.method-symbol {
  display: grid;
  width: 64px;
  height: 64px;
  align-content: center;
  gap: 6px;
  grid-row: 1 / span 3;
}

.method-symbol i {
  display: block;
  height: 7px;
  border: 1px solid var(--green);
  transform: skewX(-22deg);
}

.method-symbol i:nth-child(2) {
  width: 78%;
}

.method-symbol i:nth-child(3) {
  width: 56%;
}

.method-symbol-plan {
  position: relative;
  border: 1px solid var(--green);
}

.method-symbol-plan i {
  position: absolute;
  border: 0;
  background: var(--green);
  transform: none;
}

.method-symbol-plan i:nth-child(1) {
  top: 20px;
  left: 11px;
  width: 40px;
  height: 1px;
}

.method-symbol-plan i:nth-child(2) {
  top: 11px;
  left: 21px;
  width: 1px;
  height: 40px;
}

.method-symbol-plan i:nth-child(3) {
  right: 11px;
  bottom: 11px;
  width: 18px;
  height: 18px;
  border: 1px solid var(--green);
  background: transparent;
}

.method-symbol-check {
  position: relative;
  border: 1px solid var(--green);
  border-radius: 50%;
}

.method-symbol-check i {
  position: absolute;
  border: 0;
  background: var(--green);
  transform-origin: left center;
}

.method-symbol-check i:nth-child(1) {
  top: 34px;
  left: 16px;
  width: 15px;
  height: 2px;
  transform: rotate(42deg);
}

.method-symbol-check i:nth-child(2) {
  top: 38px;
  left: 27px;
  width: 28px;
  height: 2px;
  transform: rotate(-48deg);
}

.method-symbol-check i:nth-child(3) {
  display: none;
}

.method-card:hover .method-symbol,
.method-card:hover .method-symbol-plan,
.method-card:hover .method-symbol-check {
  border-color: var(--signal);
}

.method-card:hover .method-symbol i,
.method-card:hover .method-symbol-plan i,
.method-card:hover .method-symbol-check i {
  border-color: var(--signal);
  background-color: var(--signal);
}

.method-card > p {
  margin-bottom: 5px;
  color: var(--green);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.method-card:hover > p {
  color: var(--signal);
}

.method-card h3 {
  margin-bottom: 8px;
  font-size: 1.35rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.method-card > small {
  max-width: 550px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.55;
}

.method-card:hover > small {
  color: rgba(255, 255, 255, 0.58);
}

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

.method-outcomes > div {
  min-height: 170px;
  padding: 27px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.method-outcomes span {
  color: var(--green);
  font-size: 0.66rem;
  font-weight: 900;
}

.method-outcomes strong {
  display: block;
  margin: 25px 0 6px;
  font-family: Bahnschrift, "Arial Narrow", Arial, sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.method-outcomes p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.certifications {
  background:
    linear-gradient(90deg, transparent 49.95%, var(--line) 50%, transparent 50.05%),
    var(--paper);
}

.certification-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
}

.cert-copy > p:not(.eyebrow) {
  max-width: 500px;
  margin-bottom: 30px;
  color: var(--ink-soft);
}

.cert-cards {
  display: grid;
  gap: 18px;
}

.cert-card {
  position: relative;
  padding: 32px 34px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 14px 40px rgba(16, 62, 48, 0.07);
}

.cert-card > span {
  position: absolute;
  top: 30px;
  right: 30px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
}

.cert-card p {
  margin-bottom: 6px;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cert-card strong {
  display: block;
  margin-bottom: 14px;
  color: var(--forest);
  font-family: Bahnschrift, "Arial Narrow", Arial, sans-serif;
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  letter-spacing: -0.04em;
  line-height: 1;
}

.cert-card small {
  display: block;
  max-width: 560px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.55;
}

.capacity {
  background: var(--cream);
}

.capacity-grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: 1.05fr 0.95fr;
}

.capacity-image img {
  width: 100%;
  height: 100%;
  min-height: 530px;
  object-fit: cover;
  filter: saturate(0.72);
}

.capacity-copy {
  padding: 60px;
  color: var(--white);
  background: var(--forest);
}

.equipment-list {
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.equipment-list > div {
  display: grid;
  align-items: center;
  grid-template-columns: 75px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.equipment-list strong {
  color: var(--signal);
  font-family: Bahnschrift, "Arial Narrow", Arial, sans-serif;
  font-size: 2.2rem;
}

.equipment-list span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.84rem;
}

.sites-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 20px;
}

.site-card {
  padding: 42px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.site-card-dark {
  color: var(--white);
  border-color: var(--ink);
  background: var(--ink);
}

.site-card > p {
  margin-bottom: 30px;
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-card-dark > p {
  color: var(--signal);
}

.site-card h3 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.site-card > span {
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-card-dark > span {
  color: rgba(255, 255, 255, 0.5);
}

.site-card dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 34px 0 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.site-card-dark dl {
  border-color: rgba(255, 255, 255, 0.16);
}

.site-card dl > div {
  display: grid;
  padding: 16px 14px 16px 0;
}

.site-card dt {
  color: var(--ink-soft);
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-card-dark dt {
  color: rgba(255, 255, 255, 0.45);
}

.site-card dd {
  margin: 3px 0 0;
  font-family: Bahnschrift, "Arial Narrow", Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
}

.site-card address {
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-style: normal;
}

.site-card-dark address {
  color: rgba(255, 255, 255, 0.56);
}

.careers {
  background:
    linear-gradient(90deg, transparent 49.95%, var(--line) 50%, transparent 50.05%),
    var(--paper);
}

.careers-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
}

.careers-copy h2 {
  margin-bottom: 26px;
  font-size: clamp(2.7rem, 4.7vw, 4.7rem);
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-transform: uppercase;
}

.careers-copy .lead {
  font-size: 1.18rem;
  font-weight: 750;
}

.careers-copy > p:not(.eyebrow):not(.lead) {
  max-width: 540px;
  margin-bottom: 30px;
  color: var(--ink-soft);
}

.careers-copy > small {
  display: block;
  max-width: 380px;
  margin-top: 13px;
  color: var(--ink-soft);
  font-size: 0.68rem;
}

.career-areas {
  border-top: 4px solid var(--signal);
  background: var(--forest);
  box-shadow: var(--shadow);
}

.areas-label {
  margin: 0;
  padding: 26px 30px 18px;
  color: var(--signal);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.career-areas article {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 20px;
  padding: 22px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--white);
}

.career-areas article > span {
  color: var(--signal);
  font-size: 0.68rem;
  font-weight: 900;
}

.career-areas h3 {
  margin-bottom: 5px;
  font-size: 1.08rem;
  text-transform: uppercase;
}

.career-areas article p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
}

.contact {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(240, 179, 35, 0.08), transparent 28%),
    var(--forest-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.62);
}

.contact-details {
  display: grid;
  gap: 18px;
}

.contact-details a {
  display: grid;
  width: fit-content;
  font-family: Bahnschrift, "Arial Narrow", Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
}

.contact-details span {
  margin-bottom: 2px;
  color: var(--signal);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form {
  padding: 38px;
  border-top: 4px solid var(--signal);
  color: var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 18px;
  font-size: 0.76rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  color: var(--ink);
  background: var(--white);
  transition: border 180ms ease, box-shadow 180ms ease;
}

.contact-form input {
  height: 50px;
  padding: 0 14px;
}

.contact-form select {
  height: 50px;
  padding: 0 42px 0 14px;
  cursor: pointer;
}

.contact-form textarea {
  min-height: 140px;
  padding: 13px 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(29, 107, 79, 0.12);
}

.privacy-check {
  display: flex !important;
  align-items: flex-start;
  gap: 10px !important;
  color: var(--ink-soft);
  font-weight: 500 !important;
}

.privacy-check input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 2px;
  accent-color: var(--green);
}

.contact-form .button {
  width: 100%;
}

.contact-form .button-accent:hover,
.contact-form .button-accent:focus-visible {
  color: var(--ink);
  border-color: var(--forest);
}

.form-status {
  min-height: 22px;
  margin: 14px 0 0;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
}

.form-status.error {
  color: #a63333;
}

.site-footer {
  padding: 50px 0 24px;
  color: var(--white);
  background: var(--footer-bg);
}

.footer-top {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr 1fr;
  padding-bottom: 38px;
}

.brand-logo-light {
  width: 62px;
  height: 58px;
}

.brand-light .brand-copy small {
  color: rgba(255, 255, 255, 0.45);
}

.footer-top > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.76rem;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.7rem;
}

.footer-bottom p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .main-nav {
    position: fixed;
    top: 82px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 34px 20px;
    background: var(--paper);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-15px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav > a {
    padding: 17px 8px;
    border-bottom: 1px solid var(--line);
    font-family: Bahnschrift, "Arial Narrow", Arial, sans-serif;
    font-size: 1.35rem;
    text-transform: uppercase;
  }

  .main-nav .button {
    margin-top: 22px;
    font-family: inherit;
    font-size: 0.9rem;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

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

  .hero-panel {
    max-width: 520px;
    justify-self: end;
  }

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

  .facts-grid > div {
    border-bottom: 1px solid rgba(21, 27, 24, 0.22);
  }

  .facts-grid > div:first-child {
    padding-left: 28px;
  }

  .company-grid,
  .people-grid,
  .certification-grid,
  .careers-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .section-intro,
  .work-heading,
  .method-heading,
  .method-layout,
  .strategic-value,
  .production-flow,
  .work-feature {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .work-feature {
    gap: 0;
  }

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

  .people-process ol {
    grid-template-columns: 1fr 1fr;
  }

  .flow-intro {
    padding-right: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .production-flow ol {
    grid-template-columns: 1fr 1fr;
  }

  .production-flow li:nth-child(3n) {
    border-right: 1px solid rgba(255, 255, 255, 0.16);
  }

  .production-flow li:nth-child(even) {
    border-right: 0;
  }

  .production-flow li:nth-child(n + 4) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .production-flow li:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .services-row {
    grid-template-columns: 1fr;
  }

  .method-media,
  .method-media img {
    min-height: 500px;
  }

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

  .capacity-image img {
    min-height: 420px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
    justify-items: start;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  :root {
    --container: min(calc(100% - 28px), 1180px);
  }

  .nav-wrap {
    min-height: 72px;
  }

  .brand-logo {
    width: 50px;
    height: 46px;
  }

  .brand-copy small {
    display: none;
  }

  .main-nav {
    top: 72px;
  }

  section[id] {
    scroll-margin-top: 84px;
  }

  .hero {
    min-height: auto;
  }

  .hero-media::after {
    background: rgba(var(--hero-tone), 0.82);
  }

  .hero-grid {
    min-height: auto;
    padding-block: 70px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.25rem, 10vw, 3rem);
    letter-spacing: -0.055em;
  }

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

  .hero-actions .text-link {
    align-self: flex-start;
  }

  .hero-panel {
    width: 100%;
    margin: 0;
    padding: 26px 22px;
  }

  .hero-panel > strong {
    overflow-wrap: anywhere;
  }

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

  .facts-grid > div {
    min-height: 105px;
    padding: 20px 8px;
    border-right: 0;
  }

  .facts-grid > div:first-child {
    padding-left: 8px;
  }

  .section {
    padding: 78px 0;
  }

  .company-image,
  .company-image img {
    min-height: 380px;
    height: 380px;
  }

  .image-label {
    right: 12px;
    bottom: 12px;
    left: 12px;
    max-width: none;
  }

  .company-copy h2,
  .people-copy h2,
  .section-intro h2,
  .work-heading h2,
  .cert-copy h2,
  .capacity-copy h2,
  .contact-copy h2 {
    font-size: clamp(2.5rem, 12vw, 3.6rem);
  }

  .company-points,
  .people-values,
  .sector-grid,
  .gallery,
  .services-row,
  .sites-grid {
    grid-template-columns: 1fr;
  }

  .company-points span:nth-child(odd) {
    margin-right: 0;
  }

  .people-values article {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .people-values article:nth-child(even) {
    padding-left: 0;
    border-left: 0;
  }

  .people-visual,
  .people-visual img {
    min-height: 430px;
    height: 430px;
  }

  .people-stat {
    width: 190px;
    min-height: 155px;
    padding: 22px;
  }

  .people-stat strong {
    font-size: 3.6rem;
  }

  .strategic-value {
    margin-top: 60px;
    padding: 35px 0;
  }

  .people-process ol {
    grid-template-columns: 1fr;
  }

  .people-process li {
    min-height: auto;
  }

  .people-process h3 {
    margin-top: 28px;
  }

  .people-careers-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .people-careers-cta .button {
    width: 100%;
  }

  .production-flow ol {
    grid-template-columns: 1fr;
  }

  .production-flow li,
  .production-flow li:nth-child(3n),
  .production-flow li:nth-child(even),
  .production-flow li:nth-child(n + 4),
  .production-flow li:nth-last-child(-n + 2) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .production-flow li:last-child {
    border-bottom: 0;
  }

  .production-flow li h3 {
    margin-top: 25px;
  }

  .work-feature-media,
  .work-feature-media img {
    min-height: 350px;
  }

  .work-feature-copy {
    padding: 34px 24px;
  }

  .method-card {
    grid-template-columns: 58px 1fr;
    padding: 26px 48px 26px 22px;
  }

  .method-symbol {
    width: 52px;
    height: 52px;
  }

  .method-outcomes {
    grid-template-columns: 1fr;
  }

  .method-outcomes > div {
    min-height: 145px;
  }

  .sector-card {
    min-height: 215px;
  }

  .gallery-item,
  .gallery-wide,
  .gallery-item img,
  .gallery-wide img {
    min-height: 330px;
  }

  .service-box {
    padding: 27px 22px;
  }

  .cert-card {
    padding: 28px 24px;
  }

  .capacity-copy {
    padding: 38px 24px;
  }

  .capacity-image img {
    min-height: 340px;
  }

  .site-card {
    padding: 32px 24px;
  }

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

  .site-card dl > div {
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--line);
  }

  .site-card-dark dl > div {
    border-color: rgba(255, 255, 255, 0.12);
  }

  .contact-grid {
    gap: 45px;
  }

  .contact-form {
    padding: 28px 18px;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .footer-links {
    column-gap: 18px;
    row-gap: 10px;
  }
}

@media (max-width: 360px) {
  .company-copy h2,
  .people-copy h2,
  .section-intro h2,
  .work-heading h2,
  .cert-copy h2,
  .capacity-copy h2,
  .contact-copy h2 {
    font-size: clamp(2rem, 10vw, 2.6rem);
    overflow-wrap: anywhere;
  }

  .contact-details a {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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