:root {
  --ink: #172033;
  --ink-strong: #0e1624;
  --muted: #657084;
  --line: #d8dde6;
  --paper: #ffffff;
  --soft: #f4f6f9;
  --navy: #2749a5;
  --yellow: #f2bd2f;
  --stone: #868b91;
  --rust: #9a5539;
  --shadow: 0 18px 50px rgba(14, 22, 36, 0.16);
  --radius: 6px;
  --motion-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --motion-fast: 180ms;
  --motion-medium: 560ms;
  --motion-slow: 700ms;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

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

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes heroImageIn {
  from {
    opacity: 0;
    transform: translate3d(0, 24px, 0) scale(1.04);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes certificateAutoSlide {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(var(--certificate-scroll-distance, 0px) * -1), 0, 0);
  }
}

body.is-motion-ready .animate-in {
  opacity: 0;
  transform: translate3d(0, 38px, 0);
  transition:
    opacity var(--motion-medium) var(--motion-ease),
    transform var(--motion-medium) var(--motion-ease);
  will-change: opacity, transform;
}

body.is-motion-ready .animate-in.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

body.is-motion-ready .animate-in .stagger-item {
  transition:
    opacity var(--motion-medium) var(--motion-ease) var(--stagger-delay, 0ms),
    transform var(--motion-medium) var(--motion-ease) var(--stagger-delay, 0ms),
    box-shadow var(--motion-fast) ease,
    border-color var(--motion-fast) ease,
    background-color var(--motion-fast) ease;
  will-change: opacity, transform;
}

body.is-motion-ready .animate-in:not(.is-visible) .stagger-item {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
}

@media (prefers-reduced-motion: no-preference) {
  [data-hero-motion] .hero-image {
    animation: heroImageIn var(--motion-slow) var(--motion-ease) 80ms both;
    transform-origin: center;
  }

  [data-hero-motion] .hero-content > * {
    animation: heroTextIn var(--motion-slow) var(--motion-ease) both;
  }

  [data-hero-motion] .hero-content > p {
    animation-delay: 120ms;
  }

  [data-hero-motion] .hero-actions {
    animation-delay: 240ms;
  }

}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 8px 44px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(216, 221, 230, 0.82);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 146px;
  height: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
  gap: 18px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--ink-strong);
  font-size: 0.78rem;
  font-weight: 750;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 9px 0;
}

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

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

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.language-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 0 8px;
  color: var(--muted);
  border-radius: calc(var(--radius) - 2px);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1;
  transition:
    background 160ms ease,
    color 160ms ease;
}

.language-link img {
  width: 24px;
  height: 16px;
  border: 1px solid rgba(14, 22, 36, 0.12);
}

.language-link:hover,
.language-link:focus-visible,
.language-link.is-active {
  background: var(--soft);
  color: var(--ink-strong);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  background: currentColor;
}

.menu-toggle span + span {
  margin-top: 5px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: center;
  width: min(1240px, calc(100% - 88px));
  min-height: 640px;
  margin: 0 auto;
  padding: 54px 0 62px;
  overflow: visible;
  color: var(--ink);
}

.hero-image {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  height: auto;
  box-shadow: var(--shadow);
}

.hero-content {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  margin: 0;
  padding: 0;
}

.hero h1 {
  max-width: 620px;
  margin: 0;
  color: var(--ink-strong);
  font-size: 3.7rem;
  line-height: 1.02;
  font-weight: 860;
}

.hero-logo-title {
  max-width: 520px;
  line-height: 0;
}

.hero-logo-title img {
  display: block;
  width: min(520px, 100%);
  height: auto;
}

