:root {
  --ink: #111816;
  --ink-soft: #18221f;
  --forest: #234638;
  --green: #a8ef55;
  --green-dark: #5e9e3d;
  --cream: #f2f1eb;
  --paper: #fafaf7;
  --white: #ffffff;
  --muted: #65706b;
  --muted-light: #adb7b2;
  --line: #d9ddd7;
  --line-dark: rgba(255, 255, 255, .14);
  --shadow: 0 20px 60px rgba(17, 24, 22, .12);
  --radius: 4px;
  --container: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

h1,
h2,
h3 {
  letter-spacing: -.04em;
  line-height: 1.03;
}

h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(3.25rem, 6.4vw, 6.35rem);
  font-weight: 620;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.4rem, 4.7vw, 4.8rem);
  font-weight: 610;
}

h3 {
  margin-bottom: 16px;
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 620;
}

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

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  padding-block: 120px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--green);
  color: var(--ink);
  transform: translateY(-150%);
  transition: transform .2s ease;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--green);
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: .16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  background: currentColor;
  content: "";
}

.eyebrow-dark {
  color: var(--green-dark);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: .94rem;
  font-weight: 720;
  line-height: 1;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease;
}

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

.button:focus-visible,
.text-link:focus-visible,
.main-nav a:focus-visible,
.language-switch button:focus-visible,
.menu-button:focus-visible,
.site-footer a:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 4px;
}

.button svg {
  width: 20px;
  height: 20px;
}

.button-primary {
  background: var(--green);
  color: var(--ink);
}

.button-primary:hover {
  background: #baff69;
}

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

.button-dark:hover {
  background: var(--forest);
}

.button-outline {
  border-color: rgba(255, 255, 255, .42);
  color: var(--white);
}

.button-outline:hover {
  border-color: var(--green);
  color: var(--green);
}

.button-small {
  min-height: 44px;
  padding: 12px 17px;
  font-size: .84rem;
}

.text-link {
  position: relative;
  display: inline-block;
  padding-block: 8px;
  color: var(--white);
  font-weight: 690;
}

.text-link::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform-origin: right;
  transition: transform .25s ease;
}

.text-link:hover::after {
  transform: scaleX(.35);
}

.text-link-dark {
  color: var(--ink);
}

/* Header */
.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(17, 24, 22, .1);
  background: rgba(250, 250, 247, .94);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 13px;
  color: var(--ink);
}

.brand-mark {
  display: block;
  position: relative;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  overflow: hidden;
}

.brand-mark img {
  display: block;
  position: relative;
  left: -46%;
  width: auto;
  max-width: none;
  height: 100%;
}

.brand-text {
  display: block;
  font-size: 1.28rem;
  font-weight: 780;
  letter-spacing: .13em;
  line-height: 1;
}

.brand-text strong {
  color: var(--green-dark);
  font-weight: inherit;
}

.brand-copy {
  display: grid;
  gap: 7px;
}

.brand-subline {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #747f7a;
  font-size: .54rem;
  font-weight: 760;
  letter-spacing: .09em;
  line-height: 1;
  text-transform: uppercase;
}

.brand-subline img {
  width: auto;
  height: 12px;
  mix-blend-mode: multiply;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.8vw, 36px);
}

.main-nav a {
  color: #38423e;
  font-size: .88rem;
  font-weight: 650;
  transition: color .2s ease;
}

.main-nav a:hover {
  color: var(--green-dark);
}

.header-actions,
.language-switch {
  display: flex;
  align-items: center;
}

.header-actions {
  gap: 18px;
}

.language-switch {
  gap: 5px;
  color: #82908a;
  font-size: .72rem;
  font-weight: 760;
}

.language-switch button {
  padding: 5px 2px;
  border: 0;
  background: transparent;
  color: #8a958f;
  cursor: pointer;
  transition: color .2s ease;
}

.language-switch button[aria-pressed="true"] {
  color: var(--ink);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0 11px;
  border: 0;
  background: var(--ink);
  cursor: pointer;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin-block: 6px;
  background: var(--white);
  transition: transform .2s ease;
}

