:root {
  --bg: #08090b;
  --ink: #f4f5f7;
  --muted: #b8bec8;
  --soft: #7f8793;
  --panel: #11151d;
  --panel-2: #171c25;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.22);
  --accent: #ffab22;
  --accent-2: #f05a1a;
  --white: #ffffff;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --max: 1360px;
  --radius: 8px;
  --font: "Arial", "Helvetica Neue", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 20% 0%, rgba(255, 171, 34, 0.08), transparent 32rem),
    var(--bg);
  background-size: 56px 56px, 56px 56px, auto, auto;
  font-family: var(--font);
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

body.has-page-loader {
  overflow: hidden;
}

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

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

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 171, 34, 0.2), transparent 16rem),
    radial-gradient(circle at 52% 62%, rgba(240, 90, 26, 0.16), transparent 22rem),
    linear-gradient(135deg, #06070a 0%, #10141b 48%, #06070a 100%);
  opacity: 1;
  visibility: visible;
  transition: opacity 540ms ease, visibility 540ms ease;
}

.page-loader::before,
.page-loader::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.page-loader::before {
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  -webkit-mask-image: radial-gradient(circle at center, black 0 34%, transparent 72%);
  mask-image: radial-gradient(circle at center, black 0 34%, transparent 72%);
  opacity: 0.58;
  animation: loaderGridDrift 2200ms linear infinite;
}

.page-loader::after {
  width: min(62vw, 560px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 171, 34, 0.28), transparent 58%);
  filter: blur(30px);
  transform: translateY(32px);
  opacity: 0.72;
  animation: loaderGlowBreath 1800ms ease-in-out infinite;
}

.page-loader.is-hiding {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-orbit {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: clamp(300px, 52vw, 620px);
  aspect-ratio: 1.96;
  isolation: isolate;
}

.loader-logo-wrap {
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
  width: min(86vw, 520px);
  aspect-ratio: 1.96;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  filter:
    drop-shadow(0 24px 44px rgba(0, 0, 0, 0.5))
    drop-shadow(0 0 34px rgba(255, 171, 34, 0.22));
  overflow: visible;
  animation: loaderFlameLift 1650ms cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.loader-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: 50% 78%;
  filter:
    drop-shadow(0 0 16px rgba(255, 171, 34, 0.28))
    drop-shadow(0 14px 22px rgba(0, 0, 0, 0.34));
  animation: loaderFlamePulse 900ms ease-in-out infinite alternate;
}

.loader-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(45vw, 310px);
  height: min(45vw, 310px);
  min-width: 210px;
  min-height: 210px;
  border-radius: 50%;
  border: 1px solid rgba(255, 171, 34, 0.16);
  background:
    conic-gradient(from 0deg, transparent 0 16%, rgba(255, 171, 34, 0.9) 18%, rgba(240, 90, 26, 0.3) 28%, transparent 38% 100%);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 10px), black calc(100% - 9px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 10px), black calc(100% - 9px));
  opacity: 0.9;
  transform: translate(-50%, -50%);
  animation: loaderSpin 1350ms linear infinite;
}

.loader-ring-two {
  width: min(31vw, 214px);
  height: min(31vw, 214px);
  min-width: 152px;
  min-height: 152px;
  opacity: 0.56;
  animation-duration: 2100ms;
  animation-direction: reverse;
}

.loader-spark {
  position: absolute;
  z-index: 2;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(255, 171, 34, 0.86);
  opacity: 0;
  animation: loaderSpark 1600ms ease-in-out infinite;
}

.loader-spark-one {
  top: 6%;
  left: 70%;
}

.loader-spark-two {
  right: 8%;
  bottom: 30%;
  width: 6px;
  height: 6px;
  animation-delay: 360ms;
}

.loader-spark-three {
  bottom: 15%;
  left: 28%;
  width: 5px;
  height: 5px;
  animation-delay: 760ms;
}

@keyframes loaderSpin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes loaderGridDrift {
  to {
    background-position: 52px 52px, 52px 52px;
  }
}

@keyframes loaderGlowBreath {
  50% {
    opacity: 0.96;
    transform: translateY(24px) scale(1.08);
  }
}

@keyframes loaderFlameLift {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  52% {
    transform: translateY(-7px) scale(1.035);
  }
}

@keyframes loaderFlamePulse {
  to {
    transform: scale(1.012);
    filter:
      drop-shadow(0 0 26px rgba(255, 171, 34, 0.36))
      drop-shadow(0 18px 30px rgba(240, 90, 26, 0.28));
  }
}

@keyframes loaderSpark {
  0%,
  100% {
    opacity: 0;
    transform: translate3d(0, 14px, 0) scale(0.72);
  }

  36% {
    opacity: 0.9;
  }

  70% {
    opacity: 0;
    transform: translate3d(0, -24px, 0) scale(1);
  }
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 9, 11, 0.82);
  backdrop-filter: blur(18px);
  transition: background 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(255, 171, 34, 0.18);
  background: rgba(8, 9, 11, 0.94);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.36);
}

.nav-shell {
  width: min(var(--max), calc(100% - 40px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.brand img {
  width: auto;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.42));
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.main-nav a {
  position: relative;
  padding: 31px 0;
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
}

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

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

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.services-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 30;
  width: min(440px, calc(100vw - 40px));
  max-height: min(640px, 76vh);
  overflow-y: auto;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #0d0f14;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.42);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transform-origin: top center;
  transition: opacity 180ms ease, visibility 180ms ease, transform 220ms ease;
  scrollbar-width: none;
}

.services-menu::-webkit-scrollbar {
  display: none;
}

.services-menu::before {
  display: none;
}

.services-menu-head {
  display: grid;
  gap: 4px;
  padding: 6px 4px 10px;
}

.services-menu-head span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.services-menu-head strong {
  color: var(--white);
  font-size: 16px;
  line-height: 1.1;
  text-transform: uppercase;
}

.services-menu a {
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 12px;
  min-height: auto;
  padding: 10px 4px;
  border: 1px solid transparent;
  border-bottom-color: rgba(255, 255, 255, 0.08);
  border-radius: 0;
  color: var(--white);
  text-transform: none;
  background: transparent;
  transition: color 180ms ease, transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.services-menu a::after {
  display: none;
}

.services-menu a + a {
  margin-top: 0;
}

.services-menu a > span {
  width: 6px;
  height: 6px;
  margin-top: 5px;
  border-radius: 999px;
  background: var(--accent);
  color: transparent;
  font-size: 0;
  line-height: 1;
}

.services-menu strong {
  display: block;
  color: var(--white);
  font-size: 13px;
  line-height: 1.1;
  text-transform: uppercase;
}

.services-menu small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.25;
  text-transform: none;
}

.services-menu a:hover,
.services-menu a:focus {
  transform: translateX(2px);
  border-bottom-color: rgba(255, 171, 34, 0.22);
  background: rgba(255, 255, 255, 0.025);
}

.services-menu-full {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.services-menu-full a + a {
  margin-top: 0;
}

.nav-dropdown:hover .services-menu,
.nav-dropdown:focus-within .services-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-cta,
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.nav-cta,
.btn-primary {
  color: #121212;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.btn-secondary {
  color: var(--white);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.05);
}

.btn:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.nav-cta::before,
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 32%, rgba(255, 255, 255, 0.45) 48%, transparent 64% 100%);
  transform: translateX(-120%);
  transition: transform 560ms cubic-bezier(0.19, 0.9, 0.22, 1);
  pointer-events: none;
}

