:root {
  --ink: #090c0a;
  --paper: #f4f4ef;
  --muted: rgba(255, 255, 255, 0.68);
  --green: #34d37a;
  --green-dark: #159455;
  --line: rgba(255, 255, 255, 0.24);
  --header-height: 86px;
  color-scheme: dark;
  font-family: Inter, Aptos, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-synthesis: none;
}

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

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: #fff;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

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

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

::selection {
  background: var(--green);
  color: #06120b;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 16px;
  transform: translateY(-160%);
  background: #fff;
  color: #050705;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: grid;
  grid-template-columns: minmax(300px, 1fr) auto minmax(210px, 1fr);
  align-items: center;
  min-height: var(--header-height);
  padding: 14px clamp(22px, 3.4vw, 64px);
  border-bottom: 1px solid transparent;
  transition:
    min-height 300ms ease,
    background-color 300ms ease,
    border-color 300ms ease;
}

.site-header::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(4, 7, 5, 0.82), transparent);
  content: "";
  pointer-events: none;
}

.site-header.is-scrolled {
  min-height: 70px;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(6, 9, 7, 0.94);
}

.site-header.is-scrolled::before {
  opacity: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 13px;
  width: fit-content;
  color: #fff;
  text-decoration: none;
}

.brand__mark {
  display: grid;
  width: 52px;
  height: 42px;
  place-items: center;
  overflow: hidden;
  border-radius: 3px;
  background: #fff;
}

.brand__mark img {
  width: 48px;
  height: 38px;
  object-fit: contain;
}

.brand__name {
  font-size: 14px;
  font-weight: 760;
  line-height: 1.18;
  letter-spacing: 0.055em;
  white-space: nowrap;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 2.5vw, 44px);
}

.site-nav a {
  position: relative;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--green);
  content: "";
  transition: transform 250ms ease;
}

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

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  min-height: 45px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 100px;
  color: #fff;
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    border-color 220ms ease,
    background 220ms ease,
    color 220ms ease;
}

.header-cta__short {
  display: none;
}

.header-cta:hover {
  border-color: var(--green);
  background: var(--green);
  color: #06120b;
}

.journey {
  position: relative;
  background: #070a08;
}

.journey__stage {
  position: sticky;
  top: 0;
  z-index: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  background: #0b0f0c;
  isolation: isolate;
}

.scene-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.075);
  transition:
    opacity 950ms cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 8s cubic-bezier(0.16, 0.7, 0.2, 1);
  will-change: opacity, transform;
}

.scene-image::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.25), transparent 28%, transparent 72%, rgba(0, 0, 0, 0.34)),
    linear-gradient(90deg, rgba(5, 8, 6, 0.06), transparent 50%);
  content: "";
}

.scene-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.88) contrast(1.04);
}

.scene-image.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
}

.scene-image:nth-child(2).is-active,
.scene-image:nth-child(4).is-active {
  transform: scale(1) translateX(-0.6%);
}

.scene-image:nth-child(3).is-active,
.scene-image:nth-child(5).is-active {
  transform: scale(1) translateX(0.6%);
}

.stage-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(4, 7, 5, 0.92) 0%, rgba(4, 7, 5, 0.7) 28%, rgba(4, 7, 5, 0.1) 68%, transparent 82%),
    linear-gradient(180deg, rgba(4, 7, 5, 0.22), transparent 45%, rgba(4, 7, 5, 0.25));
  transition: background 700ms ease;
  pointer-events: none;
}

.journey__stage[data-side="right"] .stage-shade {
  background:
    linear-gradient(270deg, rgba(4, 7, 5, 0.93) 0%, rgba(4, 7, 5, 0.7) 28%, rgba(4, 7, 5, 0.1) 67%, transparent 83%),
    linear-gradient(180deg, rgba(4, 7, 5, 0.22), transparent 45%, rgba(4, 7, 5, 0.25));
}

