@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Oswald:wght@500;600;700&display=swap");

:root {
  --blue: #0534c9;
  --blue-dark: #061745;
  --orange: #ef8a21;
  --orange-dark: #d36b0f;
  --ink: #141414;
  --muted: #6f716f;
  --line: #e7e7e2;
  --soft: #f8f8f6;
  --soft-2: #f1f1ee;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(22, 24, 28, 0.12);
  --radius: 8px;
  --clip: polygon(0 22px, 22px 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%);
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding-block: 18px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(20, 20, 20, 0.06);
  backdrop-filter: blur(18px);
  transition: padding 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  padding-block: 10px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 44px rgba(22, 24, 28, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand img {
  width: 150px;
  filter: brightness(0);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 10px 13px;
  border-radius: 999px;
  color: #2a2a2a;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  color: var(--white);
  background: var(--ink);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
}

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

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

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

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: var(--orange);
}

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

h1,
h2,
h3,
.display {
  font-family: "Oswald", Impact, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  margin-bottom: 15px;
  font-size: clamp(3.4rem, 8vw, 7rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 5vw, 4.7rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.45rem;
}

.muted {
  color: var(--muted);
}

.section {
  padding-block: clamp(70px, 9vw, 116px);
}

.section.white {
  background: var(--white);
}

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

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(260px, 0.44fr);
  align-items: end;
  gap: 34px;
  margin-bottom: 34px;
}

.section-heading.centered {
  display: block;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--soft);
}

.home-hero {
  padding-block: 52px 72px;
  background: var(--white);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(311px, 0.85fr) minmax(430px, 1.15fr);
  align-items: center;
  gap: clamp(26px, 5vw, 10px);
}

.hero-copy p {
  max-width: 62ch;
  color: #3c3d3c;
}

.home-hero .hero-copy {
  padding: clamp(26px, 4vw, 44px);
  background: rgba(250, 250, 248, 0.88);
}

.home-hero .eyebrow {
  color: #8c8e88;
  font-size: 0.96rem;
}

.hero-title span,
.page-title span {
  color: var(--orange);
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.2;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--orange);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--orange-dark);
}

.btn-secondary {
  color: var(--ink);
  border-color: #d8d8d1;
  background: var(--white);
}

.image-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.image-stack img,
.clipped-img {
  width: 100%;
  min-height: 180px;
  object-fit: cover;
  clip-path: var(--clip);
  background: var(--white);
}

.image-stack img:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 2 / 0.9;
}

.image-stack img:nth-child(2) {
  aspect-ratio: 1.15 / 0.86;
  margin-top: 0;
}

.image-stack .stat-card {
  min-height: 100%;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.image-stack .stat-card strong {
  font-size: clamp(4rem, 8.4vw, 6.7rem);
}

.stat-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 34px;
}

.stat-card,
.feature-card,
.service-card,
.project-card,
.info-card,
.person-card {
  clip-path: var(--clip);
  background: var(--white);
  border: 1px solid var(--line);
}

.stat-card {
  padding: clamp(22px, 3vw, 34px);
}

.stat-card.brand-stat {
  color: var(--white);
  background: var(--blue);
}

.stat-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Oswald", Impact, sans-serif;
  font-size: clamp(3.2rem, 7vw, 5.6rem);
  line-height: 0.95;
}

.stat-card span {
  color: inherit;
  font-weight: 800;
}

.stat-card small {
  display: block;
  margin-top: 8px;
  color: currentColor;
  opacity: 0.72;
}

.service-grid,
.project-grid,
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.project-card,
.product-card {
  overflow: hidden;
  background: var(--white);
}

.service-card img,
.project-card img,
.product-card img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
  clip-path: var(--clip);
}

.service-card div,
.project-card div,
.product-card div {
  padding: 22px;
}

.service-card p,
.project-card p,
.product-card p,
.info-card p {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: var(--orange-dark);
  font-size: 0.86rem;
  font-weight: 800;
}

.feature-band {
  color: var(--white);
  background: var(--blue-dark);
}

.feature-band .eyebrow,
.feature-band .text-link {
  color: #ffb45d;
}

.feature-band p {
  color: rgba(255, 255, 255, 0.76);
}

.feature-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(34px, 6vw, 70px);
}

.feature-grid.reverse {
  grid-template-columns: 1.1fr 0.9fr;
}

.feature-grid img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  clip-path: var(--clip);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.info-card {
  min-height: 170px;
  padding: 26px;
}

.info-card .icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 50%;
  color: var(--orange);
  background: #fff4e8;
  font-weight: 900;
}

.partners {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
}

.partners img {
  width: 100%;
  height: 94px;
  object-fit: contain;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #141414;
}

.page-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: end;
  padding-block: 120px 58px;
  color: var(--white);
  background-position: center;
  background-size: cover;
  isolation: isolate;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(6, 23, 69, 0.9), rgba(6, 23, 69, 0.35) 58%, rgba(6, 23, 69, 0.08));
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero .page-title {
  max-width: 980px;
  margin: 0;
}

.page-hero p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(455px, 0.42fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: start;
}

.prose {
  color: #303230;
}

.prose p {
  margin-bottom: 20px;
}

.service-switcher {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  width: min(100%, 720px);
  margin-bottom: 34px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.service-switcher a {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border-radius: var(--radius);
  color: var(--ink);
  font-weight: 800;
  text-align: center;
}

.service-switcher a.active {
  color: var(--white);
  background: var(--blue);
}

.subservice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.capacity {
  margin-top: 24px;
  padding: 24px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--blue);
}