.nav-cta:hover::before,
.btn:hover::before,
.nav-cta:focus-visible::before,
.btn:focus-visible::before {
  transform: translateX(120%);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  --hero-shift: 0px;
  --hero-lines: 0px;
  --hero-lines-alt: 0px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(248, 249, 244, 0.95) 0%, rgba(240, 243, 238, 0.9) 20%, rgba(214, 221, 218, 0.76) 40%, rgba(96, 104, 112, 0.58) 62%, rgba(5, 7, 10, 0.94) 100%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.2) 32%, rgba(255, 171, 34, 0.05) 48%, rgba(8, 9, 11, 0.74) 100%),
    url("../images/hero-industrial.png") center / cover no-repeat;
  background-position: center, center, center calc(50% + var(--hero-shift));
  transform: scale(1.035);
  transition: transform 900ms cubic-bezier(0.19, 0.9, 0.22, 1);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(120deg, transparent 0 47%, rgba(255, 171, 34, 0.18) 47.2% 47.45%, transparent 47.7%),
    linear-gradient(60deg, transparent 0 57%, rgba(8, 9, 11, 0.1) 57.2% 57.35%, transparent 57.55%);
  opacity: 0.58;
  pointer-events: none;
  background-position: 0 var(--hero-lines), 0 var(--hero-lines-alt);
  animation: heroBlueprintSweep 7600ms ease-in-out infinite alternate;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 40px));
  min-height: calc(100vh - 82px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.62fr);
  align-items: center;
  gap: 42px;
  padding: 84px 0 56px;
}

.hero-logo {
  width: min(390px, 100%);
  margin-bottom: 28px;
  filter: drop-shadow(0 22px 46px rgba(8, 9, 11, 0.2));
  transform-origin: 20% 50%;
}

.hero-animate {
  opacity: 0;
  animation-fill-mode: both;
  will-change: transform, opacity, filter;
}

.hero-logo-roll {
  animation: heroLogoRoll 980ms cubic-bezier(0.17, 0.9, 0.22, 1.12) 140ms both;
}

.hero-title-in {
  animation: heroTextLift 760ms cubic-bezier(0.19, 0.9, 0.22, 1) 520ms both;
}

.hero-copy-in {
  animation: heroTextLift 720ms cubic-bezier(0.19, 0.9, 0.22, 1) 720ms both;
}

.hero-actions-in {
  animation: heroTextLift 680ms cubic-bezier(0.19, 0.9, 0.22, 1) 900ms both;
}

.hero-panel-in {
  animation: heroPanelBuild 820ms cubic-bezier(0.19, 0.9, 0.22, 1) 820ms both;
}

@keyframes heroLogoRoll {
  0% {
    opacity: 0;
    transform: translateX(-120px) rotate(-8deg) scale(0.88);
    filter: blur(8px) drop-shadow(0 24px 60px rgba(0, 0, 0, 0));
  }
  68% {
    opacity: 1;
    transform: translateX(10px) rotate(1.2deg) scale(1.02);
    filter: blur(0) drop-shadow(0 24px 48px rgba(8, 9, 11, 0.22));
  }
  100% {
    opacity: 1;
    transform: translateX(0) rotate(0) scale(1);
    filter: blur(0) drop-shadow(0 22px 46px rgba(8, 9, 11, 0.2));
  }
}

@keyframes heroTextLift {
  0% {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes heroPanelBuild {
  0% {
    opacity: 0;
    transform: translateX(34px) translateY(22px) scale(0.96);
    filter: blur(8px);
  }
  100% {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes heroBlueprintSweep {
  0% {
    opacity: 0.48;
    transform: translate3d(-16px, -8px, 0);
  }
  100% {
    opacity: 0.82;
    transform: translate3d(18px, 10px, 0);
  }
}

.hero h1,
.page-hero h1,
.section-head h2,
.split-copy h2 {
  margin: 0;
  color: var(--white);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  color: #101318;
  font-size: clamp(32px, 4.5vw, 58px);
}

.hero p {
  max-width: 660px;
  margin: 26px 0 0;
  color: #3f4650;
  font-size: clamp(17px, 2vw, 22px);
}

.hero .btn-secondary {
  color: #101318;
  border-color: rgba(16, 19, 24, 0.32);
  background: rgba(255, 255, 255, 0.34);
}

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

.hero-panel {
  align-self: center;
  margin-top: 88px;
  margin-bottom: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(12, 16, 23, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-panel-row {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 18px;
  padding: 24px;
  border-bottom: 1px solid var(--line);
}

.hero-panel-row:last-child {
  border-bottom: 0;
}

.metric {
  color: var(--accent);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  transition: text-shadow 320ms ease, transform 320ms ease;
}

.hero-panel-row:hover .metric {
  transform: translateX(3px);
  text-shadow: 0 0 28px rgba(255, 171, 34, 0.38);
}

.label {
  color: var(--soft);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  margin-top: 4px;
  color: var(--white);
  font-size: 17px;
}

.section {
  padding: 96px 0;
}

.section-dark {
  background: linear-gradient(180deg, #0d1016, #090a0d);
  border-block: 1px solid var(--line);
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.5fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 44px;
}

.section-head h2,
.split-copy h2,
.page-hero h1 {
  font-size: clamp(24px, 2.7vw, 36px);
}

.section-head p,
.split-copy p,
.page-hero p,
.lead {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.split-copy .btn {
  margin-top: 28px;
}

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

.service-card,
.project-card,
.client-tile,
.process-step,
.contact-card,
.value-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
}

.service-card,
.process-step,
.contact-card,
.value-card,
.rich-panel,
.form-panel {
  transition: transform 260ms ease, border-color 240ms ease, box-shadow 260ms ease, background 240ms ease;
}

.service-card:hover,
.process-step:hover,
.contact-card:hover,
.value-card:hover,
.rich-panel:hover,
.form-panel:hover {
  border-color: rgba(255, 171, 34, 0.32);
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.28);
}

.service-card::before,
.project-card::before,
.client-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 171, 34, 0.18), transparent 34%);
  opacity: 0;
  transition: opacity 160ms ease;
  pointer-events: none;
}

.service-card:hover::before,
.project-card:hover::before,
.client-tile:hover::before {
  opacity: 1;
}

.service-card {
  min-height: 280px;
  padding: 28px;
}

.service-card .number,
.process-step .number {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.service-card h3,
.project-card h3,
.contact-card h3,
.value-card h3 {
  position: relative;
  margin: 34px 0 14px;
  color: var(--white);
  font-size: 23px;
  line-height: 1.05;
  text-transform: uppercase;
}

.service-card p,
.project-card p,
.contact-card p,
.value-card p {
  position: relative;
  margin: 0;
  color: var(--muted);
}

.service-card .arrow {
  position: absolute;
  right: 24px;
  bottom: 22px;
  color: var(--accent);
  font-size: 28px;
}

.service-card.is-compact {
  min-height: 230px;
}

.service-card.is-compact h3 {
  margin-top: 28px;
  font-size: 20px;
}

.service-card.is-compact p {
  font-size: 15px;
}

.scope-register {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  align-items: start;
}

.scope-register-copy {
  position: sticky;
  top: 110px;
}

.scope-register-copy h2 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1;
  text-transform: uppercase;
}

.scope-register-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.scope-list {
  display: grid;
  gap: 10px;
}

.scope-item {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 171, 34, 0.08), transparent 42%),
    rgba(255, 255, 255, 0.035);
  transition: transform 240ms ease, border-color 220ms ease, background 220ms ease;
}

.scope-item::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 171, 34, 0.82), transparent);
  opacity: 0;
  transform: scaleX(0.2);
  transition: opacity 220ms ease, transform 280ms ease;
}