.journey__stage[data-side="center"] .stage-shade {
  background:
    radial-gradient(circle at center, rgba(4, 7, 5, 0.5), rgba(4, 7, 5, 0.9) 78%),
    rgba(4, 7, 5, 0.48);
}

.film-grain {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 0.12;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.48) 0.45px, transparent 0.7px),
    radial-gradient(rgba(0, 0, 0, 0.5) 0.45px, transparent 0.7px);
  background-position: 0 0, 6px 7px;
  background-size: 9px 9px, 11px 11px;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.scene-meter {
  position: absolute;
  right: clamp(22px, 3.3vw, 64px);
  bottom: 42px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.scene-meter__number {
  min-width: 18px;
  color: #fff;
}

.scene-meter__total {
  color: rgba(255, 255, 255, 0.5);
}

.scene-meter__line {
  position: relative;
  width: clamp(88px, 10vw, 170px);
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.28);
}

.scene-meter__line i {
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--green);
  transition: transform 500ms ease;
}

.scene-location {
  position: absolute;
  bottom: 38px;
  left: clamp(22px, 3.4vw, 64px);
  z-index: 5;
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.journey__chapters {
  position: relative;
  z-index: 10;
  margin-top: -100vh;
  margin-top: -100svh;
}

.chapter {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 142vh;
  min-height: 142svh;
  padding: calc(var(--header-height) + 48px) clamp(26px, 7vw, 132px) 82px;
}

.chapter--hero {
  min-height: 154vh;
  min-height: 154svh;
}

.chapter--right {
  justify-content: flex-end;
}

.chapter--left {
  justify-content: flex-start;
}

.chapter--final {
  min-height: 128vh;
  min-height: 128svh;
  justify-content: center;
  text-align: center;
}

.chapter__content,
.quotation {
  position: relative;
  z-index: 1;
  width: min(610px, 48vw);
  opacity: 0.08;
  transform: translateY(54px);
  filter: blur(6px);
  transition:
    opacity 650ms ease,
    transform 800ms cubic-bezier(0.16, 0.8, 0.2, 1),
    filter 650ms ease;
}

.chapter__content--wide {
  width: min(850px, 72vw);
}

.chapter.is-active .chapter__content,
.chapter.is-active .quotation {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.72);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1,
h2 {
  margin: 0;
  color: #fff;
  font-weight: 790;
  letter-spacing: -0.067em;
  line-height: 0.88;
  text-wrap: balance;
}

h1 {
  max-width: 1000px;
  font-size: clamp(62px, 8.3vw, 150px);
}

h2 {
  font-size: clamp(54px, 6.4vw, 112px);
}

h1 em,
h2 em {
  color: var(--green);
  font-style: normal;
}

.chapter__lead {
  max-width: 620px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(16px, 1.25vw, 20px);
  font-weight: 420;
  line-height: 1.55;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}

.intro-services {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 780px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.intro-services li {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(4, 7, 5, 0.32);
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.enter-cue {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 48px;
  color: #fff;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
}

.enter-cue__wheel {
  position: relative;
  width: 28px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 99px;
}

.enter-cue__wheel i {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 3px;
  height: 8px;
  border-radius: 3px;
  transform: translateX(-50%);
  background: var(--green);
  animation: scroll-cue 1.7s ease-in-out infinite;
}

@keyframes scroll-cue {
  0% {
    opacity: 0;
    transform: translate(-50%, -2px);
  }
  35% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 12px);
  }
}

.service-lines {
  margin: 36px 0 0;
  padding: 0;
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.service-lines li {
  border-top: 1px solid var(--line);
}

.service-lines button {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 8px;
  width: 100%;
  min-height: 58px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.94);
  font-family: inherit;
  font-size: clamp(14px, 1.15vw, 18px);
  font-weight: 580;
  line-height: 1.28;
  text-align: left;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.7);
  cursor: pointer;
  transition:
    color 180ms ease,
    padding 220ms ease,
    background 180ms ease;
}

.service-lines button:hover {
  padding-right: 8px;
  padding-left: 8px;
  background: rgba(52, 211, 122, 0.1);
  color: #fff;
}