.hero p {
  max-width: 610px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 820;
  line-height: 1;
  text-transform: uppercase;
  transition:
    transform 160ms ease,
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

.button svg {
  width: 19px;
  height: 19px;
  margin-left: 10px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

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

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

.button-primary:hover,
.button-primary:focus-visible {
  background: #ffd15b;
}

.button-secondary {
  color: var(--ink-strong);
  border-color: var(--line);
  background: #fff;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--navy);
  background: var(--soft);
}

.capacity-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: min(1120px, 100%);
  margin: 0 auto 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

.capacity-summary div {
  min-width: 0;
  padding: 20px 22px;
}

.capacity-summary div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.capacity-summary dt {
  margin: 0 0 7px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
  font-weight: 760;
  text-transform: uppercase;
}

.capacity-summary dd {
  margin: 0;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 850;
  font-variant-numeric: tabular-nums;
}

.capacity-note {
  grid-column: 1 / -1;
  margin: 0;
  padding: 13px 22px 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  line-height: 1.55;
}

.section {
  padding: 88px 56px;
}

.section-heading {
  width: min(1120px, 100%);
  margin: 0 auto 34px;
}

.section-heading.compact {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.section-heading h2,
.intro-copy h2,
.material-copy h2,
.fleet-copy h2,
.contact-copy h2 {
  margin: 0;
  color: var(--ink-strong);
  font-size: 2.7rem;
  line-height: 1.05;
  font-weight: 850;
}

.section-heading p,
.intro-copy p,
.material-copy p,
.fleet-copy p,
.contact-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.section-heading.compact p {
  max-width: 520px;
  margin: 0;
}

.product-preview {
  padding-top: 54px;
  padding-bottom: 64px;
  background: var(--soft);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.product-card {
  min-height: 198px;
  padding: 24px;
  border: 1px solid rgba(216, 221, 230, 0.84);
  border-top: 4px solid var(--yellow);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 28px rgba(14, 22, 36, 0.08);
}

.product-index {
  display: block;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 850;
}

.product-card h3 {
  margin: 22px 0 10px;
  color: var(--ink-strong);
  font-size: 1.34rem;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.intro-section,
.material-section,
.fleet-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 42px;
  align-items: center;
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
  padding-right: 0;
  padding-left: 0;
}

.intro-copy p + p {
  margin-top: 16px;
}

.image-panel {
  margin: 0;
}

.image-panel img,
.material-image img,
.fleet-gallery img,
.site-card img {
  width: 100%;
}

.image-panel img {
  height: auto;
  box-shadow: var(--shadow);
}

.image-panel figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.material-section {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  padding-top: 30px;
}

.material-image img {
  height: auto;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  line-height: 1.6;
}

.check-list li::before {
  position: absolute;
  top: 0.35em;
  left: 0;
  width: 13px;
  height: 13px;
  border: 3px solid var(--yellow);
  border-radius: 50%;
  content: "";
}

.sites-section {
  background: var(--ink-strong);
  color: #fff;
}

.sites-section .section-heading h2 {
  color: #fff;
}

.sites-section .section-heading p {
  color: rgba(255, 255, 255, 0.74);
}

.site-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.site-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.site-card img {
  height: auto;
}

.site-card-body {
  padding: 28px;
}

.site-card h3 {
  margin: 0;
  color: var(--yellow);
  font-size: 1.65rem;
}

.site-card p {
  margin: 13px 0 24px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.68;
}

.spec-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(112px, 1fr));
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.18);
}

.spec-list div {
  min-width: 0;
  padding: 14px 12px;
  background: rgba(14, 22, 36, 0.76);
}

.spec-list dt {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
  font-weight: 780;
  text-transform: uppercase;
}

.spec-list dd {
  margin: 5px 0 0;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 850;
}

.map-section {
  width: min(1120px, 100%);
  margin: 42px auto 0;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.map-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.map-heading h3 {
  margin: 0;
  color: #fff;
  font-size: 2rem;
}

.map-heading p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.map-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.map-card {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.map-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.map-card h4 {
  margin: 0;
  color: var(--yellow);
  font-size: 1.16rem;
}

.map-card a {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 820;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
  border-radius: var(--radius);
  background: #fff;
}

.urla-gallery-section {
  background: #fff;
}

.urla-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.urla-gallery-grid figure {
  margin: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  box-shadow: 0 12px 34px rgba(14, 22, 36, 0.08);
}

.urla-gallery-grid img {
  display: block;
  width: 100%;
  height: auto;
}

.fleet-section {
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
}

.fleet-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.fleet-gallery img {
  height: auto;
}

.quality-section {
  background: var(--soft);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.process-grid article {
  min-height: 214px;
  padding: 24px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.process-grid span {
  color: var(--yellow);
  font-size: 2rem;
  font-weight: 900;
}

.process-grid h3 {
  margin: 24px 0 8px;
  color: var(--ink-strong);
  font-size: 1.16rem;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.certificates-section {
  background: #fff;
  overflow: hidden;
}

.certificate-carousel {
  width: min(1180px, 100%);
  margin: 0 auto;
  overflow: hidden;
}

.certificate-grid {
  display: flex;
  gap: 22px;
  width: max-content;
  margin: 0;
  padding: 4px 0 18px;
  overflow: visible;
  --certificate-scroll-distance: 0px;
  --certificate-scroll-duration: 48s;
}

.certificate-grid.is-certificate-carousel {
  animation: certificateAutoSlide var(--certificate-scroll-duration) linear infinite;
  will-change: transform;
}

.certificate-card {
  flex: 0 0 min(560px, calc(100vw - 48px));
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.certificate-card a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(270px, 35vw, 420px);
  background: #fff;
}

.certificate-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.certificate-card figcaption {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 13px;
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.45;
}

.certificate-card figcaption strong {
  flex: 0 0 auto;
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 860;
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .certificate-grid.is-certificate-carousel:hover,
  .certificate-grid.is-certificate-carousel:focus-within {
    animation-play-state: paused;
  }
}

.references-section {
  background: var(--soft);
}

.reference-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.reference-grid article {
  display: grid;
  place-items: center;
  min-height: 112px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 28px rgba(14, 22, 36, 0.08);
}

.reference-logo-frame {
  display: grid;
  place-items: center;
  width: 172px;
  height: 92px;
  padding: 0;
  border: 1px solid rgba(31, 41, 55, 0.1);
  border-radius: calc(var(--radius) - 2px);
  background: #fff;
  transition: border-color var(--motion-fast) ease;
}

.reference-logo-frame.is-dark-logo {
  background: var(--ink-strong);
  border-color: rgba(255, 255, 255, 0.18);
}

.reference-logo-frame.is-screenshot-logo {
  padding: 0;
  overflow: hidden;
  background: #fff;
  border-color: rgba(31, 41, 55, 0.12);
}

.reference-logo-frame.is-wide-logo {
  padding: 0;
}

.reference-logo-pair {
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, 34px);
  gap: 6px;
  align-content: center;
  justify-items: center;
}

.reference-logo-frame img {
  display: block;
  width: 170px;
  max-width: 100%;
  height: 90px;
  max-height: 100%;
  object-fit: contain;
}

.reference-logo-frame.is-screenshot-logo > img {
  width: 170px;
  height: 90px;
}

.reference-logo-pair img:first-child {
  width: 148px;
  height: 34px;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center;
}

.reference-logo-pair img:last-child {
  width: 148px;
  height: 34px;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
}

.reference-logo-frame.is-wide-logo img {
  max-height: 100%;
}

.contact-section {
  align-items: start;
  padding-top: 92px;
  padding-bottom: 92px;
}

.contact-details {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-details article {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--yellow);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 28px rgba(14, 22, 36, 0.08);
}

.contact-details span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-details a,
.contact-details address {
  margin: 0;
  color: var(--ink-strong);
  font-size: 1.05rem;
  font-style: normal;
  font-weight: 780;
  line-height: 1.55;
}

.contact-map-link {
  width: fit-content;
  color: var(--navy) !important;
  font-size: 0.92rem !important;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink-strong);
  font-size: 0.86rem;
  font-weight: 780;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--navy);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(39, 73, 165, 0.12);
}

.contact-form button {
  width: fit-content;
  margin-top: 4px;
}

.product-card,
.site-card,
.map-card,
.urla-gallery-grid figure,
.process-grid article,
.certificate-card,
.reference-grid article,
.contact-details article {
  transition:
    transform var(--motion-fast) ease,
    box-shadow var(--motion-fast) ease,
    border-color var(--motion-fast) ease,
    background-color var(--motion-fast) ease;
}

.image-panel img,
.material-image img,
.fleet-gallery img,
.site-card img,
.urla-gallery-grid img {
  transition: transform var(--motion-slow) var(--motion-ease);
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .product-card:hover,
  .urla-gallery-grid figure:hover,
  .process-grid article:hover,
  .reference-grid article:hover,
  .contact-details article:hover {
    border-color: rgba(39, 73, 165, 0.24);
    box-shadow: 0 20px 44px rgba(14, 22, 36, 0.15);
    transform: translateY(-6px);
  }

  .site-card:hover,
  .map-card:hover {
    border-color: rgba(242, 189, 47, 0.42);
    background: rgba(255, 255, 255, 0.09);
    transform: translateY(-6px);
  }

  .reference-grid article:hover .reference-logo-frame {
    border-color: rgba(39, 73, 165, 0.28);
  }

  .image-panel:hover img,
  .material-image:hover img,
  .site-card:hover img,
  .urla-gallery-grid figure:hover img,
  .fleet-gallery img:hover {
    transform: scale(1.025);
  }
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--navy);
  font-weight: 750;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 26px 44px;
  color: var(--muted);
  background: #fff;
  border-top: 4px solid var(--yellow);
}

.site-footer img {
  width: 172px;
  height: auto;
}

.site-footer p {
  margin: 0;
  font-size: 0.95rem;
  text-align: right;
}

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

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

  .animate-in,
  .stagger-item,
  [data-hero-motion] .hero-image,
  [data-hero-motion] .hero-content > * {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 1080px) {
  .site-header {
    padding: 8px 24px;
  }

  .site-nav {
    gap: 14px;
    font-size: 0.75rem;
  }

  .hero {
    grid-template-columns: 1fr;
    width: min(760px, calc(100% - 48px));
    min-height: 0;
    padding: 44px 0 60px;
  }

  .hero-content {
    grid-column: 1;
    grid-row: 1;
  }

  .hero-image {
    grid-column: 1;
    grid-row: 2;
    margin-top: 30px;
  }

  .hero h1 {
    font-size: 3.1rem;
  }

  .section-heading.compact,
  .intro-section,
  .material-section,
  .fleet-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

  .process-grid {
    max-width: 760px;
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 10px;
  }

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

@media (max-width: 820px) {
  .brand img {
    width: 148px;
  }

  .hero-content {
    width: 100%;
    padding: 0;
  }

  .hero h1 {
    font-size: 2.65rem;
    line-height: 1.02;
  }

  .hero p {
    font-size: 1rem;
    line-height: 1.62;
  }

  .capacity-summary,
  .product-grid,
  .site-grid,
  .map-grid,
  .urla-gallery-grid,
  .reference-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .capacity-summary div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }

  .section {
    padding: 66px 22px;
  }

  .section-heading h2,
  .intro-copy h2,
  .material-copy h2,
  .fleet-copy h2,
  .contact-copy h2 {
    font-size: 2.05rem;
    line-height: 1.12;
  }

  .section-heading.compact {
    align-items: start;
    flex-direction: column;
    gap: 14px;
  }

  .intro-section,
  .material-section,
  .fleet-section,
  .contact-section {
    width: calc(100% - 36px);
    padding-right: 0;
    padding-left: 0;
  }

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

  .map-heading {
    display: grid;
    align-items: start;
  }

  .map-card-header {
    align-items: start;
    flex-direction: column;
  }

  .map-card iframe {
    height: 320px;
  }

  .fleet-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .fleet-gallery img,
  .fleet-gallery img:first-child,
  .fleet-gallery img:nth-child(2),
  .fleet-gallery img:nth-child(3) {
    grid-column: auto;
    grid-row: auto;
    height: auto;
  }

  .contact-form {
    padding: 20px;
  }

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

  .site-footer {
    flex-direction: column;
    align-items: start;
    padding: 26px 22px;
  }

  .site-footer p {
    text-align: left;
  }
}

@media (max-width: 500px) {
  .site-header {
    min-height: 68px;
    padding: 10px 16px;
  }

  .brand img {
    width: 132px;
  }

  .hero {
    width: calc(100% - 32px);
    padding: 34px 0 46px;
  }

  .hero h1 {
    font-size: 2.08rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .capacity-summary {
    margin-bottom: 22px;
  }

  .capacity-summary div {
    padding: 13px 20px;
  }

  .capacity-summary dd {
    font-size: 1.12rem;
  }

  .product-card,
  .site-card-body,
  .reference-grid article,
  .process-grid article {
    padding: 20px;
  }

  .reference-grid article {
    grid-template-columns: none;
    gap: 0;
  }

  .reference-logo-frame {
    width: 172px;
    height: 92px;
  }

  .certificate-card {
    padding: 0;
  }

  .certificate-card a {
    height: 260px;
  }

  .certificate-card figcaption {
    display: grid;
    gap: 3px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .certificate-carousel {
    overflow: visible;
  }

  .certificate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
    width: min(1120px, 100%);
    animation: none;
  }

  .certificate-card {
    flex-basis: auto;
  }
}