.menu-button[aria-expanded="true"] span:not(.sr-only):nth-of-type(2) {
  transform: translateY(4px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:not(.sr-only):nth-of-type(3) {
  transform: translateY(-4px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  padding: 86px 0 118px;
  background:
    radial-gradient(circle at 75% 35%, rgba(168, 239, 85, .08), transparent 32%),
    linear-gradient(120deg, #101715 0%, #15211d 100%);
  color: var(--white);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(to right, #000, transparent 80%);
}

.hero-beam {
  position: absolute;
  z-index: 0;
  top: 8%;
  right: -12%;
  width: 66%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(168, 239, 85, .85), transparent);
  box-shadow: 0 0 26px rgba(168, 239, 85, .38);
  transform: rotate(-24deg);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.12fr) minmax(350px, .62fr);
  gap: clamp(48px, 7vw, 110px);
}

.hero-copy {
  padding-block: 30px;
}

.hero-intro {
  max-width: 660px;
  margin-bottom: 34px;
  color: #bdc6c2;
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 44px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-tags li {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 999px;
  color: #d3dad7;
  font-size: .74rem;
  font-weight: 680;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  margin: 0;
}

.hero-visual::before {
  position: absolute;
  z-index: -1;
  top: -18px;
  right: -18px;
  width: 44%;
  height: 44%;
  border-top: 2px solid var(--green);
  border-right: 2px solid var(--green);
  content: "";
}

.hero-visual img {
  width: 100%;
  height: 590px;
  object-fit: cover;
  object-position: 54% 52%;
  filter: saturate(.78) contrast(1.07);
}

.hero-visual figcaption {
  position: absolute;
  right: -1px;
  bottom: -1px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 17px 19px;
  background: var(--paper);
  color: var(--ink);
  font-size: .72rem;
  font-weight: 740;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-dark);
  box-shadow: 0 0 0 4px rgba(94, 158, 61, .16);
}

/* Proof */
.proof-strip {
  position: relative;
  z-index: 2;
  margin-top: -50px;
}

.proof-grid {
  display: grid;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
  grid-template-columns: repeat(4, 1fr);
}

.proof-item {
  display: flex;
  min-height: 126px;
  flex-direction: column;
  justify-content: center;
  padding: 24px 32px;
}

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

.proof-item strong {
  margin-bottom: 4px;
  font-size: 1.5rem;
  letter-spacing: -.035em;
  line-height: 1.2;
}

.proof-item span {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 600;
}

/* Trusted by */
.trusted {
  padding: 76px 0 64px;
  background: var(--paper);
}

.trusted-inner {
  display: grid;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: 150px 1fr;
}

.trusted-label {
  margin: 0;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 780;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.trusted-logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.client-wordmark {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border-left: 1px solid var(--line);
  transition: background-color .2s ease;
}

.client-wordmark:hover {
  background: #f8faf8;
}

.client-wordmark img {
  display: block;
  width: auto;
  max-width: 150px;
  max-height: 42px;
  filter: grayscale(1) brightness(.56);
  opacity: .82;
  transition: opacity .2s ease, transform .2s ease;
}

.client-wordmark:hover img {
  opacity: 1;
  transform: translateY(-1px);
}

.client-kj img {
  max-width: 52px;
  max-height: 52px;
}

.client-oilwind img {
  max-height: 32px;
}

.client-lope img {
  max-height: 38px;
}

.client-groaqua img {
  max-height: 40px;
}

/* Section heading */
.section-heading {
  display: grid;
  align-items: end;
  margin-bottom: 64px;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .55fr);
  gap: 70px;
}

.section-heading h2 {
  max-width: 820px;
  margin-bottom: 0;
}

.section-heading > p {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 1.06rem;
}

.section-heading-light {
  color: var(--white);
}

.section-heading-light > p {
  color: var(--muted-light);
}

/* Capabilities */
.capabilities {
  padding-top: 110px;
  background: var(--paper);
}

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

.capability-card {
  position: relative;
  min-height: 330px;
  padding: 44px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  transition: background-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.capability-card:hover {
  z-index: 1;
  background: #f7f9f4;
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.card-number {
  margin-bottom: 46px;
  color: var(--green-dark);
  font-size: .8rem;
  font-weight: 780;
  letter-spacing: .1em;
}

.capability-card h3 {
  max-width: 440px;
}

.capability-card p {
  max-width: 520px;
  margin-bottom: 34px;
  color: var(--muted);
}

.spec {
  position: absolute;
  right: 44px;
  bottom: 38px;
  left: 44px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: #46524d;
  font-size: .7rem;
  font-weight: 780;
  letter-spacing: .08em;
}

.fit-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
}

.fit-row span {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #4e5955;
  font-size: .77rem;
  font-weight: 630;
}

.fit-row .fit-label {
  padding-left: 0;
  border-color: transparent;
  color: var(--ink);
  font-weight: 760;
}

/* Work */
.work {
  overflow: hidden;
  background: var(--ink);
}

.work-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 14px;
}

.work-card {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  background: #27302d;
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.75) contrast(1.04);
  transition: transform .6s cubic-bezier(.2,.7,.2,1), filter .5s ease;
}

.work-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 15, 13, .86), transparent 55%);
  content: "";
}

