:root {
  --orange: #f9a215;
  --ink: #2b2935;
  --muted: #4b4954;
  --black: #000000;
  --white: #ffffff;
  --panel: #f7f7f7;
  --field: #1c1c1c;
  --blue: #102ab9;
  --header-height: 110px;
  --page-max: 1300px;
  font-family: wf_9e1fab2fa1b24e57a344a35da, "Wix Madefor Text", "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
}

@font-face {
  font-display: swap;
  font-family: wf_9e1fab2fa1b24e57a344a35da;
  src: url("https://static.wixstatic.com/ufonts/17dc51_9e1fab2fa1b24e57a344a35daf35115c/woff2/file.woff2") format("woff2"), url("https://static.wixstatic.com/ufonts/17dc51_9e1fab2fa1b24e57a344a35daf35115c/woff/file.woff") format("woff");
}

@font-face {
  font-display: swap;
  font-family: wf_d4ce9ae795c94bd282c4848b7;
  src: url("https://static.wixstatic.com/ufonts/17dc51_d4ce9ae795c94bd282c4848b7a0bf96b/woff2/file.woff2") format("woff2"), url("https://static.wixstatic.com/ufonts/17dc51_d4ce9ae795c94bd282c4848b7a0bf96b/woff/file.woff") format("woff");
}

@font-face {
  font-display: swap;
  font-family: wf_f34347f9e3964745b49b7b947;
  src: url("https://static.wixstatic.com/ufonts/17dc51_f34347f9e3964745b49b7b9475394ad3/woff2/file.woff2") format("woff2"), url("https://static.wixstatic.com/ufonts/17dc51_f34347f9e3964745b49b7b9475394ad3/woff/file.woff") format("woff");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: inherit;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

.skip-link {
  position: absolute;
  left: 20px;
  top: -80px;
  z-index: 10000;
  background: var(--black);
  color: var(--white);
  padding: 12px 16px;
}

.skip-link:focus {
  top: 14px;
}

.site-header {
  height: var(--header-height);
  background: var(--white);
  display: flex;
  align-items: center;
  padding: 0 clamp(28px, 5.25vw, 86px);
  position: sticky;
  top: 0;
  z-index: 40;
}

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

.logo-link {
  display: inline-flex;
  width: 200px;
  min-width: 200px;
}

.logo-link img {
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 29px;
  font-size: 19px;
  line-height: 1;
}

.main-nav a {
  color: var(--ink);
  transition: color 180ms ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--orange);
}

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

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

.menu-panel {
  display: none;
}

.home-hero {
  min-height: calc(100vh + 48px);
  position: relative;
  overflow: hidden;
  background: #202020;
}

.home-hero video,
.home-hero .hero-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.08);
  pointer-events: none;
}

.hero-title {
  position: relative;
  z-index: 2;
  min-height: calc(100vh + 48px);
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--white);
  padding: 8vh 10vw 10vh;
}

.hero-title h1 {
  margin: 0;
  max-width: 1018px;
  text-transform: uppercase;
  font-family: wf_f34347f9e3964745b49b7b947, wf_d4ce9ae795c94bd282c4848b7, Arial, sans-serif;
  font-size: clamp(37px, 3.35vw, 55px);
  line-height: 55px;
  font-weight: 400;
  letter-spacing: 0;
}

.page-hero {
  min-height: 220px;
  padding: 56px clamp(28px, 10.6vw, 176px) 58px;
  display: flex;
  align-items: center;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(50px, 5vw, 72px);
  line-height: 1.08;
  font-weight: 800;
}

.content-section {
  width: min(var(--page-max), calc(100vw - 96px));
  margin: 0 auto;
}

.intro-copy {
  padding: 178px 0 90px;
}

.intro-copy h1,
.intro-copy h2 {
  margin: 0 0 30px;
  color: var(--ink);
  font-size: clamp(42px, 4vw, 56px);
  line-height: 1.12;
  font-weight: 700;
}

.intro-copy p,
.text-block p {
  margin: 0 0 30px;
  max-width: 1240px;
  color: var(--ink);
  font-size: clamp(19px, 1.35vw, 22px);
  line-height: 1.55;
  font-weight: 400;
}