.service-lines button:focus-visible {
  position: relative;
  z-index: 1;
  outline-offset: -3px;
}

.service-lines button span {
  color: var(--green);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 13px;
  letter-spacing: 0.12em;
}

.service-lines button b {
  font-weight: 620;
}

.service-lines button i {
  color: var(--green);
  font-size: 18px;
  font-style: normal;
  text-align: right;
  transition: transform 180ms ease;
}

.service-lines button:hover i {
  transform: translate(2px, -2px);
}

.service-lines--compact {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.service-lines--compact li:nth-child(even) button {
  padding-left: 22px;
  border-left: 1px solid var(--line);
}

.service-lines--compact li:nth-child(even) button:hover {
  padding-left: 30px;
}

.detail-hint {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.5;
}

.training-status {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.training-status > * {
  display: inline-flex;
  align-items: center;
  min-height: 39px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 0.03em;
}

.training-status strong {
  background: var(--green);
  color: #06120b;
}

.training-status span {
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(4, 7, 5, 0.42);
  color: #fff;
}

.chapter--training .chapter__content {
  width: min(780px, 58vw);
}

.chapter--new-plant .chapter__content {
  width: min(700px, 53vw);
}

.new-plant-scope {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 32px 0 0;
  padding: 0;
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.new-plant-scope li {
  min-height: 78px;
  padding: 18px 18px 18px 0;
  border-top: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-weight: 580;
  line-height: 1.4;
}

.new-plant-scope li:nth-child(even) {
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.chapter-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 60px;
  margin-top: 28px;
  padding: 0 25px;
  border-radius: 999px;
  background: var(--green);
  color: #07120b;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.chapter-cta:hover {
  transform: translateY(-2px);
  background: #58e894;
}

.quotation {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: min(960px, 84vw);
}

.quotation__mark {
  width: 78px;
  height: 60px;
  margin-bottom: 30px;
  padding: 7px;
  border-radius: 5px;
  background: #fff;
  object-fit: contain;
}

.quotation .eyebrow {
  justify-content: center;
}

.quotation > p:not(.eyebrow) {
  max-width: 590px;
  margin: 30px auto 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.55;
}

.quotation__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 72px;
  margin-top: 36px;
  padding: 0 30px 0 36px;
  border-radius: 999px;
  background: var(--green);
  color: #07120b;
  font-size: 13px;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background 220ms ease,
    transform 220ms ease;
}

.quotation__button:hover {
  transform: translateY(-3px);
  background: #58e894;
}

.quotation__button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.quotation__emails {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  margin-top: 30px;
}

.quotation__emails a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  text-underline-offset: 5px;
}

.quotation__emails a:hover {
  color: #fff;
}

.site-footer {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 100px;
  padding: 22px clamp(22px, 3.4vw, 64px);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: #050705;
  color: rgba(255, 255, 255, 0.56);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 1.6;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

.site-footer p:nth-child(2) {
  text-align: center;
}

.site-footer p:last-child {
  text-align: right;
}

.service-dialog {
  width: min(860px, calc(100vw - 32px));
  max-height: min(820px, calc(100vh - 32px));
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  background: #0d120f;
  color: #fff;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.58);
}

.service-dialog::backdrop {
  background: rgba(2, 5, 3, 0.82);
}

.service-dialog[open] {
  animation: dialog-in 260ms ease both;
}

@keyframes dialog-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }
}

.service-dialog__shell {
  position: relative;
  max-height: min(820px, calc(100vh - 34px));
  padding: clamp(30px, 5vw, 62px);
  overflow: auto;
  background:
    linear-gradient(135deg, rgba(52, 211, 122, 0.08), transparent 42%),
    #0d120f;
}

.service-dialog__close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.service-dialog__close:hover {
  border-color: var(--green);
  color: var(--green);
}