.work-card:hover img {
  filter: saturate(.95) contrast(1.04);
  transform: scale(1.035);
}

.work-card figcaption {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: flex-end;
  gap: 18px;
  padding: 28px;
  color: var(--white);
}

.work-card figcaption span {
  color: var(--green);
  font-size: .72rem;
  font-weight: 750;
}

.work-card figcaption strong {
  max-width: 240px;
  font-size: 1.13rem;
  line-height: 1.25;
}

.work-card-wide figcaption strong {
  max-width: 330px;
  font-size: 1.35rem;
}

/* Process */
.process {
  background: var(--cream);
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(500px, 1fr);
  gap: clamp(70px, 9vw, 140px);
}

.process-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.process-intro h2 {
  font-size: clamp(2.6rem, 4.1vw, 4.1rem);
}

.process-intro > p:not(.eyebrow) {
  max-width: 520px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.04rem;
}

.process-steps {
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-steps li {
  display: grid;
  padding: 38px 0 46px;
  border-top: 1px solid #cdd3cc;
  grid-template-columns: 72px 1fr;
  gap: 24px;
}

.process-steps li:last-child {
  border-bottom: 1px solid #cdd3cc;
}

.process-steps > li > span {
  color: var(--green-dark);
  font-size: .8rem;
  font-weight: 790;
  letter-spacing: .08em;
}

.process-steps h3 {
  margin-bottom: 12px;
  font-size: 1.8rem;
}

.process-steps p {
  max-width: 580px;
  margin-bottom: 0;
  color: var(--muted);
}

/* Quality */
.quality {
  background: var(--forest);
  color: var(--white);
}

.quality-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(350px, .75fr) minmax(0, 1fr);
  gap: clamp(60px, 9vw, 140px);
}

.quality-image {
  position: relative;
}

.quality-image img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  object-position: 50% 72%;
  filter: saturate(.65) contrast(1.05);
}

.quality-badge {
  position: absolute;
  right: -22px;
  bottom: 34px;
  display: flex;
  width: 144px;
  height: 144px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: var(--ink);
  line-height: 1.2;
}

.quality-badge strong {
  font-size: 1rem;
}

.quality-badge span {
  font-size: 1.9rem;
  font-weight: 820;
}

.quality-copy h2 {
  max-width: 740px;
  font-size: clamp(2.7rem, 4.6vw, 4.7rem);
}

.quality-copy > p:not(.eyebrow) {
  max-width: 690px;
  color: #c7d0cc;
  font-size: 1.04rem;
}

.quality-list {
  display: grid;
  padding: 0;
  margin: 38px 0 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.quality-list li {
  position: relative;
  min-height: 102px;
  padding: 26px 20px 22px 34px;
  border-bottom: 1px solid var(--line-dark);
  color: #e0e6e3;
  font-size: .9rem;
  font-weight: 620;
}

.quality-list li:nth-child(odd) {
  border-right: 1px solid var(--line-dark);
}

.quality-list li::before {
  position: absolute;
  top: 34px;
  left: 4px;
  width: 11px;
  height: 6px;
  border-bottom: 2px solid var(--green);
  border-left: 2px solid var(--green);
  content: "";
  transform: rotate(-45deg);
}

/* Contact */
.contact {
  padding-block: 110px;
  background: var(--paper);
}

.contact-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(46px, 7vw, 86px);
  background:
    linear-gradient(100deg, rgba(17, 24, 22, .97), rgba(17, 24, 22, .88)),
    url("assets/factory.webp") center / cover;
  color: var(--white);
}

.contact-panel::after {
  position: absolute;
  top: -45%;
  right: -15%;
  width: 55%;
  height: 180%;
  border-left: 1px solid rgba(168, 239, 85, .4);
  content: "";
  transform: rotate(28deg);
}