.about-top {
  min-height: 390px;
  padding-top: 85px;
  text-align: center;
}

.about-top h1 {
  margin: 0 0 28px;
  color: var(--ink);
  font-family: wf_d4ce9ae795c94bd282c4848b7, Arial, sans-serif;
  font-size: clamp(39px, 2.45vw, 40px);
  line-height: normal;
  font-weight: 400;
}

.about-top p {
  margin: 0 auto;
  max-width: 786px;
  color: var(--ink);
  font-size: 19px;
  line-height: 30.4px;
}

.collage {
  position: relative;
  min-height: 1275px;
  width: 100%;
  margin: 0 auto;
}

.collage img {
  position: absolute;
  object-fit: cover;
  border-radius: 8px;
}

.collage .coal {
  left: 289px;
  top: 115px;
  width: 379px;
  height: 260px;
}

.collage .agriculture {
  left: 982px;
  top: 252px;
  width: 379px;
  height: 260px;
}

.collage .petro {
  position: sticky;
  left: 610px;
  top: 0;
  width: 429px;
  height: 608px;
  object-position: 54% 31%;
}

.collage .metallurgical {
  left: 1228px;
  top: 802px;
  width: 296px;
  height: 204px;
  object-position: 71% 34%;
}

.tailored {
  position: absolute;
  left: 126px;
  top: 802px;
  max-width: 456px;
}

.tailored h2,
.about-copy h2,
.products-copy h2 {
  margin: 0 0 24px;
  font-family: wf_d4ce9ae795c94bd282c4848b7, Arial, sans-serif;
  font-size: 36px;
  line-height: normal;
  font-weight: 400;
}

.tailored p {
  margin: 0;
  font-size: 15px;
  line-height: 24px;
  color: var(--ink);
}

.slanted-media {
  position: relative;
  margin: 0;
  height: 466px;
  overflow: hidden;
  transform: skewY(-1.8deg);
  transform-origin: center;
}

.slanted-media img,
.slanted-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: skewY(1.8deg) scale(1.07);
}

.about-copy {
  width: min(1350px, calc(100vw - 300px));
  padding: 56px 0 278px;
}

.about-copy h2 {
  margin-bottom: 39px;
  font-size: 40px;
}

.about-copy p {
  margin: 0 0 32px;
  font-size: 20px;
  line-height: 32px;
}

.products-copy {
  padding: 172px 0;
}

.products-copy h1 {
  margin: 0 0 35px;
  font-family: wf_d4ce9ae795c94bd282c4848b7, Arial, sans-serif;
  font-size: 50px;
  line-height: normal;
  font-weight: 400;
}

.products-copy p {
  margin: 0 0 26px;
  max-width: 1290px;
  font-size: 20px;
  line-height: 32px;
}

.lng-section {
  width: 100%;
  min-height: 788px;
  padding: 99px 99px;
  display: grid;
  grid-template-columns: 503px minmax(929px, 1fr);
  gap: 20px;
  align-items: start;
}

.lng-text {
  padding-top: 59px;
}

.lng-text h2 {
  margin: 0 0 42px;
  color: var(--black);
  font-family: wf_d4ce9ae795c94bd282c4848b7, Arial, sans-serif;
  font-size: 36px;
  line-height: 46.8px;
  font-weight: 400;
}

.lng-text p {
  margin: 0;
  color: var(--ink);
  width: 466px;
  font-size: 16px;
  line-height: 25.6px;
}

.lng-images {
  position: relative;
  min-height: 590px;
}

.lng-images img {
  position: absolute;
  width: 296px;
  height: 413px;
  object-fit: cover;
  border-radius: 12px;
}

.lng-images .gas {
  left: 0;
  top: 177px;
}

.lng-images .engineer {
  left: 317px;
  top: 89px;
  object-position: 74% 44%;
}

.lng-images .ship {
  left: 633px;
  top: 0;
}

.services-grid {
  display: grid;
  width: min(1547px, calc(100vw - 104px));
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding: 51px 0 106px;
}