.scope-item span {
  color: var(--accent);
  font-size: 18px;
  font-weight: 900;
}

.scope-item h3 {
  margin: 0 0 7px;
  color: var(--white);
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.1;
  text-transform: uppercase;
}

.scope-item p {
  margin: 0;
  color: var(--muted);
}

.scope-item:hover {
  transform: translateX(8px);
  border-color: rgba(255, 171, 34, 0.44);
  background:
    linear-gradient(135deg, rgba(255, 171, 34, 0.14), transparent 46%),
    rgba(255, 255, 255, 0.05);
}

.scope-item:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
  gap: 64px;
  align-items: center;
}

.media-frame {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  --media-shift: 0px;
}

.media-frame img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  transform: translate3d(0, var(--media-shift), 0) scale(1.045);
  transition: transform 700ms cubic-bezier(0.19, 0.9, 0.22, 1), filter 360ms ease;
  will-change: transform;
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(8, 9, 11, 0.28));
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.value-card {
  padding: 24px;
}

.value-card h3 {
  margin-top: 22px;
  color: var(--accent);
}

.about-focus {
  position: relative;
  background:
    radial-gradient(circle at 12% 22%, rgba(255, 171, 34, 0.12), transparent 28rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 52%),
    var(--bg);
}

.about-focus-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 171, 34, 0.08), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    var(--panel);
  box-shadow: var(--shadow);
}

.about-focus-layout::before {
  content: "";
  position: absolute;
  inset: 22px auto 22px 22px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), transparent);
  opacity: 0.72;
}

.about-focus-title {
  position: relative;
  display: flex;
  min-height: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 4.4vw, 58px) clamp(30px, 4.2vw, 54px) clamp(34px, 4.4vw, 58px) clamp(44px, 5vw, 76px);
}

.about-focus-title h2 {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--white);
  font-size: clamp(30px, 3.35vw, 48px);
  line-height: 1.06;
  text-wrap: balance;
  text-transform: uppercase;
}

.about-focus-copy {
  position: relative;
  padding: clamp(34px, 4.6vw, 58px);
  border-left: 1px solid var(--line);
  background: rgba(8, 9, 11, 0.22);
}

.about-focus-copy p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.48;
}

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

.about-proof-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.about-proof-list li {
  position: relative;
  min-height: 34px;
  padding: 8px 0 8px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  line-height: 1.45;
}

.about-proof-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.45em;
  width: 14px;
  height: 2px;
  background: var(--accent);
  transform-origin: left center;
  transition: transform 380ms ease var(--child-delay, 0ms), opacity 380ms ease var(--child-delay, 0ms);
}

.about-principles {
  margin-top: 18px;
}

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

.about-principle {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 171, 34, 0.09), transparent 46%),
    rgba(255, 255, 255, 0.035);
  transition: transform 240ms ease, border-color 220ms ease, background 220ms ease, box-shadow 260ms ease;
}

.about-principle::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 171, 34, 0.78), transparent);
  opacity: 0;
  transform: scaleX(0.2);
  transition: opacity 220ms ease, transform 280ms ease;
}

.about-principle span {
  display: block;
  color: var(--accent);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  transition: transform 260ms ease;
}

.about-principle h3 {
  margin: 46px 0 14px;
  color: var(--white);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.05;
  text-transform: uppercase;
}

.about-principle p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.about-principle:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 171, 34, 0.38);
  background:
    linear-gradient(135deg, rgba(255, 171, 34, 0.14), transparent 46%),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.26);
}

.about-principle:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.about-principle:hover span {
  transform: translateX(4px);
}

.projects-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 16px;
}

.project-carousel {
  position: relative;
}

.project-carousel-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 18px;
}

.carousel-button {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.carousel-button:hover,
.carousel-button:focus-visible {
  border-color: var(--accent);
  background: rgba(255, 171, 34, 0.18);
  outline: none;
  transform: translateY(-2px);
}

.carousel-button:disabled {
  cursor: default;
  opacity: 0.35;
  transform: none;
}

.project-carousel-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.project-carousel-viewport::-webkit-scrollbar {
  display: none;
}

.project-carousel-track {
  display: grid;
  grid-auto-columns: clamp(300px, 38vw, 520px);
  grid-auto-flow: column;
  gap: 16px;
}

.project-card.project-carousel-card {
  height: clamp(320px, 32vw, 440px);
  min-height: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.project-card.project-carousel-card img {
  display: block;
  height: 100%;
  min-height: 0;
}

.project-carousel-card .project-info {
  opacity: 0;
  transform: translateY(24px);
}

.project-card {
  min-height: 360px;
  isolation: isolate;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.3);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.project-card.featured {
  min-height: 540px;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.03);
  transition: transform 620ms cubic-bezier(0.19, 0.9, 0.22, 1), filter 360ms ease;
}

.project-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px;
  background: linear-gradient(180deg, transparent, rgba(8, 9, 11, 0.92) 34%);
  z-index: 2;
  transition: transform 320ms ease, opacity 260ms ease;
}

.project-info h3 {
  margin-top: 80px;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 9, 11, 0.02), rgba(8, 9, 11, 0.72)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 7px);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 300ms ease, transform 360ms ease;
  pointer-events: none;
}

.project-hover {
  position: absolute;
  inset: 18px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
  padding: 26px;
  border: 1px solid rgba(255, 171, 34, 0.42);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(255, 171, 34, 0.16), transparent 42%),
    rgba(8, 10, 14, 0.72);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 24px 70px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(34px) scale(0.96);
  transition: opacity 280ms ease, transform 420ms cubic-bezier(0.17, 0.9, 0.22, 1.08);
  pointer-events: none;
}

.project-hover::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transform: translateY(0);
}

.scan-label {
  width: max-content;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.project-hover h4 {
  max-width: 560px;
  margin: 0;
  color: var(--white);
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.02;
  text-transform: uppercase;
}

.project-hover p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.82);
}

.project-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.project-facts span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 3px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.project-link {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.project-card:hover,
.project-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(255, 171, 34, 0.5);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.46);
}

.project-card:hover img,
.project-card:focus-within img {
  transform: scale(1.055);
  filter: saturate(0.9) contrast(1.08) brightness(0.68);
}

.project-card:hover::after,
.project-card:focus-within::after {
  opacity: 1;
  transform: translateY(0);
}

.project-card:hover .project-info,
.project-card:focus-within .project-info {
  opacity: 0;
  transform: translateY(24px);
}