.service-dialog__eyebrow {
  margin: 0 58px 15px 0;
  color: var(--green);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.service-dialog h2 {
  max-width: 720px;
  font-size: clamp(38px, 5vw, 70px);
  line-height: 0.95;
}

.service-dialog__summary {
  max-width: 700px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.58;
}

.service-dialog__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.service-dialog__grid h3 {
  margin: 0 0 15px;
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-dialog__grid ul {
  margin: 0;
  padding-left: 19px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  line-height: 1.62;
}

.service-dialog__grid p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  line-height: 1.62;
}

.service-dialog__grid li + li {
  margin-top: 8px;
}

.service-dialog__references {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}

.service-dialog__references a {
  color: #fff;
  font-size: 15px;
  line-height: 1.45;
  text-decoration-color: var(--green);
  text-underline-offset: 4px;
}

.service-dialog__references a:hover {
  color: var(--green);
}

.service-dialog__note {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  line-height: 1.5;
}

.service-dialog__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  margin-top: 32px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--green);
  color: #06120b;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.no-js .journey__stage {
  display: none;
}

.no-js .journey__chapters {
  margin-top: 0;
}

.no-js .chapter {
  min-height: 100vh;
  background-position: center;
  background-size: cover;
}

.no-js .chapter::before {
  position: absolute;
  inset: 0;
  background: rgba(3, 6, 4, 0.68);
  content: "";
}

.no-js .chapter:nth-child(1) {
  background-image: url("assets/scenes/01-factory-arrival.jpg");
}

.no-js .chapter:nth-child(2) {
  background-image: url("assets/scenes/02-wastewater.jpg");
}

.no-js .chapter:nth-child(3) {
  background-image: url("assets/scenes/03-air-pollution-control.jpg");
}

.no-js .chapter:nth-child(4) {
  background-image: url("assets/scenes/04-laboratory.jpg");
}

.no-js .chapter:nth-child(5),
.no-js .chapter:nth-child(7) {
  background-image: url("assets/scenes/05-training-office.jpg");
}

.no-js .chapter:nth-child(6) {
  background-image: url("assets/scenes/01-factory-arrival.jpg");
}