.service-card {
  min-height: 502px;
  border: 1px solid var(--black);
  border-radius: 20px;
  padding: 36px 39px;
  background: var(--white);
}

.service-card h3 {
  margin: 0 0 34px;
  font-family: wf_d4ce9ae795c94bd282c4848b7, Arial, sans-serif;
  font-size: 21px;
  line-height: 29.4px;
  font-weight: 400;
}

.service-card p {
  margin: 0;
  color: var(--black);
  font-size: 16px;
  line-height: 25.6px;
}

.partner-copy {
  padding: 166px 0;
}

.partner-copy h2 {
  margin: 0 0 36px;
  font-family: wf_d4ce9ae795c94bd282c4848b7, Arial, sans-serif;
  font-size: 50px;
  line-height: normal;
  font-weight: 400;
}

.partner-copy p {
  margin: 0 0 30px;
  font-size: 20px;
  line-height: 32px;
}

.policy-panel {
  width: min(1520px, 92vw);
  margin: 0 auto 83px;
  background: var(--panel);
  border-radius: 8px;
  padding: 81px 46px 88px;
}

.policy-panel .policy-inner {
  max-width: 890px;
}

.policy-panel h2 {
  margin: 0 0 92px;
  font-size: clamp(40px, 4vw, 45px);
  line-height: 1.1;
  font-weight: 700;
}

.policy-panel h3 {
  margin: 48px 0 10px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.45;
  font-weight: 800;
}

.policy-panel h4 {
  margin: 70px 0 26px;
  color: var(--black);
  font-size: 27px;
  line-height: 1.2;
  font-weight: 800;
}

.policy-panel p,
.policy-panel li {
  color: var(--ink);
  font-size: 15.5px;
  line-height: 1.75;
}

.policy-panel p {
  margin: 0 0 17px;
}

.policy-panel ul {
  margin: 0 0 32px;
  padding-left: 26px;
}

.legal-page {
  padding-bottom: 92px;
}

.legal-page .policy-panel h2 {
  margin-bottom: 36px;
}

.contact-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 372px;
}

.contact-info {
  background: var(--orange);
  color: var(--white);
  padding: 54px 50px 60px;
}

.contact-info h2 {
  margin: 0 0 34px;
  font-size: clamp(48px, 4.6vw, 66px);
  line-height: 1;
  font-weight: 400;
  color: var(--white);
}

.contact-info p {
  margin: 0;
  font-size: 22px;
  line-height: 1.35;
}

.contact-form-wrap {
  background: var(--black);
  color: var(--white);
  padding: 31px 29px 48px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 21px;
  row-gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 9px;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-radius: 0;
  background: var(--field);
  color: var(--white);
  min-height: 38px;
  padding: 8px 10px;
  font: inherit;
  outline: 1px solid transparent;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline-color: var(--white);
}

.contact-form .wide,
.contact-form button,
.contact-form .hidden-field {
  grid-column: 1 / -1;
}

.contact-form textarea {
  min-height: 93px;
  resize: vertical;
}

.contact-form button {
  margin-top: 1px;
  min-height: 44px;
  border: 1px solid var(--white);
  border-radius: 28px;
  background: transparent;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.contact-form button:hover,
.contact-form button:focus-visible {
  background: var(--white);
  color: var(--black);
}

.hidden-field {
  display: none !important;
}

.site-footer {
  min-height: 136px;
  background: var(--white);
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  align-items: start;
  padding: 45px 50px 20px;
}

.footer-logo {
  width: 193px;
}

.footer-credit {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #a8abad;
  font-size: 10px;
}

.footer-credit img {
  width: 74px;
}

.footer-links {
  display: grid;
  gap: 8px;
  font-size: 15px;
  line-height: 1;
}

.privacy-float {
  position: fixed;
  left: 38px;
  bottom: 38px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 0;
  background: var(--blue);
  color: var(--white);
  z-index: 9000;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(16, 42, 185, 0.18);
}

.privacy-float::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 2px solid var(--white);
  border-radius: 50%;
  border-left-color: transparent;
}

.privacy-float::after {
  content: "";
  position: absolute;
  inset: 24px;
  border: 2px solid var(--white);
  border-radius: 50%;
  border-right-color: transparent;
}