.project-card:hover .project-hover,
.project-card:focus-within .project-hover {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.project-card:hover .project-hover::before,
.project-card:focus-within .project-hover::before {
  opacity: 1;
  animation: projectScan 1500ms ease-out both;
}

@keyframes projectScan {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  18% {
    opacity: 1;
  }
  100% {
    transform: translateY(260px);
    opacity: 0;
  }
}

.project-gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.project-mini {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  isolation: isolate;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
  transition: transform 320ms cubic-bezier(0.19, 0.9, 0.22, 1), border-color 260ms ease, box-shadow 260ms ease;
}

.project-mini::before,
.project-mini::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.project-mini::before {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 9, 11, 0.04) 0%, rgba(8, 9, 11, 0.2) 36%, rgba(8, 9, 11, 0.94) 100%),
    linear-gradient(135deg, transparent 0 58%, rgba(255, 171, 34, 0.16) 58% 59%, transparent 59% 100%);
}

.project-mini::after {
  z-index: 3;
  border: 1px solid rgba(255, 171, 34, 0);
  background:
    linear-gradient(90deg, transparent, rgba(255, 171, 34, 0.5), transparent) 0 0 / 100% 1px no-repeat,
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 8px);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 260ms ease, transform 360ms ease, border-color 260ms ease;
}

.project-mini img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04) brightness(0.86);
  transition: transform 780ms cubic-bezier(0.19, 0.9, 0.22, 1), filter 360ms ease;
}

.project-mini-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 22px;
  transform: translateY(18px);
  transition: transform 360ms cubic-bezier(0.17, 0.9, 0.22, 1.08);
}

.project-mini-info span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.project-mini-info h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: clamp(20px, 1.6vw, 27px);
  line-height: 1.04;
  text-transform: uppercase;
}

.project-mini-info p {
  max-height: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  opacity: 0;
  overflow: hidden;
  transform: translateY(10px);
  transition: max-height 420ms ease, opacity 260ms ease, transform 360ms ease;
}

.project-mini:hover,
.project-mini:focus-within {
  transform: translateY(-8px);
  border-color: rgba(255, 171, 34, 0.55);
  box-shadow: 0 34px 96px rgba(0, 0, 0, 0.48);
}

.project-mini:hover::after,
.project-mini:focus-within::after {
  opacity: 1;
  transform: translateY(0);
  border-color: rgba(255, 171, 34, 0.32);
}

.project-mini:hover img,
.project-mini:focus-within img {
  transform: scale(1.08);
  filter: saturate(0.9) contrast(1.1) brightness(0.62);
}

.project-mini:hover .project-mini-info,
.project-mini:focus-within .project-mini-info {
  transform: translateY(0);
}

.project-mini:hover .project-mini-info span,
.project-mini:focus-within .project-mini-info span {
  color: var(--accent);
}

.project-mini:hover .project-mini-info p,
.project-mini:focus-within .project-mini-info p {
  max-height: 150px;
  opacity: 1;
  transform: translateY(0);
}

.project-mini:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.project-detail-hero {
  padding: 72px 0;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 171, 34, 0.12), transparent 28rem),
    var(--bg);
}

.project-detail-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: 52px;
  align-items: center;
}

.project-detail-copy h1 {
  max-width: 760px;
  margin: 12px 0 20px;
  font-size: clamp(40px, 5.3vw, 76px);
  line-height: 0.96;
  text-transform: uppercase;
}

.project-detail-copy > p {
  max-width: 700px;
  color: var(--muted);
  font-size: 18px;
}

.project-detail-area {
  color: var(--ink) !important;
  font-size: 16px !important;
  text-transform: uppercase;
}

.project-detail-area strong {
  color: var(--accent);
}

.project-detail-copy .btn {
  margin-top: 18px;
}

.project-detail-cover {
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.project-detail-cover img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

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

.project-photo {
  position: relative;
  min-height: 220px;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  cursor: zoom-in;
}

.project-photo img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04) brightness(0.88);
  transition: transform 420ms ease, filter 320ms ease;
}

.project-photo span {
  position: absolute;
  right: 12px;
  bottom: 10px;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

.project-photo:hover img,
.project-photo:focus-visible img {
  transform: scale(1.07);
  filter: saturate(1) contrast(1.06) brightness(0.72);
}

.project-photo:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

body.has-lightbox {
  overflow: hidden;
}

.project-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  gap: 18px;
  align-items: center;
  padding: 30px;
  background: rgba(3, 4, 6, 0.94);
  backdrop-filter: blur(16px);
}

.project-lightbox.is-open {
  display: grid;
}

.project-lightbox-frame {
  display: grid;
  justify-items: center;
  gap: 14px;
  max-width: 1320px;
  max-height: calc(100vh - 60px);
  margin: 0 auto;
}

.project-lightbox-frame img {
  max-width: 100%;
  max-height: calc(100vh - 110px);
  object-fit: contain;
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.58);
}

.project-lightbox-frame figcaption {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.project-lightbox button {
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--white);
  background: rgba(17, 21, 29, 0.84);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.project-lightbox button:hover,
.project-lightbox button:focus-visible {
  border-color: var(--accent);
  background: rgba(255, 171, 34, 0.18);
  outline: none;
  transform: scale(1.06);
}

.project-lightbox-nav {
  width: 64px;
  height: 64px;
  font-size: 54px;
  line-height: 0.8;
}

.project-lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 50px;
  height: 50px;
  font-size: 34px;
  line-height: 1;
}

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

.client-strip-large {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.client-tile {
  min-height: 150px;
  display: grid;
  place-items: center;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(230, 234, 240, 0.94)),
    #ffffff;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.client-tile img {
  width: 100%;
  max-width: 210px;
  max-height: 92px;
  object-fit: contain;
  filter: saturate(0.95) contrast(1.02);
  transition: transform 220ms ease, filter 220ms ease;
}

.client-strip-large .client-tile {
  min-height: 176px;
}

.client-strip-large .client-tile img {
  max-width: 230px;
  max-height: 108px;
}

.client-tile:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 171, 34, 0.56);
  background:
    linear-gradient(135deg, #ffffff, #f5f7fb),
    #ffffff;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(255, 171, 34, 0.18);
}

.client-tile:hover img {
  transform: scale(1.04);
  filter: saturate(1.08) contrast(1.04);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 112px 0 84px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(8, 9, 11, 0.96), rgba(8, 9, 11, 0.68)),
    url("../images/hero-industrial.png") center / cover no-repeat;
}

.page-hero .crumbs,
.page-hero h1,
.page-hero p {
  opacity: 0;
  transform: translateY(22px);
  filter: blur(6px);
  animation: pageHeroLift 760ms cubic-bezier(0.19, 0.9, 0.22, 1) both;
}

.page-hero h1 {
  animation-delay: 140ms;
}

.page-hero p {
  animation-delay: 280ms;
}

@keyframes pageHeroLift {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

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

.page-hero p {
  max-width: 720px;
  margin-top: 22px;
}

.crumbs {
  margin-bottom: 26px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.46fr);
  gap: 42px;
}

.rich-panel {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(17, 21, 29, 0.72);
}

.rich-panel h2,
.rich-panel h3 {
  margin: 0 0 18px;
  color: var(--white);
  text-transform: uppercase;
}

.rich-panel p,
.rich-panel li {
  color: var(--muted);
}