.contact-copy,
.contact-actions,
.contact-details {
  position: relative;
  z-index: 1;
}

.contact-copy {
  max-width: 820px;
}

.contact-copy h2 {
  font-size: clamp(2.7rem, 5.2vw, 5.4rem);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 620px;
  color: #c2cbc7;
  font-size: 1.06rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 38px;
  margin-top: 54px;
  padding-top: 25px;
  border-top: 1px solid var(--line-dark);
  color: #c8d0cc;
  font-size: .82rem;
  font-weight: 610;
}

.contact-details a:hover {
  color: var(--green);
}

.contact-socials {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.contact-socials > span {
  color: var(--muted-light);
  font-size: .7rem;
  font-weight: 720;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.contact-socials a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 3px;
  color: #dce4e0;
  font-size: .76rem;
  font-weight: 690;
  transition: border-color .2s ease, color .2s ease;
}

.contact-socials a:hover {
  border-color: var(--green);
  color: var(--green);
}

.contact-socials svg {
  width: 17px;
  height: 17px;
}

.contact-map-shell {
  position: relative;
  z-index: 1;
  margin-top: 38px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  background: #18211e;
}

.contact-map-heading {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.contact-map-heading > div {
  display: grid;
  gap: 7px;
}

.contact-map-heading span:first-child {
  color: var(--green);
  font-size: .66rem;
  font-weight: 780;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.contact-map-heading strong {
  color: var(--white);
  font-size: .92rem;
  font-weight: 650;
}

.contact-map-heading > a {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  color: #d7dfdb;
  font-size: .78rem;
  font-weight: 690;
  transition: color .2s ease;
}

.contact-map-heading > a:hover {
  color: var(--green);
}

.contact-map {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
  filter: grayscale(1) brightness(.88) contrast(1.08);
  transition: filter .3s ease;
}

.map-consent {
  display: grid;
  min-height: 360px;
  place-items: center;
  align-content: center;
  gap: 12px;
  padding: 44px 24px;
  background:
    linear-gradient(rgba(24, 33, 30, .94), rgba(24, 33, 30, .94)),
    radial-gradient(circle at 50% 30%, rgba(168, 239, 85, .18), transparent 42%);
  text-align: center;
}

.map-consent-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 6px;
  border: 1px solid rgba(168, 239, 85, .55);
  border-radius: 50%;
  color: var(--green);
  font-size: 1.55rem;
  place-items: center;
}

.map-consent strong {
  font-size: 1.08rem;
}

.map-consent p {
  max-width: 620px;
  margin-bottom: 8px;
  color: #b9c3be;
  font-size: .86rem;
}

.map-consent-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.map-consent-actions .button {
  min-height: 46px;
  padding: 12px 17px;
  font-size: .8rem;
}

.contact-map:hover,
.contact-map:focus {
  filter: grayscale(.25) brightness(.96) contrast(1.02);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.footer-inner {
  display: flex;
  min-height: 120px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-meta {
  display: grid;
  gap: 7px;
  text-align: center;
}

.brand-footer .brand-mark {
  width: 30px;
  height: 30px;
}

.brand-footer .brand-text {
  font-size: .9rem;
}

.footer-inner p,
.footer-inner > a,
.footer-links a,
.footer-links button {
  margin: 0;
  color: var(--muted);
  font-size: .74rem;
  font-weight: 600;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px 14px;
}

.footer-links button {
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}

.footer-inner > a:hover,
.footer-links a:hover,
.footer-links button:hover {
  color: var(--ink);
}

.footer-links button:focus-visible,
.contact-socials a:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 4px;
}

/* Privacy choice */
.consent-banner {
  position: fixed;
  z-index: 100;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: flex;
  max-width: 1160px;
  min-height: 126px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 24px 26px;
  margin-inline: auto;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 6px;
  background: #111816;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .34);
  color: var(--white);
}

.consent-copy {
  max-width: 650px;
}

.consent-copy strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.consent-copy p {
  margin: 0;
  color: #bdc7c2;
  font-size: .82rem;
}

.consent-copy a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.consent-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.consent-actions .button {
  min-height: 46px;
  padding: 12px 17px;
  font-size: .8rem;
}

.consent-reject {
  border-color: rgba(255, 255, 255, .38);
  background: transparent;
  color: var(--white);
}

.consent-reject:hover {
  border-color: var(--green);
  color: var(--green);
}

/* Legal pages */
.legal-page {
  background: var(--cream);
}

.legal-page .site-header {
  position: relative;
}

.legal-hero {
  padding: 104px 0 76px;
  background: var(--ink);
  color: var(--white);
}

.legal-hero h1 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 6vw, 6rem);
}

.legal-hero .legal-lead {
  max-width: 760px;
  color: #c5cec9;
  font-size: 1.08rem;
}

.legal-updated {
  margin: 28px 0 0;
  color: var(--green);
  font-size: .72rem;
  font-weight: 720;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.legal-layout {
  display: grid;
  align-items: start;
  gap: 70px;
  padding-block: 90px 120px;
  grid-template-columns: minmax(0, 1fr) 300px;
}

.legal-article {
  max-width: 790px;
}

.legal-section + .legal-section {
  margin-top: 58px;
  padding-top: 52px;
  border-top: 1px solid var(--line);
}

.legal-section h2 {
  margin-bottom: 20px;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
}

.legal-section h3 {
  margin: 30px 0 12px;
  font-size: 1.18rem;
  letter-spacing: -.02em;
}

.legal-section p,
.legal-section li {
  color: #47514d;
  font-size: .94rem;
}

.legal-section ul {
  padding-left: 22px;
}

.legal-section li + li {
  margin-top: 10px;
}

.legal-section a,
.legal-summary a {
  color: #2d6c42;
  font-weight: 680;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-table-wrap {
  margin-top: 26px;
  overflow-x: auto;
  border: 1px solid var(--line);
  background: var(--paper);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .85rem;
}

.legal-table th,
.legal-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  background: #e9ebe5;
  color: var(--ink);
  font-size: .72rem;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.legal-table tr:last-child td {
  border-bottom: 0;
}

.legal-summary {
  position: sticky;
  top: 24px;
  padding: 26px;
  border-top: 3px solid var(--green-dark);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.legal-summary h2 {
  margin-bottom: 18px;
  font-size: 1.15rem;
  letter-spacing: -.02em;
}

.legal-summary p {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: .82rem;
}

.legal-summary strong {
  color: var(--ink);
}

.legal-callout {
  padding: 22px 24px;
  border-left: 3px solid var(--green-dark);
  background: #e9eee4;
}

.legal-callout p:last-child {
  margin-bottom: 0;
}

/* Reveal */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1);
}

.js .reveal-delay {
  transition-delay: .12s;
}

.js .reveal-delay-two {
  transition-delay: .22s;
}

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

@media (max-width: 1050px) {
  .main-nav {
    position: fixed;
    z-index: 40;
    top: 92px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 44px 24px;
    background: var(--paper);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .2s ease, transform .2s ease;
  }

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

  .main-nav a {
    width: 100%;
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.6rem;
    letter-spacing: -.03em;
  }

  .menu-button {
    display: block;
  }

  .header-quote {
    display: none;
  }

  .hero {
    padding-top: 66px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, .58fr);
    gap: 48px;
  }

  .hero-visual img {
    height: 530px;
  }

  .section-heading {
    grid-template-columns: 1fr .55fr;
    gap: 38px;
  }

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

  .work-card-wide {
    grid-column: 1 / -1;
  }

  .work-card-wide {
    min-height: 520px;
  }

  .work-card:not(.work-card-wide) {
    min-height: 430px;
  }

  .process-grid {
    grid-template-columns: 1fr 1.05fr;
    gap: 60px;
  }

  .quality-grid {
    gap: 70px;
  }
}

@media (max-width: 800px) {
  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .section {
    padding-block: 88px;
  }

  .hero {
    min-height: auto;
    padding: 64px 0 104px;
  }

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

  .hero-copy {
    padding: 0;
  }

  .hero-visual {
    max-width: 620px;
  }

  .hero-visual img {
    height: min(620px, 78vh);
  }

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

  .proof-item:nth-child(3) {
    border-left: 0;
  }

  .proof-item:nth-child(n+3) {
    border-top: 1px solid var(--line);
  }

  .capabilities {
    padding-top: 92px;
  }

  .trusted-inner {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .trusted-label {
    padding: 22px 0;
  }

  .trusted-logos {
    border-top: 1px solid var(--line);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .client-wordmark:nth-child(odd) {
    border-left: 0;
  }

  .client-wordmark:nth-child(n+3) {
    border-top: 1px solid var(--line);
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .section-heading > p {
    max-width: 640px;
  }

  .capability-card {
    padding: 34px;
  }

  .spec {
    right: 34px;
    left: 34px;
  }

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

  .process-intro {
    position: static;
  }

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

  .quality-image {
    width: min(88%, 540px);
  }

  .quality-image img {
    height: 560px;
  }

  .legal-layout {
    gap: 48px;
    padding-block: 70px 90px;
    grid-template-columns: 1fr;
  }

  .legal-article {
    max-width: none;
  }

  .legal-summary {
    position: static;
    grid-row: 1;
  }

  .consent-banner {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .header-inner {
    min-height: 78px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-text {
    font-size: 1rem;
  }

  .brand-copy {
    gap: 5px;
  }

  .brand-subline {
    gap: 4px;
    font-size: .43rem;
    letter-spacing: .045em;
  }

  .brand-subline img {
    height: 9px;
  }

  .header-actions {
    gap: 12px;
  }

  .main-nav {
    top: 78px;
  }

  .menu-button {
    width: 44px;
    height: 44px;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2.35rem, 11vw, 3.6rem);
  }

  .hero {
    padding-top: 52px;
  }

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

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

  .hero-visual img {
    height: 520px;
  }

  .hero-visual figcaption {
    right: 0;
    left: 0;
    justify-content: center;
    padding: 14px 12px;
    font-size: .64rem;
  }

  .proof-strip {
    margin-top: -35px;
  }

  .proof-item {
    min-height: 112px;
    padding: 20px;
  }

  .proof-item strong {
    font-size: 1.25rem;
  }

  .proof-item span {
    font-size: .7rem;
    line-height: 1.35;
  }

  .trusted {
    padding: 58px 0 34px;
  }

  .client-wordmark {
    min-height: 82px;
    padding: 14px 10px;
  }

  .client-kj strong {
    font-size: 1.65rem;
  }

  .client-oilwind {
    font-size: 1.5rem;
  }

  .client-lope,
  .client-groaqua {
    font-size: 1.22rem;
  }

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

  .capability-card {
    min-height: 350px;
    padding: 30px 26px;
  }

  .card-number {
    margin-bottom: 34px;
  }

  .spec {
    right: 26px;
    bottom: 28px;
    left: 26px;
  }

  .fit-row {
    align-items: flex-start;
  }

  .fit-row .fit-label {
    width: 100%;
  }

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

  .work-card-wide {
    grid-column: auto;
  }

  .work-card,
  .work-card-wide,
  .work-card:not(.work-card-wide) {
    min-height: 440px;
  }

  .process-steps li {
    grid-template-columns: 46px 1fr;
    gap: 14px;
  }

  .process-steps h3 {
    font-size: 1.5rem;
  }

  .quality-image {
    width: calc(100% - 20px);
  }

  .quality-image img {
    height: 500px;
  }

  .quality-badge {
    right: -20px;
    width: 116px;
    height: 116px;
  }

  .quality-list {
    grid-template-columns: 1fr;
  }

  .quality-list li:nth-child(odd) {
    border-right: 0;
  }

  .contact {
    padding-block: 14px;
    background: var(--ink);
  }

  .contact .container {
    width: 100%;
  }

  .contact-panel {
    padding: 70px 22px;
  }

  .contact-actions {
    flex-direction: column;
  }

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

  .contact-details {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-socials {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-map-shell {
    margin-top: 34px;
  }

  .contact-map-heading {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    padding: 20px;
  }

  .contact-map {
    height: 300px;
  }

  .map-consent {
    min-height: 300px;
    padding: 34px 18px;
  }

  .map-consent-actions,
  .map-consent-actions .button {
    width: 100%;
  }

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

  .footer-meta,
  .footer-links {
    justify-content: flex-start;
    text-align: left;
  }

  .legal-hero {
    padding: 74px 0 56px;
  }

  .legal-hero h1 {
    font-size: clamp(2.7rem, 13vw, 4.2rem);
  }

  .legal-section + .legal-section {
    margin-top: 44px;
    padding-top: 40px;
  }

  .legal-table th,
  .legal-table td {
    min-width: 170px;
    padding: 14px;
  }

  .consent-banner {
    right: 10px;
    bottom: 10px;
    left: 10px;
    padding: 20px;
  }

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

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