@keyframes motion-fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: var(--comp-opacity, 1);
  }
}

@keyframes motion-blurIn {
  0% {
    filter: blur(var(--motion-blur, 6px));
  }

  100% {
    filter: blur(0);
  }
}

@keyframes motion-floatIn {
  0% {
    opacity: 0;
    animation-timing-function: step-end;
  }

  0.0001% {
    opacity: 0;
    transform: translate(var(--motion-translate-x), var(--motion-translate-y)) rotate(var(--comp-rotate-z, 0deg));
  }

  100% {
    opacity: var(--comp-opacity, 1);
    transform: translate(0, 0) rotate(var(--comp-rotate-z, 0deg));
  }
}

.motion,
.reveal,
.slide-left,
.slide-right {
  --comp-opacity: 1;
  opacity: 0;
  will-change: opacity, transform, filter;
}

.motion.motion-run,
.reveal.is-visible,
.slide-left.is-visible,
.slide-right.is-visible {
  opacity: var(--comp-opacity, 1);
}

.motion-fade.motion-run,
.reveal.is-visible {
  animation: 1200ms cubic-bezier(0.445, 0.05, 0.55, 0.95) 1ms 1 normal backwards motion-fadeIn;
}

.motion-blur.motion-run {
  --motion-blur: 6px;
  animation: 1400ms cubic-bezier(0.47, 0, 0.745, 0.715) 1ms 1 normal backwards motion-fadeIn, 2000ms linear 1ms 1 normal backwards motion-blurIn;
}

.motion-float-up {
  --motion-translate-x: 0px;
  --motion-translate-y: 60px;
}

.motion-float-left,
.slide-left {
  --motion-translate-x: -60px;
  --motion-translate-y: 0px;
}

.motion-float-right,
.slide-right {
  --motion-translate-x: 60px;
  --motion-translate-y: 0px;
}

.motion-float-up.motion-run,
.motion-float-left.motion-run,
.motion-float-right.motion-run,
.slide-left.is-visible,
.slide-right.is-visible {
  animation: 1200ms cubic-bezier(0.445, 0.05, 0.55, 0.95) 1ms 1 normal backwards motion-floatIn;
}

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid #e0e0e0;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
  padding: 16px 20px;
  z-index: 9999;
  font-size: 14px;
  line-height: 1.5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  animation: slideUp 0.4s ease-out;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
}

#cookie-banner.hidden {
  display: none !important;
}

.cookie-content {
  flex: 1;
  display: flex;
  gap: 16px;
  align-items: center;
}

.cookie-text {
  color: #333;
  font-size: 14px;
}

.cookie-text a {
  color: #0066cc;
  text-decoration: none;
  font-weight: 500;
}

.cookie-text a:hover {
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  min-height: 36px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
}

.cookie-btn-reject {
  background: #f0f0f0;
  color: #333;
  border: 1px solid #d0d0d0;
}

.cookie-btn-reject:hover {
  background: #e5e5e5;
  border-color: #bbb;
}

.cookie-btn-accept {
  background: #0066cc;
  color: white;
}

.cookie-btn-accept:hover {
  background: #0052a3;
}

.cookie-close {
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: #666;
  font-size: 18px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-close:hover {
  color: #333;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

#cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  padding: 20px;
}

#cookie-modal.show {
  display: flex;
}

.modal-content {
  background: white;
  border-radius: 12px;
  padding: 28px;
  max-width: 500px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  animation: popIn 0.3s ease-out;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
}

@keyframes popIn {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.modal-header h2 {
  font-size: 20px;
  color: #222;
  margin: 0;
}

.modal-close {
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 24px;
  color: #666;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  color: #333;
}

.cookie-category {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e0e0e0;
}

.cookie-category:last-child {
  border-bottom: none;
  margin-bottom: 16px;
  padding-bottom: 0;
}

.category-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.category-name {
  font-weight: 600;
  color: #222;
  margin-bottom: 4px;
}

.category-desc {
  font-size: 13px;
  color: #666;
}

.toggle-switch {
  width: 40px;
  height: 24px;
  background: #ccc;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  padding: 0;
  transition: background 0.2s;
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
}

.toggle-switch::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: left 0.2s;
}