.rich-panel ul {
  margin: 18px 0 0;
  padding-left: 18px;
}

.rich-panel .btn {
  margin-top: 28px;
}

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

.process-step {
  padding: 24px;
}

.process-step h3 {
  margin: 26px 0 10px;
  color: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.6fr);
  gap: 28px;
}

.form-panel,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.form-panel {
  padding: 32px;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field label {
  color: var(--soft);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--white);
  background: #0b0d12;
  padding: 14px;
  outline: none;
}

.field textarea {
  min-height: 128px;
  resize: vertical;
}

.work-field {
  position: relative;
}

.native-work-select {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.work-select {
  position: relative;
  z-index: 8;
}

.work-select-trigger {
  position: relative;
  width: 100%;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 171, 34, 0.09), transparent 42%),
    #0b0d12;
  padding: 0 14px;
  cursor: pointer;
  text-align: left;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.work-select-trigger::before {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transform: scaleX(0.2);
  transition: opacity 180ms ease, transform 240ms ease;
}

.work-select-trigger i {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 220ms ease;
}

.work-select.is-open .work-select-trigger,
.work-select-trigger:hover {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 171, 34, 0.1);
}

.work-select.is-open .work-select-trigger::before {
  opacity: 1;
  transform: scaleX(1);
}

.work-select.is-open .work-select-trigger i {
  transform: rotate(225deg) translate(-2px, -2px);
}

.work-select-menu {
  position: absolute;
  left: auto;
  right: 0;
  top: calc(100% + 10px);
  z-index: 40;
  width: max(100%, min(420px, calc(100vw - 40px)));
  max-height: min(360px, calc(100vh - 220px));
  overflow-y: auto;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #0d0f14;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transform-origin: top;
  transition: opacity 180ms ease, visibility 180ms ease, transform 220ms ease;
  scrollbar-color: rgba(255, 171, 34, 0.68) rgba(255, 255, 255, 0.08);
  scrollbar-width: thin;
}

.work-select-menu::-webkit-scrollbar {
  width: 6px;
}

.work-select-menu::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.work-select-menu::-webkit-scrollbar-thumb {
  background: rgba(255, 171, 34, 0.68);
  border-radius: 999px;
}

.work-select-menu::before {
  display: none;
}

.work-select.is-open .work-select-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.work-option {
  width: 100%;
  min-height: 0;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  border: 1px solid transparent;
  border-bottom-color: rgba(255, 255, 255, 0.08);
  border-radius: 0;
  color: var(--white);
  background: transparent;
  padding: 10px 8px;
  text-align: left;
  cursor: pointer;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 220ms ease, transform 260ms ease, border-color 160ms ease, background 160ms ease;
}

.work-option + .work-option {
  margin-top: 0;
}

.work-select.is-open .work-option {
  opacity: 1;
  transform: translateX(0);
}

.work-select.is-open .work-option:nth-child(2) { transition-delay: 35ms; }
.work-select.is-open .work-option:nth-child(3) { transition-delay: 70ms; }
.work-select.is-open .work-option:nth-child(4) { transition-delay: 105ms; }
.work-select.is-open .work-option:nth-child(5) { transition-delay: 140ms; }
.work-select.is-open .work-option:nth-child(6) { transition-delay: 175ms; }
.work-select.is-open .work-option:nth-child(7) { transition-delay: 210ms; }
.work-select.is-open .work-option:nth-child(8) { transition-delay: 245ms; }
.work-select.is-open .work-option:nth-child(9) { transition-delay: 280ms; }
.work-select.is-open .work-option:nth-child(10) { transition-delay: 315ms; }

.work-option span {
  grid-column: 1;
  grid-row: 1 / span 2;
  color: var(--accent);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.18;
}

.work-option strong {
  grid-column: 2;
  display: block;
  font-size: 13px;
  line-height: 1.18;
  text-transform: uppercase;
}