.no-js .chapter__content,
.no-js .quotation {
  opacity: 1;
  transform: none;
  filter: none;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .chapter__content {
    width: min(580px, 58vw);
  }

  .chapter__content--wide {
    width: min(760px, 76vw);
  }

  .chapter--training .chapter__content,
  .chapter--new-plant .chapter__content {
    width: min(700px, 66vw);
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 72px;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: var(--header-height);
    padding: 10px 16px;
  }

  .site-header.is-scrolled {
    min-height: 64px;
  }

  .brand {
    min-width: 0;
    gap: 9px;
  }

  .brand__mark {
    flex: 0 0 auto;
    width: 44px;
    height: 36px;
  }

  .brand__mark img {
    width: 42px;
    height: 33px;
  }

  .brand__name {
    font-size: 11.5px;
    letter-spacing: 0.035em;
    white-space: nowrap;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 13px;
    font-size: 11px;
    letter-spacing: 0.08em;
  }

  .scene-image img {
    object-position: center;
  }

  .scene-image:first-child img {
    object-position: 57% center;
  }

  .scene-image:nth-child(2) img {
    object-position: 44% center;
  }

  .scene-image:nth-child(3) img {
    object-position: 61% center;
  }

  .scene-image:nth-child(4) img {
    object-position: 46% center;
  }

  .scene-image:nth-child(5) img {
    object-position: 57% center;
  }

  .stage-shade,
  .journey__stage[data-side="right"] .stage-shade {
    background:
      linear-gradient(180deg, rgba(3, 6, 4, 0.24) 0%, rgba(3, 6, 4, 0.1) 32%, rgba(3, 6, 4, 0.93) 68%, rgba(3, 6, 4, 0.98) 100%),
      linear-gradient(90deg, rgba(3, 6, 4, 0.26), transparent);
  }

  .journey__stage[data-side="center"] .stage-shade {
    background: rgba(3, 6, 4, 0.82);
  }

  .scene-location {
    display: none;
  }

  .scene-meter {
    right: 18px;
    bottom: 18px;
  }

  .scene-meter__line {
    width: 70px;
  }

  .chapter,
  .chapter--hero,
  .chapter--final {
    align-items: flex-end;
    min-height: 124vh;
    min-height: 124svh;
    padding: calc(var(--header-height) + 40px) 20px 76px;
  }

  .chapter--hero {
    min-height: 142vh;
    min-height: 142svh;
  }

  .chapter--final {
    align-items: center;
    min-height: 118vh;
    min-height: 118svh;
    padding-bottom: 56px;
  }

  .chapter__content,
  .chapter__content--wide,
  .chapter--training .chapter__content,
  .chapter--new-plant .chapter__content,
  .quotation {
    width: 100%;
  }

  h1 {
    font-size: clamp(51px, 15.4vw, 78px);
    line-height: 0.91;
  }

  h2 {
    font-size: clamp(47px, 13.3vw, 68px);
    line-height: 0.91;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 12px;
  }

  .chapter__lead {
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.48;
  }

  .intro-services {
    gap: 7px;
    margin-top: 20px;
  }

  .intro-services li {
    min-height: 34px;
    padding: 0 11px;
    font-size: 11px;
  }

  .enter-cue {
    margin-top: 28px;
  }

  .service-lines {
    margin-top: 25px;
  }

  .service-lines button {
    grid-template-columns: 32px minmax(0, 1fr) 22px;
    min-height: 49px;
    font-size: 15px;
  }

  .service-lines--compact {
    display: block;
  }

  .service-lines--compact li:nth-child(even) button {
    padding-left: 0;
    border-left: 0;
  }

  .service-lines--compact li:nth-child(even) button:hover {
    padding-left: 8px;
  }

  .training-status {
    margin-top: 19px;
  }

  .training-status > * {
    min-height: 35px;
    padding-inline: 11px;
    font-size: 11px;
  }

  .new-plant-scope {
    display: block;
    margin-top: 24px;
  }

  .new-plant-scope li {
    min-height: 0;
    padding: 13px 0;
    font-size: 14px;
  }

  .new-plant-scope li:nth-child(even) {
    padding-left: 0;
    border-left: 0;
  }

  .chapter-cta {
    min-height: 54px;
    margin-top: 22px;
    font-size: 11px;
  }

  .service-dialog__grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .service-dialog__summary {
    font-size: 16px;
  }

  .quotation__mark {
    width: 66px;
    height: 52px;
    margin-bottom: 22px;
  }

  .quotation__button {
    min-height: 62px;
    margin-top: 28px;
    padding: 0 22px 0 26px;
    font-size: 11px;
  }

  .quotation__emails {
    align-items: center;
    flex-direction: column;
    margin-top: 24px;
  }

  .site-footer {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    min-height: 0;
    gap: 8px;
    padding: 28px 20px;
  }

  .site-footer p:nth-child(2),
  .site-footer p:last-child {
    text-align: left;
  }
}

@media (max-width: 390px) {
  .brand__name {
    font-size: 9.5px;
  }

  .header-cta {
    padding-inline: 10px;
    font-size: 10px;
  }

  .header-cta__full {
    display: none;
  }

  .header-cta__short {
    display: inline;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .chapter__content,
  .quotation {
    filter: none;
  }
}

@media print {
  .site-header,
  .journey__stage,
  .enter-cue {
    display: none;
  }

  .journey__chapters {
    margin: 0;
  }

  .chapter,
  .chapter--hero,
  .chapter--final {
    min-height: 0;
    padding: 32px;
    color: #000;
    page-break-inside: avoid;
  }

  .chapter__content,
  .quotation {
    width: 100%;
    opacity: 1;
    transform: none;
    filter: none;
  }

  h1,
  h2,
  .chapter__lead,
  .eyebrow,
  .service-lines li,
  .quotation > p:not(.eyebrow),
  .quotation__emails a {
    color: #000;
    text-shadow: none;
  }
}