.toggle-switch:checked {
  background: #0066cc;
}

.toggle-switch:checked::after {
  left: 18px;
}

.toggle-switch:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.modal-footer {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.modal-footer button {
  flex: 1;
  padding: 10px 16px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
}

.modal-btn-reject {
  background: #f0f0f0;
  color: #333;
}

.modal-btn-reject:hover {
  background: #e0e0e0;
}

.modal-btn-accept {
  background: #0066cc;
  color: white;
}

.modal-btn-accept:hover {
  background: #0052a3;
}

.cookie-settings-link {
  color: #0066cc;
  text-decoration: none;
  cursor: pointer;
  font-weight: 500;
  border: none;
  background: none;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
}

.cookie-settings-link:hover {
  text-decoration: underline;
}

@media (max-width: 1100px) {
  .lng-section {
    grid-template-columns: 1fr;
  }

  .lng-images {
    min-height: 560px;
  }

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

  .contact-block {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 84px;
  }

  .site-header {
    padding: 0 28px;
  }

  .logo-link {
    width: 172px;
    min-width: 172px;
  }

  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .menu-panel {
    position: fixed;
    inset: var(--header-height) 0 0;
    background: var(--white);
    z-index: 35;
    display: grid;
    align-content: start;
    gap: 22px;
    padding: 40px 28px;
    transform: translateX(100%);
    transition: transform 240ms ease;
  }

  .menu-open .menu-panel {
    transform: translateX(0);
  }

  .menu-panel a {
    font-size: 26px;
    color: var(--ink);
  }

  .menu-panel a.active {
    color: var(--orange);
  }

  .content-section {
    width: min(100% - 36px, var(--page-max));
  }

  .hero-title h1 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .page-hero {
    padding: 48px 28px;
    min-height: 190px;
  }

  .intro-copy,
  .products-copy {
    padding: 80px 0 48px;
  }

  .about-top {
    min-height: 386px;
    padding-top: 84px;
  }

  .about-top h1 {
    margin-bottom: 34px;
    font-size: 39px;
    line-height: 1.16;
  }

  .about-top p {
    max-width: 335px;
    font-size: 19px;
    line-height: 30.4px;
  }

  .collage {
    width: 100%;
    min-height: 955px;
    display: block;
    padding: 0;
    overflow: hidden;
  }

  .collage img {
    position: absolute;
    border-radius: 8px;
  }

  .collage .coal {
    left: -41px;
    top: 113px;
    width: 234px;
    height: 160px;
  }

  .collage .petro {
    position: sticky;
    left: 64px;
    top: 86px;
    width: 261px;
    height: 370px;
    z-index: 2;
  }

  .collage .agriculture {
    left: 210px;
    top: 266px;
    width: 234px;
    height: 160px;
    z-index: 1;
  }

  .collage .metallurgical {
    left: 224px;
    top: 678px;
    width: 178px;
    height: 123px;
    z-index: 3;
  }

  .tailored {
    position: absolute;
    left: 28px;
    top: 650px;
    max-width: 184px;
    z-index: 3;
  }

  .tailored h2 {
    margin-bottom: 22px;
    font-size: 34px;
    line-height: 1.2;
  }

  .tailored p {
    font-size: 15px;
    line-height: 24px;
  }

  .slanted-media {
    height: 272px;
  }

  .about-copy {
    width: min(100% - 36px, var(--page-max));
    padding-top: 58px;
    padding-bottom: 120px;
  }

  .about-copy h2 {
    margin-bottom: 38px;
    font-size: 40px;
  }

  .about-copy p {
    font-size: 20px;
    line-height: 32px;
  }

  .lng-section {
    padding: 36px 0 58px;
  }

  .lng-images {
    min-height: auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .lng-images img {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: 297 / 414;
  }

  .services-grid {
    grid-template-columns: 1fr;
    padding-bottom: 96px;
  }

  .service-card {
    min-height: auto;
  }

  .partner-copy {
    padding-bottom: 78px;
  }

  .policy-panel {
    width: min(100% - 24px, 760px);
    padding: 48px 28px;
  }

  .policy-panel h2 {
    margin-bottom: 48px;
  }

  .contact-info {
    padding: 44px 28px;
  }

  .contact-info h2 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .contact-form-wrap {
    padding: 30px 28px 42px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 42px 28px 34px;
  }

  .privacy-float {
    left: 28px;
    bottom: 28px;
  }

  #cookie-banner {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    align-items: stretch;
  }

  .cookie-content {
    flex-direction: column;
    gap: 12px;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: space-between;
  }

  .cookie-btn {
    flex: 1;
    min-height: 40px;
  }

  .modal-content {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 104px;
  }

  html,
  body {
    overflow-x: hidden;
  }

  .site-header {
    height: var(--header-height);
    padding: 0 20px 0 68px;
  }

  .logo-link {
    width: 218px;
    min-width: 218px;
  }

  .menu-toggle {
    width: 30px;
    height: 30px;
    padding: 1px;
  }

  .menu-toggle span {
    height: 2px;
    margin: 6px 0;
  }

  .menu-open .site-header .logo-link {
    visibility: hidden;
  }

  .menu-panel {
    inset: 0;
    z-index: 35;
    justify-items: center;
    align-content: start;
    gap: 24px;
    padding: 145px 0 0;
  }

  .menu-panel a {
    font-size: 19px;
    line-height: 1.25;
    font-weight: 700;
  }

  .home-hero {
    min-height: calc(100vh - var(--header-height));
  }

  .hero-title {
    min-height: calc(100vh - var(--header-height));
    place-items: center start;
    text-align: left;
    padding: 0 0 0 69px;
  }

  .hero-title h1 {
    max-width: 230px;
    font-size: 34px;
    line-height: 36px;
    text-align: left;
  }

  .page-hero {
    min-height: 124px;
    padding: 36px 20px 39px;
  }

  .page-hero h1 {
    font-size: 39px;
    line-height: 47px;
  }

  .content-section {
    width: min(100% - 56px, 322px);
  }

  .intro-copy,
  .products-copy {
    width: min(100% - 56px, 322px);
    padding: 8px 0 48px;
  }

  .intro-copy h1,
  .intro-copy h2,
  .products-copy h1 {
    margin-bottom: 10px;
    font-size: 30px;
    line-height: 1.45;
    font-weight: 400;
  }

  .intro-copy p,
  .products-copy p,
  .text-block p {
    margin-bottom: 22px;
    font-size: 14px;
    line-height: 22.4px;
  }

  .about-top {
    width: min(100% - 56px, 322px);
    min-height: 300px;
    padding-top: 25px;
  }

  .about-top h1 {
    margin-bottom: 24px;
    font-size: 37px;
    line-height: 36px;
  }

  .about-top p {
    max-width: 304px;
    font-size: 14px;
    line-height: 22.4px;
  }

  .collage {
    min-height: 1015px;
    width: 100%;
    overflow: hidden;
  }

  .collage .agriculture {
    left: 222px;
    top: 0;
    width: 144px;
    height: 98px;
  }

  .collage .petro {
    position: absolute;
    left: 80px;
    top: 56px;
    width: 256px;
    height: 363px;
    z-index: 2;
  }

  .collage .coal {
    left: 31px;
    top: 240px;
    width: 145px;
    height: 99px;
    z-index: 3;
  }

  .tailored {
    left: 29px;
    top: 500px;
    max-width: 322px;
  }

  .tailored h2 {
    margin-bottom: 23px;
    font-size: 28px;
    line-height: 34px;
  }

  .tailored p {
    font-size: 14px;
    line-height: 22.4px;
  }

  .collage .metallurgical {
    left: 29px;
    top: 728px;
    width: 322px;
    height: 220px;
    object-position: 61% 37%;
  }

  .slanted-media {
    height: 424px;
  }

  .about-copy {
    width: min(100% - 56px, 322px);
    padding: 68px 0 91px;
  }

  .about-copy h2 {
    margin-bottom: 17px;
    font-size: 28px;
    line-height: 34px;
  }

  .about-copy p {
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 22.4px;
  }

  .lng-section {
    width: min(100% - 68px, 306px);
    min-height: 0;
    display: block;
    padding: 40px 0 36px;
    margin: 0 auto;
  }

  .lng-text {
    padding-top: 0;
  }

  .lng-text h2 {
    margin-bottom: 22px;
    font-size: 22px;
    line-height: 30px;
  }

  .lng-text p {
    width: auto;
    font-size: 14px;
    line-height: 22.4px;
  }

  .lng-images {
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 37px;
    margin-top: 39px;
  }

  .lng-images img {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: 297 / 414;
    object-fit: cover;
    border-radius: 12px;
  }

  .services-grid {
    width: min(100% - 88px, 302px);
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 34px 0 76px;
  }

  .service-card {
    min-height: auto;
    border-radius: 8px;
    padding: 27px 11px 26px;
  }

  .service-card h3 {
    margin-bottom: 32px;
    font-size: 21px;
    line-height: 29px;
  }

  .service-card p {
    font-size: 16px;
    line-height: 24.8px;
  }

  .partner-copy {
    width: min(100% - 68px, 306px);
    padding: 74px 0 61px;
  }

  .partner-copy h2 {
    margin-bottom: 12px;
    font-size: 28px;
    line-height: 38px;
  }

  .partner-copy p {
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 22.4px;
  }

  .policy-panel {
    width: min(100% - 56px, 322px);
    margin-bottom: 72px;
    padding: 17px 26px 50px;
  }

  .policy-panel h2 {
    margin-bottom: 25px;
    font-size: 30px;
    line-height: 40px;
  }

  .legal-page .policy-panel h2 {
    margin-bottom: 25px;
  }

  .policy-panel h3 {
    margin: 24px 0 11px;
    font-size: 21px;
    line-height: 30px;
  }

  .policy-panel h4 {
    margin: 44px 0 18px;
    font-size: 24px;
    line-height: 31px;
  }

  .policy-panel p,
  .policy-panel li {
    font-size: 14px;
    line-height: 24px;
  }

  .contact-block {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .contact-info {
    padding: 20px 28px 28px;
  }

  .contact-info h2 {
    margin-bottom: 26px;
    font-size: 25px;
    line-height: 1.1;
    white-space: nowrap;
  }

  .contact-info p {
    font-size: 16px;
    line-height: 1.35;
  }

  .contact-form-wrap {
    padding: 55px 28px 57px;
  }

  .contact-form {
    grid-template-columns: 1fr 1fr;
    column-gap: 18px;
    row-gap: 17px;
  }

  .contact-form label {
    gap: 10px;
    font-size: 12px;
  }

  .contact-form input,
  .contact-form textarea {
    min-height: 33px;
  }

  .contact-form textarea {
    min-height: 84px;
  }

  .contact-form button {
    min-height: 40px;
    font-size: 14px;
  }

  .site-footer {
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    padding: 29px 28px 47px;
  }

  .site-footer > div {
    order: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-links[aria-label="Legal"] {
    order: 1;
    justify-items: center;
    gap: 9px;
    font-size: 13px;
    line-height: 1.2;
  }

  .footer-links[aria-label="Footer site"] {
    display: none;
  }

  .footer-logo {
    width: 132px;
  }

  .footer-credit {
    margin-top: 28px;
    font-size: 7px;
  }

  .footer-credit img {
    width: 53px;
  }

  .privacy-float {
    left: 28px;
    bottom: 28px;
    width: 44px;
    height: 44px;
  }

  .privacy-float::before {
    inset: 12px;
  }

  .privacy-float::after {
    inset: 17px;
  }
}

@media (max-width: 360px) {
  .site-header {
    padding-left: 42px;
  }

  .logo-link {
    width: 190px;
    min-width: 190px;
  }

  .hero-title {
    padding-left: 50px;
  }
}

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

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

  .reveal,
  .motion,
  .slide-left,
  .slide-right {
    --motion-x: 0px;
    --motion-y: 0px;
    --reveal-opacity: 1;
    opacity: 1;
    transform: none;
  }
}