.work-option small {
  grid-column: 2;
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.work-option:hover,
.work-option:focus {
  border-bottom-color: rgba(255, 171, 34, 0.26);
  background: rgba(255, 255, 255, 0.035);
  transform: translateX(2px);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
}

.field.has-error input,
.field.has-error select,
.field.has-error .work-select-trigger,
.field.has-error textarea {
  border-color: #ff6548;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}

.form-status {
  color: var(--muted);
  font-size: 14px;
}

.contact-card {
  padding: 30px;
}

.contact-card .btn {
  display: flex;
  width: fit-content;
  margin: 30px auto 0;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.contact-list a,
.contact-list div {
  display: grid;
  gap: 4px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.contact-list small {
  color: var(--accent);
  font-weight: 900;
  text-transform: uppercase;
}

.error-page {
  min-height: 100vh;
  background: #05070a;
}

.error-page .site-header {
  background: rgba(5, 7, 10, 0.68);
}

.error-page .brand img {
  height: 58px;
}

.error-404 {
  position: relative;
  min-height: calc(100vh - 82px);
  overflow: hidden;
  --error-x: 50%;
  --error-y: 45%;
  background:
    radial-gradient(circle at var(--error-x) var(--error-y), rgba(255, 171, 34, 0.24), transparent 17rem),
    radial-gradient(circle at 78% 18%, rgba(240, 90, 26, 0.14), transparent 25rem),
    linear-gradient(120deg, rgba(5, 7, 10, 0.95), rgba(8, 10, 14, 0.78) 46%, rgba(5, 7, 10, 0.96)),
    url("../images/hero-industrial.png") center / cover no-repeat;
}

.error-404::before,
.error-404::after,
.error-laser-grid {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.error-404::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 14%, black 86%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 14%, black 86%, transparent);
  opacity: 0.7;
  animation: errorGridDrift 8s linear infinite;
}

.error-404::after {
  background:
    linear-gradient(120deg, transparent 0 46%, rgba(255, 171, 34, 0.2) 46.12% 46.28%, transparent 46.48%),
    linear-gradient(60deg, transparent 0 62%, rgba(255, 255, 255, 0.09) 62.1% 62.22%, transparent 62.42%),
    linear-gradient(180deg, transparent, rgba(5, 7, 10, 0.82));
  opacity: 0.9;
}

.error-laser-grid {
  z-index: 1;
  background:
    repeating-linear-gradient(180deg, transparent 0 11px, rgba(255, 255, 255, 0.035) 12px),
    radial-gradient(circle at var(--error-x) var(--error-y), rgba(255, 171, 34, 0.2), transparent 14rem);
  mix-blend-mode: screen;
  opacity: 0.38;
}

.error-shell {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 40px));
  min-height: calc(100vh - 82px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.78fr);
  gap: clamp(32px, 5vw, 84px);
  align-items: center;
  padding: 68px 0;
}

.error-copy {
  max-width: 690px;
}

.error-mark {
  width: min(360px, 100%);
  margin-bottom: 34px;
  filter:
    drop-shadow(0 0 30px rgba(255, 171, 34, 0.22))
    drop-shadow(0 18px 40px rgba(0, 0, 0, 0.5));
  animation: errorLift 700ms cubic-bezier(0.19, 0.9, 0.22, 1) 100ms both;
}

.error-copy h1 {
  margin: 0;
  color: var(--white);
  text-transform: uppercase;
}

.error-copy h1 span {
  display: block;
  font-size: clamp(86px, 15vw, 210px);
  font-weight: 900;
  line-height: 0.78;
  letter-spacing: 0;
  background: linear-gradient(180deg, #ffffff 8%, var(--accent) 46%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 56px rgba(255, 171, 34, 0.18);
  filter: drop-shadow(0 24px 42px rgba(0, 0, 0, 0.46));
  animation: errorTitleIn 850ms cubic-bezier(0.19, 0.9, 0.22, 1) 260ms both;
}

.error-copy h1 strong {
  display: block;
  margin-top: 22px;
  font-size: clamp(30px, 4.4vw, 66px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0;
  animation: errorLift 760ms cubic-bezier(0.19, 0.9, 0.22, 1) 430ms both;
}

.error-copy p {
  max-width: 620px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 22px);
  animation: errorLift 760ms cubic-bezier(0.19, 0.9, 0.22, 1) 560ms both;
}

.error-contact-board {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 1px;
  max-width: 720px;
  margin-top: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
  animation: errorLift 760ms cubic-bezier(0.19, 0.9, 0.22, 1) 640ms both;
}

.error-contact-board a,
.error-contact-board div {
  display: grid;
  gap: 8px;
  min-height: 104px;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(255, 171, 34, 0.09), transparent 58%),
    rgba(5, 7, 10, 0.76);
  color: var(--white);
}

.error-contact-board .error-phone-link {
  grid-row: span 2;
  min-height: 209px;
  align-content: center;
}

.error-contact-board span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.error-contact-board strong {
  color: var(--white);
  font-size: clamp(17px, 2vw, 24px);
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.error-contact-board .error-phone-link strong {
  font-size: clamp(28px, 4.1vw, 54px);
  letter-spacing: 0;
}

.error-contact-board a {
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.error-contact-board a:hover,
.error-contact-board a:focus-visible {
  background:
    linear-gradient(135deg, rgba(255, 171, 34, 0.24), rgba(240, 90, 26, 0.08)),
    rgba(12, 15, 20, 0.86);
  box-shadow: inset 0 0 0 1px rgba(255, 171, 34, 0.28);
  transform: translateY(-3px);
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
  animation: errorLift 760ms cubic-bezier(0.19, 0.9, 0.22, 1) 720ms both;
}

.error-routes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 620px;
  margin-top: 32px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.08);
  animation: errorLift 760ms cubic-bezier(0.19, 0.9, 0.22, 1) 820ms both;
}

.error-routes a {
  display: grid;
  gap: 8px;
  min-height: 88px;
  padding: 18px;
  background: rgba(5, 7, 10, 0.62);
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.error-routes a:hover,
.error-routes a:focus-visible {
  color: #121212;
  background: var(--accent);
  transform: translateY(-3px);
}

.error-routes span {
  color: var(--accent);
  font-size: 12px;
}

.error-routes a:hover span,
.error-routes a:focus-visible span {
  color: #121212;
}

.error-visual {
  position: relative;
  min-height: clamp(390px, 52vw, 620px);
  transform-style: preserve-3d;
  transition: transform 160ms ease-out;
}

.error-number {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 1;
  color: transparent;
  font-size: clamp(140px, 18vw, 280px);
  font-weight: 900;
  line-height: 0.8;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.2);
  text-shadow:
    0 0 32px rgba(255, 171, 34, 0.24),
    0 0 90px rgba(240, 90, 26, 0.16);
  transform: translate3d(-50%, -50%, -70px);
  animation: errorGlitch 3400ms steps(1) infinite;
}

.error-core {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 4;
  width: min(78vw, 430px);
  aspect-ratio: 1.96;
  transform: translate3d(-50%, -50%, 44px);
  filter:
    drop-shadow(0 0 34px rgba(255, 171, 34, 0.3))
    drop-shadow(0 26px 58px rgba(0, 0, 0, 0.58));
  animation: errorCoreFloat 2400ms ease-in-out infinite;
}

.error-core img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.error-orbit {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 2;
  width: min(48vw, 430px);
  height: min(48vw, 430px);
  min-width: 250px;
  min-height: 250px;
  border-radius: 50%;
  border: 1px solid rgba(255, 171, 34, 0.14);
  background:
    conic-gradient(from 0deg, transparent 0 22%, rgba(255, 171, 34, 0.95) 24%, rgba(240, 90, 26, 0.42) 31%, transparent 42% 100%);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 12px), black calc(100% - 11px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 12px), black calc(100% - 11px));
  transform: translate(-50%, -50%);
  animation: errorSpin 3200ms linear infinite;
}

.error-orbit-two {
  width: min(34vw, 300px);
  height: min(34vw, 300px);
  min-width: 180px;
  min-height: 180px;
  opacity: 0.62;
  animation-duration: 4600ms;
  animation-direction: reverse;
}

.error-readout {
  position: absolute;
  z-index: 5;
  display: grid;
  gap: 2px;
  min-width: 132px;
  padding: 12px 14px;
  border-left: 2px solid var(--accent);
  background: linear-gradient(90deg, rgba(255, 171, 34, 0.15), rgba(255, 255, 255, 0.035));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(14px);
  text-transform: uppercase;
  animation: errorReadout 1400ms cubic-bezier(0.19, 0.9, 0.22, 1) both;
}

.error-readout span {
  color: var(--accent);
  font-size: 10px;
  font-weight: 900;
}

.error-readout strong {
  color: var(--white);
  font-size: 13px;
  line-height: 1.05;
}

.readout-a {
  top: 16%;
  left: 2%;
}

.readout-b {
  top: 50%;
  right: 0;
  animation-delay: 160ms;
}

.readout-c {
  left: 12%;
  bottom: 14%;
  animation-delay: 320ms;
}

.error-spark {
  position: absolute;
  z-index: 3;
  width: var(--spark-size);
  height: var(--spark-size);
  border-radius: 50%;
  left: var(--spark-x);
  top: var(--spark-y);
  background: var(--accent);
  box-shadow: 0 0 22px rgba(255, 171, 34, 0.9);
  opacity: 0;
  animation: errorSpark var(--spark-speed) ease-in-out infinite;
  animation-delay: var(--spark-delay);
}

@keyframes errorGridDrift {
  to {
    background-position: 64px 64px, 64px 64px;
  }
}

@keyframes errorLift {
  from {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes errorTitleIn {
  from {
    opacity: 0;
    transform: translateX(-36px) skewX(-5deg);
    filter: blur(12px);
  }

  to {
    opacity: 1;
    transform: translateX(0) skewX(0);
    filter: blur(0);
  }
}

@keyframes errorCoreFloat {
  0%,
  100% {
    transform: translate3d(-50%, -50%, 44px) translateY(0) scale(1);
  }

  50% {
    transform: translate3d(-50%, -50%, 44px) translateY(-10px) scale(1.018);
  }
}

@keyframes errorSpin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes errorGlitch {
  0%,
  87%,
  100% {
    transform: translate3d(-50%, -50%, -70px);
    opacity: 1;
  }

  88% {
    transform: translate3d(calc(-50% + 7px), calc(-50% - 3px), -70px);
    opacity: 0.78;
  }

  90% {
    transform: translate3d(calc(-50% - 5px), calc(-50% + 2px), -70px);
    opacity: 0.92;
  }
}

@keyframes errorReadout {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }

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

@keyframes errorSpark {
  0%,
  100% {
    opacity: 0;
    transform: translate3d(0, 20px, 0) scale(0.62);
  }

  35% {
    opacity: 1;
  }

  72% {
    opacity: 0;
    transform: translate3d(18px, -36px, 0) scale(1);
  }
}

.site-footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  padding: 72px 0 28px;
  background:
    linear-gradient(135deg, rgba(255, 171, 34, 0.08), transparent 34%),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    #050608;
  background-size: auto, 48px 48px, 48px 48px, auto;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 62%, rgba(255, 171, 34, 0.16) 62.2% 62.38%, transparent 62.6%),
    radial-gradient(circle at 92% 10%, rgba(240, 90, 26, 0.16), transparent 22rem);
  pointer-events: none;
}