.capacity strong {
  display: block;
  font-family: "Oswald", Impact, sans-serif;
  font-size: clamp(3.8rem, 7vw, 6rem);
  line-height: 0.9;
}

.capacity span {
  font-weight: 800;
}

.project-list {
  display: grid;
  gap: 12px;
  margin: 30px 0;
}

.project-list article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.machine-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 32px;
  align-items: center;
  padding-block: 40px;
  border-bottom: 1px solid var(--line);
}

.machine-card:last-child {
  border-bottom: 0;
}

.machine-card img {
  width: 100%;
  object-fit: contain;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--white);
  clip-path: var(--clip);
}

.logo-grid,
.product-types {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.logo-card {
  display: grid;
  min-height: 160px;
  place-items: center;
  padding: 34px;
  border: 1px solid var(--line);
  background: var(--white);
  clip-path: var(--clip);
}

.logo-card img {
  max-width: 210px;
  max-height: 86px;
  object-fit: contain;
}

.product-type {
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
  clip-path: var(--clip);
}

.product-type img {
  width: 100%;
  max-height: 240px;
  object-fit: contain;
  margin-top: 20px;
}

.person-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: end;
  padding: 21px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
}

.person-card p {
  color: rgba(255, 255, 255, 0.78);
}

.person-card img {
  align-self: end;
  max-height: 430px;
  margin-inline: auto;
  object-fit: contain;
  filter: drop-shadow(0 22px 38px rgba(0, 0, 0, 0.22));
}

.quote {
  margin: 24px 0 0;
  padding-left: 22px;
  border-left: 4px solid var(--orange);
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  font-weight: 700;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 42px;
  padding: clamp(28px, 5vw, 46px);
  color: var(--white);
  background: var(--ink);
  clip-path: var(--clip);
}

.cta-panel p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.map-section {
  background: var(--white);
}

.arel-map {
  width: 100%;
  height: 390px;
  z-index: 1;
  overflow: hidden;
}

.arel-map .leaflet-pane,
.arel-map .leaflet-tile,
.arel-map .leaflet-marker-icon,
.arel-map .leaflet-marker-shadow,
.arel-map .leaflet-tile-container,
.arel-map .leaflet-pane > svg,
.arel-map .leaflet-pane > canvas {
  position: absolute;
  left: 0;
  top: 0;
}

.arel-map .leaflet-control-container {
  position: relative;
  z-index: 800;
}

.arel-map .leaflet-top,
.arel-map .leaflet-bottom {
  position: absolute;
  z-index: 1000;
  pointer-events: none;
}

.arel-map .leaflet-top {
  top: 10px;
}

.arel-map .leaflet-left {
  left: 10px;
}

.arel-map .leaflet-control {
  position: relative;
  z-index: 1000;
  pointer-events: auto;
}

.arel-map-popup strong {
  display: block;
  color: var(--blue);
  margin-bottom: 8px;
  font-weight: 900;
}

.arel-map-popup {
  min-width: 240px;
}

.arel-map-popup span {
  display: block;
  margin-bottom: 10px;
}

.arel-map-popup a {
  display: inline-flex;
  margin-top: 0;
  padding: 7px 10px;
  border-radius: 6px;
  color: var(--white);
  background: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
}

.arel-map-marker {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 3px solid var(--white);
  border-radius: 50% 50% 50% 0;
  background: var(--orange);
  box-shadow: 0 10px 26px rgba(239, 138, 33, 0.38);
  transform: rotate(-45deg);
}

.arel-map-marker::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--white);
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr 1fr;
  gap: 36px;
  padding-block: 64px;
}

.footer-grid img {
  width: 112px;
  margin-bottom: 14px;
}

.footer-grid address {
  font-style: normal;
}

.footer-grid strong {
  display: block;
  margin-bottom: 12px;
}

.footer-grid a {
  display: block;
  width: max-content;
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid a + a {
  margin-top: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom .container {
  display: flex;
  justify-content: center;
  padding-block: 16px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.back-top-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 900;
  background: var(--orange);
  box-shadow: 0 10px 30px rgba(22, 24, 28, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
}

.back-top-btn.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

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

  .site-nav {
    position: fixed;
    inset: 82px 16px auto;
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    justify-content: flex-start;
    border-radius: var(--radius);
  }

  .hero-grid,
  .section-heading,
  .feature-grid,
  .feature-grid.reverse,
  .content-grid,
  .machine-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .page-hero {
    min-height: 460px;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 15px;
  }

  .brand img {
    width: 118px;
  }

  .home-hero {
    padding-block: 38px 48px;
  }

  h1 {
    font-size: 3.6rem;
  }

  .hero-actions,
  .button-row,
  .cta-panel {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .image-stack,
  .stat-panel,
  .service-grid,
  .project-grid,
  .product-grid,
  .info-grid,
  .partners,
  .service-switcher,
  .subservice-grid,
  .logo-grid,
  .product-types,
  .person-card,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .image-stack img:nth-child(2),
  .image-stack img:nth-child(3) {
    grid-column: auto;
    margin-top: 0;
  }

  .page-hero {
    min-height: 390px;
    padding-block: 96px 44px;
  }

  .partners img {
    height: 84px;
  }

  .person-card {
    padding: 26px;
  }

  .arel-map {
    height: 310px;
  }
}