.footer-callout,
.footer-main,
.footer-bottom {
  position: relative;
  z-index: 1;
}

.footer-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-bottom: 46px;
  padding: 32px;
  border: 1px solid rgba(255, 171, 34, 0.28);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 171, 34, 0.12), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
}

.footer-callout h2 {
  max-width: 820px;
  margin: 8px 0 0;
  color: var(--white);
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.05;
  text-transform: uppercase;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.3fr) repeat(3, minmax(170px, 0.65fr));
  gap: 34px;
  padding: 38px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.footer-brand p {
  max-width: 430px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.footer-brand img,
.footer-grid img {
  width: auto;
  height: 70px;
  object-fit: contain;
  filter: drop-shadow(0 14px 34px rgba(0, 0, 0, 0.38));
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-column h3 {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  color: var(--muted);
  font-size: 15px;
  transition: color 160ms ease, transform 160ms ease;
}

.footer-column a:hover {
  color: var(--white);
  transform: translateX(3px);
}

.footer-contact a {
  color: var(--white);
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  color: var(--soft);
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 560ms ease var(--reveal-delay, 0ms), transform 560ms ease var(--reveal-delay, 0ms), filter 560ms ease var(--reveal-delay, 0ms);
  filter: blur(6px);
}

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

.reveal-child {
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition: opacity 520ms ease var(--child-delay, 0ms), transform 520ms ease var(--child-delay, 0ms), filter 520ms ease var(--child-delay, 0ms);
  filter: blur(5px);
}

.reveal.is-visible .reveal-child,
.reveal-child.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

  .hero-animate,
  .reveal,
  .reveal-child,
  .page-hero .crumbs,
  .page-hero h1,
  .page-hero p {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .project-card:hover .project-hover::before,
  .project-card:focus-within .project-hover::before {
    animation: none !important;
  }
}

@media (hover: none) {
  .project-info {
    opacity: 0;
  }

  .project-hover {
    inset: auto 14px 14px;
    min-height: 58%;
    opacity: 0;
    transform: translateY(22px) scale(0.97);
    pointer-events: none;
  }

  .project-card img {
    filter: saturate(0.94) contrast(1.03);
  }

  .project-card:focus-within {
    transform: none;
    border-color: var(--line);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.3);
  }

  .project-card:focus-within img {
    transform: none;
    filter: saturate(0.94) contrast(1.03);
  }

  .project-card:focus-within::after {
    opacity: 0;
    transform: translateY(12px);
  }

  .project-card:focus-within .project-hover {
    opacity: 0;
    transform: translateY(22px) scale(0.97);
  }

  .project-card.is-open {
    transform: translateY(-4px);
    border-color: rgba(255, 171, 34, 0.5);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.46);
  }

  .project-card.is-open img {
    transform: scale(1.04);
    filter: saturate(0.9) contrast(1.08) brightness(0.68);
  }

  .project-card.is-open::after {
    opacity: 1;
    transform: translateY(0);
  }

  .project-card.is-open .project-hover {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .project-card.is-open .project-hover::before {
    opacity: 1;
    animation: projectScan 1500ms ease-out both;
  }

  .project-mini-info {
    transform: none;
  }

  .project-mini-info span {
    color: var(--accent);
  }

  .project-mini-info p {
    max-height: 150px;
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .nav-shell {
    min-height: 72px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 72px 0 auto;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 20px;
    background: rgba(8, 9, 11, 0.98);
    border-bottom: 1px solid var(--line);
  }

  .nav-open .main-nav {
    display: grid;
  }

  .main-nav a {
    padding: 16px 0;
  }

  .main-nav a::after {
    bottom: 10px;
  }

  .nav-dropdown {
    display: grid;
  }

  .nav-dropdown-trigger {
    width: 100%;
  }

  .services-menu {
    position: static;
    width: 100%;
    max-height: 0;
    margin: 0;
    padding: 0 12px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.035);
    box-shadow: none;
    transition: max-height 260ms ease, opacity 180ms ease, visibility 180ms ease, margin 220ms ease, padding 220ms ease, transform 220ms ease;
  }

  .main-nav .nav-dropdown.is-open .services-menu {
    max-height: min(620px, 58vh);
    margin: 0 0 8px;
    padding: 12px;
    overflow-y: auto;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav .nav-dropdown:not(.is-open) .services-menu {
    max-height: 0;
    margin: 0;
    padding-block: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    border-color: transparent;
  }

  .services-menu-head {
    padding: 8px 10px 12px;
  }

  .services-menu a {
    padding: 12px;
  }

  .services-menu-full {
    grid-template-columns: 1fr;
  }

  .nav-cta {
    display: none;
  }

  .hero-inner,
  .section-head,
  .split,
  .scope-register,
  .about-focus-layout,
  .content-grid,
  .contact-layout,
  .error-shell,
  .projects-grid,
  .project-detail-hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding-top: 64px;
  }

  .hero-panel {
    align-self: auto;
    margin-bottom: 0;
  }

  .scope-register-copy {
    position: static;
  }

  .service-grid,
  .value-grid,
  .client-strip,
  .project-gallery-grid,
  .project-photo-grid,
  .process-grid,
  .about-principle-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-focus-title {
    min-height: auto;
  }

  .about-focus-copy {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .about-principle:last-child {
    grid-column: 1 / -1;
  }

  .project-detail-cover,
  .project-detail-cover img {
    min-height: 440px;
  }

  .footer-callout,
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-callout {
    align-items: start;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .error-shell {
    gap: 24px;
    padding: 52px 0 64px;
  }

  .error-copy {
    max-width: none;
  }

  .error-mark {
    width: min(320px, 82vw);
  }

  .error-contact-board {
    max-width: none;
  }

  .error-visual {
    min-height: 420px;
  }

  .readout-a {
    left: 0;
  }

  .readout-b {
    right: 0;
  }
}

@media (max-width: 640px) {
  .nav-shell,
  .container,
  .hero-inner {
    width: min(100% - 28px, var(--max));
  }

  .page-loader {
    background:
      radial-gradient(circle at 50% 46%, rgba(255, 171, 34, 0.18), transparent 12rem),
      radial-gradient(circle at 52% 62%, rgba(240, 90, 26, 0.14), transparent 16rem),
      linear-gradient(135deg, #06070a 0%, #10141b 48%, #06070a 100%);
  }

  .page-loader::after {
    width: min(72vw, 300px);
    filter: blur(22px);
    transform: translateY(20px);
  }

  .loader-orbit {
    width: min(78vw, 330px);
  }

  .loader-logo-wrap {
    width: min(72vw, 300px);
    filter:
      drop-shadow(0 18px 34px rgba(0, 0, 0, 0.48))
      drop-shadow(0 0 24px rgba(255, 171, 34, 0.2));
  }

  .loader-ring {
    width: min(48vw, 190px);
    height: min(48vw, 190px);
    min-width: 150px;
    min-height: 150px;
  }

  .loader-ring-two {
    width: min(35vw, 138px);
    height: min(35vw, 138px);
    min-width: 108px;
    min-height: 108px;
  }

  .brand img {
    height: 46px;
  }

  .section {
    padding: 68px 0;
  }

  .page-hero,
  .section-head,
  .split-copy,
  .rich-panel,
  .contact-card,
  .value-card,
  .service-card,
  .process-step,
  .scope-item,
  .project-detail-copy {
    min-width: 0;
  }

  .page-hero h1,
  .page-hero p,
  .section-head h2,
  .section-head p,
  .split-copy h2,
  .split-copy p,
  .rich-panel h2,
  .rich-panel h3,
  .rich-panel p,
  .rich-panel li,
  .contact-card h3,
  .contact-card p,
  .contact-card a,
  .contact-card span,
  .value-card h3,
  .value-card p,
  .service-card h3,
  .service-card p,
  .process-step h3,
  .process-step p,
  .scope-item h3,
  .scope-item p,
  .project-detail-copy h1,
  .project-detail-copy p,
  .project-detail-copy a {
    overflow-wrap: anywhere;
  }

  .contact-layout > .split-copy {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .contact-layout > .split-copy p {
    max-width: 32rem;
    margin-inline: auto;
  }

  .contact-layout > .split-copy .btn {
    margin-inline: auto;
  }

  .about-principle-grid {
    grid-template-columns: 1fr;
  }

  .about-focus-layout {
    min-width: 0;
  }

  .about-focus-layout::before {
    inset: 18px auto 18px 18px;
  }

  .about-focus-title,
  .about-focus-copy {
    min-width: 0;
    padding: 28px 22px 28px 34px;
  }

  .about-focus-title h2 {
    max-width: 100%;
    font-size: clamp(24px, 6.8vw, 30px);
  }

  .about-focus-copy p {
    font-size: 17px;
    overflow-wrap: anywhere;
  }

  .about-proof-list li {
    padding-left: 24px;
    overflow-wrap: anywhere;
  }

  .about-proof-list li::before {
    width: 12px;
  }

  .about-principle {
    min-height: auto;
    padding: 22px;
  }

  .about-principle:last-child {
    grid-column: auto;
  }

  .about-principle h3 {
    margin-top: 30px;
  }

  .hero h1 {
    font-size: clamp(28px, 8.8vw, 36px);
    line-height: 1.08;
  }

  .page-hero h1,
  .section-head h2,
  .split-copy h2,
  .scope-register-copy h2,
  .about-focus-title h2,
  .rich-panel h2 {
    font-size: clamp(24px, 6.8vw, 30px);
    line-height: 1.08;
  }

  .project-detail-copy h1 {
    font-size: clamp(28px, 8.4vw, 38px);
    line-height: 1.08;
  }

  .service-card h3,
  .project-card h3,
  .contact-card h3,
  .value-card h3,
  .scope-item h3,
  .rich-panel h3,
  .process-step h3,
  .about-principle h3 {
    font-size: clamp(18px, 5.4vw, 22px);
    line-height: 1.12;
  }

  .hero h1,
  .page-hero h1,
  .section-head h2,
  .split-copy h2,
  .scope-register-copy h2,
  .about-focus-title h2,
  .rich-panel h2,
  .project-detail-copy h1,
  .service-card h3,
  .project-card h3,
  .contact-card h3,
  .value-card h3,
  .scope-item h3,
  .rich-panel h3,
  .process-step h3,
  .about-principle h3 {
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .about-focus-title {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .hero-inner > div:first-child {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .hero-logo {
    width: 260px;
  }

  .hero p {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .error-page .brand img {
    height: 46px;
  }

  .error-shell {
    width: min(100% - 28px, var(--max));
    min-height: auto;
    padding: 46px 0 58px;
  }

  .error-mark {
    margin-bottom: 26px;
  }

  .error-copy h1 strong {
    margin-top: 16px;
  }

  .error-actions {
    display: grid;
  }

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

  .error-contact-board .error-phone-link {
    grid-row: auto;
    min-height: 132px;
  }

  .error-routes {
    grid-template-columns: 1fr;
  }

  .error-routes a {
    min-height: 68px;
  }

  .error-visual {
    min-height: 360px;
  }

  .error-core {
    width: min(86vw, 330px);
  }

  .error-readout {
    min-width: 112px;
    padding: 10px 12px;
  }

  .readout-a {
    top: 9%;
  }

  .readout-b {
    top: 58%;
  }

  .readout-c {
    left: 0;
    bottom: 8%;
  }

  .hero-panel-row,
  .form-grid,
  .service-grid,
  .value-grid,
  .client-strip,
  .project-gallery-grid,
  .project-photo-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .project-mini {
    min-height: 420px;
  }

  .project-detail-hero {
    padding: 52px 0;
  }

  .project-detail-copy h1 {
    font-size: clamp(34px, 11vw, 54px);
  }

  .project-detail-cover,
  .project-detail-cover img {
    min-height: 300px;
  }

  .project-photo,
  .project-photo img {
    min-height: 260px;
  }

  .project-lightbox {
    grid-template-columns: 52px minmax(0, 1fr) 52px;
    gap: 8px;
    padding: 16px 10px;
  }

  .project-lightbox-nav {
    width: 48px;
    height: 48px;
    font-size: 42px;
  }

  .project-lightbox-close {
    top: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
    font-size: 30px;
  }

  .service-card {
    min-height: 230px;
  }

  .work-select-menu {
    position: static;
    width: 100%;
    max-height: 0;
    margin-top: 0;
    padding: 0 8px;
    border-width: 0;
    box-shadow: none;
    opacity: 1;
    visibility: hidden;
    overflow: hidden;
    transform: none;
    transition:
      max-height 260ms ease,
      margin-top 180ms ease,
      padding 180ms ease,
      visibility 180ms ease;
  }

  .work-select.is-open .work-select-menu {
    max-height: min(420px, calc(100vh - 220px));
    margin-top: 10px;
    padding: 8px;
    border-width: 1px;
    visibility: visible;
    overflow-y: auto;
    transform: none;
  }

  .media-frame,
  .media-frame img {
    min-height: 340px;
  }

  .footer-callout,
  .footer-main,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-callout {
    padding: 24px;
  }

  .footer-main,
  .footer-brand,
  .footer-column,
  .footer-contact,
  .footer-bottom {
    justify-items: center;
    text-align: center;
  }

  .footer-brand img {
    margin: 0 auto;
  }

  .footer-brand p {
    max-width: 32rem;
    margin-inline: auto;
  }

  .footer-column a,
  .footer-column span,
  .footer-contact a {
    overflow-wrap: anywhere;
  }

  .footer-bottom {
    align-items: center;
    flex-direction: column;
  }
}
