:root {
  --bg: #f4f2ee;
  --paper: #fbfaf7;
  --graphite: #101214;
  --graphite-2: #191d20;
  --steel: #4d565d;
  --muted: #6d747a;
  --line: #d7d1c8;
  --line-dark: #34393d;
  --accent: #e65f1b;
  --accent-dark: #b94613;
  --white: #ffffff;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--graphite);
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 76px;
  padding: 0 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  background: rgba(16, 18, 20, .96);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .08em;
}

.logo span span,
.eyebrow {
  color: var(--accent);
}

.logo-mark {
  width: 34px;
  height: 18px;
  display: inline-block;
  border-left: 6px solid var(--accent);
  border-top: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-nav a:hover,
.footer-links a:hover {
  color: var(--accent);
}

.header-actions,
.language-switch {
  display: flex;
  align-items: center;
}

.header-actions {
  gap: 20px;
}

.language-switch {
  gap: 7px;
  color: rgba(255, 255, 255, .7);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
}

.language-switch span {
  color: rgba(255, 255, 255, .28);
}

.nav-toggle {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent);
  border-radius: 2px;
  background: var(--accent);
  color: var(--white);
  padding: 13px 22px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.button:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.button:active {
  transform: translateY(1px);
}

.button:disabled {
  cursor: not-allowed;
  opacity: .45;
}

.button-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .35);
}

.button-ghost:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--graphite);
}

.button-small {
  min-height: 40px;
  padding: 10px 16px;
  font-size: 12px;
}

.hero {
  position: relative;
  min-height: 640px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--graphite);
  color: var(--white);
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}

.hero-shade {
  background: rgba(10, 12, 14, .58);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 96px 24px 146px;
}

.hero-content h1 {
  max-width: 880px;
  margin: 14px 0 26px;
  font-size: clamp(44px, 6.8vw, 88px);
  line-height: .96;
  font-weight: 800;
  letter-spacing: 0;
}

.lead {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(18px, 2vw, 22px);
}

.actions,
.chat-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-spec {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 0;
  width: min(calc(100% - 48px), var(--max));
  transform: translateX(-50%);
  background: var(--paper);
  color: var(--graphite);
  border-top: 4px solid var(--accent);
}

.hero-spec dl {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.hero-spec div {
  min-height: 92px;
  padding: 20px 24px;
  border-right: 1px solid var(--line);
}

.hero-spec div:last-child {
  border-right: 0;
}

.hero-spec dt {
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
}

.hero-spec dd {
  margin: 0;
  font-weight: 800;
}

.section,
.page-head {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 108px 24px;
}

.page-head {
  min-height: 420px;
  display: grid;
  align-content: center;
}

.section-head {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-head p:not(.eyebrow),
.card p,
.service-item p,
.process-list p,
.project-card p,
.page-head p,
.check-list,
.status {
  color: var(--muted);
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
}

h1 {
  font-size: clamp(44px, 7vw, 80px);
  font-weight: 800;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 800;
  letter-spacing: 0;
}

h3 {
  font-size: 22px;
  font-weight: 800;
}

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

.service-item {
  display: grid;
  grid-template-columns: 72px minmax(220px, .7fr) 1fr;
  gap: 28px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.service-item span,
.process-list span,
.project-card span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.service-item p {
  margin: 0;
  max-width: 620px;
}

.dark-section {
  width: 100%;
  max-width: none;
  padding: 108px max(24px, calc((100vw - var(--max)) / 2 + 24px));
  background: var(--graphite);
  color: var(--white);
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.advantages-grid {
  background: var(--line-dark);
  border-color: var(--line-dark);
}

.card {
  min-height: 230px;
  padding: 30px;
  background: var(--paper);
}

.dark-section .card {
  background: var(--graphite-2);
}

.card h3,
.card h2 {
  margin-bottom: 18px;
}

.card p {
  margin: 0;
}

.process-section {
  padding-bottom: 80px;
}

.process-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 2px solid var(--graphite);
}

.process-list li {
  position: relative;
  padding: 28px 22px 0 0;
}

.process-list li::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--accent);
}

.process-list h3 {
  margin: 16px 0 14px;
}

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

.project-card {
  position: relative;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  border: 1px solid var(--line);
  background-color: #ded9d0;
  overflow: hidden;
}

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

.project-card::before {
  inset: 24px;
  border-top: 1px solid rgba(16, 18, 20, .16);
  border-right: 1px solid rgba(16, 18, 20, .16);
}

.project-card::after {
  top: 24px;
  right: 24px;
  width: 82px;
  height: 82px;
  border-left: 1px solid rgba(16, 18, 20, .16);
  border-bottom: 1px solid rgba(16, 18, 20, .16);
}

.project-card h3 {
  margin: 18px 0 12px;
}

.consultant {
  width: 100%;
  max-width: none;
  padding: 108px max(24px, calc((100vw - var(--max)) / 2 + 24px));
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(420px, 1fr);
  gap: 60px;
  align-items: start;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.consultant p {
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
}

.check-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.check-list li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.chat {
  padding: 24px;
  background: var(--graphite);
  color: var(--white);
  border: 1px solid var(--line-dark);
}

.chat-messages {
  min-height: 310px;
  max-height: 460px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
  padding-right: 4px;
}

.message {
  max-width: 86%;
  padding: 12px 14px;
  white-space: pre-wrap;
  border-radius: 2px;
  font-size: 15px;
}

.message.assistant {
  align-self: flex-start;
  background: #262b30;
  color: rgba(255, 255, 255, .88);
  border-left: 3px solid var(--accent);
}

.message.user {
  align-self: flex-end;
  background: var(--accent);
  color: var(--white);
}

textarea {
  width: 100%;
  min-height: 104px;
  resize: vertical;
  background: #0b0d0f;
  border: 1px solid var(--line-dark);
  border-radius: 2px;
  color: var(--white);
  padding: 14px;
  font: inherit;
}

textarea:focus,
.button:focus-visible,
.nav-toggle:focus-visible,
a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.chat .button-ghost {
  color: var(--white);
  border-color: var(--line-dark);
}

.contact-panel form {
  display: grid;
  gap: 18px;
}

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

.contact-fields label:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.contact-panel label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
  font-weight: 700;
}

.contact-panel input[type="text"],
.contact-panel input[type="tel"],
.contact-panel input[type="email"] {
  width: 100%;
  min-width: 0;
  padding: 13px 14px;
  border: 1px solid var(--line-dark);
  border-radius: 2px;
  background: #0b0d0f;
  color: var(--white);
  font: inherit;
}

.contact-panel input:focus,
.contact-panel textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.contact-panel .file-field {
  position: relative;
  min-height: 132px;
  padding: 22px;
  place-content: center;
  text-align: center;
  border: 1px dashed rgba(234, 91, 12, .72);
  background: rgba(234, 91, 12, .06);
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
}

.contact-panel .file-field:hover {
  border-color: var(--accent);
  background: rgba(234, 91, 12, .11);
}

.file-field input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.file-field:focus-within {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.file-title {
  color: var(--white);
  font-size: 16px;
}

.file-field small {
  white-space: pre-line;
  color: rgba(255, 255, 255, .58);
  font-size: 12px;
  font-weight: 400;
}

.file-list {
  margin-top: -8px;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
}

.file-list:empty {
  display: none;
}

.file-list span {
  font-weight: 700;
}

.file-list ul {
  margin: 6px 0 0;
  padding-left: 18px;
}

.contact-panel .consent-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400;
  cursor: pointer;
}

.consent-field input {
  flex: 0 0 auto;
  margin-top: 3px;
  accent-color: var(--accent);
}

.contact-panel .button {
  width: auto;
  justify-self: start;
  padding: 13px 22px;
}

.contact-panel .button:disabled {
  cursor: wait;
  opacity: .72;
}

.contact-panel .cf-turnstile {
  margin: 2px 0;
}

.contact-success {
  padding: 20px 0;
}

.contact-success h3 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: clamp(26px, 3vw, 38px);
}

.contact-success p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, .82);
}

.submit-progress {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.submit-progress[hidden] {
  display: none;
}

.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, .4);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: contact-spin .7s linear infinite;
}

.contact-panel .status {
  white-space: pre-line;
}

.contact-panel .status.success {
  color: #b7ddb8;
}

.contact-panel .status.error {
  color: #ffb4ae;
}

@keyframes contact-spin {
  to { transform: rotate(360deg); }
}

.status {
  min-height: 24px;
  margin: 14px 0 0;
  font-size: 14px;
}

.cta-section {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto 96px;
  padding: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--graphite);
  color: var(--white);
  border-left: 5px solid var(--accent);
}

.cta-section h2 {
  font-size: clamp(30px, 4vw, 48px);
}

.site-footer {
  padding: 48px max(24px, calc((100vw - var(--max)) / 2 + 24px));
  display: flex;
  justify-content: space-between;
  gap: 48px;
  background: var(--graphite);
  color: rgba(255, 255, 255, .68);
  border-top: 1px solid var(--line-dark);
}

.site-footer p {
  max-width: 420px;
  margin: 18px 0 0;
}

.footer-logo {
  color: var(--white);
}

.footer-links {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.legal {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    justify-content: space-between;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .nav-toggle {
    grid-column: 3;
    grid-row: 1;
  }

  .nav-toggle {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 2px;
    background: transparent;
    color: var(--white);
    padding: 9px 12px;
    font: inherit;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .site-nav {
    position: fixed;
    inset: 76px 0 auto 0;
    display: none;
    padding: 24px 32px 30px;
    background: var(--graphite);
    border-bottom: 1px solid var(--line-dark);
    flex-direction: column;
    align-items: flex-start;
  }

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

  .header-cta {
    display: none;
  }

  .hero-spec dl,
  .grid,
  .project-grid,
  .consultant {
    grid-template-columns: 1fr;
  }

  .hero-spec div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-spec div:last-child {
    border-bottom: 0;
  }

  .service-item {
    grid-template-columns: 48px 1fr;
  }

  .service-item p {
    grid-column: 2;
  }

  .process-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 0;
  }

  .site-footer,
  .cta-section {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    justify-items: start;
  }
}

@media (max-width: 560px) {
  .contact-fields {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 68px;
    padding: 0 18px;
  }

  .logo {
    font-size: 16px;
  }

  .header-actions {
    gap: 10px;
  }

  .site-nav {
    top: 68px;
    padding: 22px 18px 28px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-media img {
    object-position: 70% center;
  }

  .hero-content {
    padding: 72px 18px 286px;
  }

  .hero-content h1 {
    font-size: clamp(40px, 13vw, 56px);
  }

  .hero-spec {
    width: calc(100% - 28px);
  }

  .hero-spec div {
    min-height: auto;
    padding: 16px;
  }

  .section,
  .page-head,
  .dark-section,
  .consultant {
    padding: 72px 18px;
  }

  .service-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-item p {
    grid-column: auto;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .card,
  .chat,
  .project-card,
  .cta-section {
    padding: 22px;
  }

  .chat-actions .button {
    width: 100%;
  }

  .cta-section {
    width: calc(100% - 36px);
    margin-bottom: 64px;
  }
}

/* Industrial editorial refinement */
:root {
  --bg: #dcdedb;
  --paper: #ebece8;
  --graphite: #111517;
  --graphite-2: #181e21;
  --steel: #505b60;
  --muted: #596268;
  --line: #bfc3bf;
  --line-dark: #323a3e;
  --accent: #d75125;
  --accent-dark: #a83a19;
  --max: 1320px;
}

body {
  background-color: var(--bg);
  background-image: linear-gradient(90deg, rgba(16, 21, 23, .035) 1px, transparent 1px);
  background-size: max(25vw, 320px) 100%;
  font-family: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--accent); color: #fff; }

.site-header {
  min-height: 88px;
  padding: 0 clamp(24px, 4vw, 72px);
  background: rgba(13, 17, 19, .97);
  border-bottom-color: rgba(255,255,255,.1);
  backdrop-filter: blur(14px);
}

.logo { gap: 15px; letter-spacing: .13em; }
.logo-mark {
  width: 39px;
  height: 25px;
  border-left-width: 7px;
  border-top-width: 2px;
  border-bottom-width: 2px;
  transform: skewX(-9deg);
}
.logo-type { display: grid; line-height: 1; }
.logo-type small {
  margin-top: 6px;
  color: rgba(255,255,255,.42);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.site-nav { gap: clamp(22px, 3vw, 46px); font-size: 11px; letter-spacing: .16em; }
.site-nav a { position: relative; padding: 35px 0 32px; }
.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.site-nav a:hover::after { transform: scaleX(1); }

.button {
  min-height: 52px;
  border-radius: 0;
  padding: 15px 25px;
  font-size: 11px;
  letter-spacing: .15em;
  box-shadow: none;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 42px; padding: 11px 18px; }

.hero {
  min-height: min(840px, calc(100vh - 20px));
  border-bottom: 1px solid #000;
}
.hero-media img { object-position: 58% center; filter: saturate(.62) contrast(1.12) brightness(.72); }
.hero-shade {
  background:
    linear-gradient(90deg, rgba(7,10,11,.94) 0%, rgba(7,10,11,.7) 48%, rgba(7,10,11,.24) 82%),
    linear-gradient(0deg, rgba(7,10,11,.72) 0%, transparent 45%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent calc(25% - 1px), rgba(255,255,255,.06) 25%, transparent calc(25% + 1px), transparent calc(75% - 1px), rgba(255,255,255,.06) 75%, transparent calc(75% + 1px));
}
.hero-content {
  min-height: min(840px, calc(100vh - 20px));
  padding: 130px 24px 174px;
}
.hero-content h1 {
  max-width: 1030px;
  min-height: 2.79em;
  margin: 18px 0 30px;
  font-size: clamp(50px, 6.4vw, 98px);
  line-height: .93;
  font-weight: 900;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.lead { max-width: 770px; font-size: clamp(17px, 1.55vw, 21px); line-height: 1.55; }
.hero .lead { min-height: 4.65em; }
.hero-note {
  margin: 30px 0 0;
  color: rgba(255,255,255,.48);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero-spec { border-top-width: 3px; background: rgba(229,231,227,.97); }
.hero-spec div { min-height: 104px; padding: 24px 30px; }
.hero-spec dt { font-size: 10px; letter-spacing: .18em; }
.hero-spec dd { font-size: 14px; letter-spacing: .02em; }

.section, .page-head { padding: 138px 24px; }
.section-head { max-width: 900px; margin-bottom: 66px; }
.section-head > p:not(.eyebrow) { max-width: 690px; font-size: 18px; line-height: 1.6; }
.eyebrow { margin-bottom: 20px; font-size: 10px; letter-spacing: .25em; }
.eyebrow::before { content: ""; display: inline-block; width: 34px; height: 1px; margin: 0 12px 3px 0; background: currentColor; }

h1, h2, h3 { font-stretch: condensed; text-wrap: balance; }
h1, h2 { font-weight: 900; letter-spacing: -.035em; }
h2 { font-size: clamp(38px, 4.4vw, 64px); line-height: .98; }
h3 { font-size: 21px; letter-spacing: -.015em; }

.service-list { border-top-color: #8f9693; }
.service-item {
  grid-template-columns: 84px minmax(250px,.8fr) 1fr 20px;
  gap: 32px;
  padding: 38px 0;
  transition: padding .25s ease, background .25s ease;
}
.service-item::after { content: "↗"; color: #969c99; font-size: 18px; }
.service-item:hover { padding-left: 18px; padding-right: 18px; background: rgba(255,255,255,.3); }
.service-item h3 { font-size: clamp(23px, 2vw, 30px); }
.service-item p { font-size: 16px; }

.dark-section {
  padding-top: 138px;
  padding-bottom: 138px;
  background-color: var(--graphite);
  background-image: linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px), radial-gradient(circle at 85% 0, #263035 0, transparent 34%);
  background-size: max(25vw,320px) 100%, 100% 100%;
}
.advantages-grid { border-color: #3a4246; background: #3a4246; }
.card { min-height: 260px; padding: 38px; }
.dark-section .card { position: relative; background: rgba(24,30,33,.82); }
.dark-section .card::before { content: "+"; position: absolute; top: 30px; right: 32px; color: var(--accent); font-size: 20px; font-weight: 300; }
.dark-section .card h3 { max-width: 75%; font-size: 25px; }
.dark-section .card p { max-width: 480px; color: #9ca4a7; }

.process-section { padding-bottom: 120px; }
.process-list { border-top: 1px solid #7f8784; }
.process-list li { min-height: 230px; padding: 34px 34px 0 0; border-right: 1px solid var(--line); }
.process-list li:not(:first-child) { padding-left: 24px; }
.process-list li::before { top: -4px; width: 7px; height: 7px; }
.process-list span { font-size: 10px; }
.process-list h3 { margin-top: 28px; font-size: 24px; }

.projects-section { width: 100%; max-width: none; padding-left: max(24px,calc((100vw - var(--max))/2 + 24px)); padding-right: max(24px,calc((100vw - var(--max))/2 + 24px)); background: #cfd2ce; }
.project-grid { gap: 1px; background: #737b7d; border: 1px solid #737b7d; }
.project-card {
  min-height: 470px;
  padding: 34px;
  color: white;
  border: 0;
  background-image: linear-gradient(0deg, rgba(8,12,13,.94) 0%, rgba(8,12,13,.22) 75%), url("../img/industrial-hero.png");
  background-size: cover;
  transition: background-size .5s ease;
}
.project-card--warehouse { background-position: 28% center; }
.project-card--factory { background-position: 58% center; }
.project-card--park { background-position: 88% center; }
.project-card::before { inset: 18px; border-color: rgba(255,255,255,.24); }
.project-card::after { display: none; }
.project-card span { color: #f07850; }
.project-card h3 { position: relative; margin-top: 18px; font-size: 29px; }
.project-card p { position: relative; max-width: 330px; color: rgba(255,255,255,.67); }

.consultant { padding-top: 138px; padding-bottom: 138px; gap: clamp(50px,8vw,120px); background: #e7e8e4; }
.consultant > div:first-child { position: sticky; top: 130px; }
.consultant p { font-size: 17px; }
.check-list li { position: relative; padding: 15px 0 15px 25px; font-size: 14px; }
.check-list li::before { content: "/"; position: absolute; left: 0; color: var(--accent); font-weight: 900; }
.chat { padding: 30px; border-top: 4px solid var(--accent); box-shadow: 0 28px 70px rgba(8,12,13,.18); }
.chat::before { content: "ENGINEERING INTAKE / 01"; display: block; margin-bottom: 24px; color: #687377; font-size: 9px; font-weight: 900; letter-spacing: .22em; }
.chat-messages { min-height: 330px; }
.message { border-radius: 0; }
textarea { border-radius: 0; }

.cta-section { margin-top: 30px; margin-bottom: 110px; padding: 56px; border-left: 0; border-top: 4px solid var(--accent); background: #151a1c; }
.site-footer { display: grid; grid-template-columns: 1fr auto auto; padding-top: 64px; padding-bottom: 64px; }
.footer-links { font-size: 13px; }
.footer-meta { margin: 0 !important; color: #697277; font-size: 10px; line-height: 1.9; letter-spacing: .12em; text-align: right; text-transform: uppercase; }

.page-head { width: 100%; max-width: none; min-height: 560px; padding-left: max(24px,calc((100vw - var(--max))/2 + 24px)); padding-right: max(24px,calc((100vw - var(--max))/2 + 24px)); background: var(--graphite); color: white; }
.page-head h1 { max-width: 1000px; }
.page-head .lead, .page-head > p:not(.eyebrow) { max-width: 760px; color: #a7adaf; }
.page-head .button { width: fit-content; margin-top: 30px; }
.page-head.legal { max-width: none; }

@media (max-width: 980px) {
  .site-header { min-height: 76px; }
  .site-nav { inset: 76px 0 auto; }
  .site-nav a { padding: 8px 0; }
  .service-item { grid-template-columns: 54px 1fr 20px; }
  .service-item p { grid-column: 2; }
  .consultant > div:first-child { position: static; }
  .project-card { min-height: 400px; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .footer-meta { grid-column: 1 / -1; margin-top: 24px !important; text-align: left; }
}

@media (max-width: 640px) {
  body { background-size: 100% 100%; }
  .site-header { min-height: 68px; }
  .logo-type small { display: none; }
  .hero { min-height: 760px; }
  .hero-content { min-height: 760px; padding: 80px 18px 286px; }
  .hero-content h1 { min-height: 4.8em; font-size: clamp(40px,12vw,54px); line-height: .96; }
  .hero .lead { min-height: 9.3em; font-size: 16px; }
  .hero .actions { min-height: 116px; }
  .hero-note { display: none; }
  .hero-spec div { padding: 14px 17px; }
  .section, .page-head, .dark-section, .consultant { padding-top: 84px; padding-bottom: 84px; }
  .section-head { margin-bottom: 44px; }
  .service-item { grid-template-columns: 34px 1fr; gap: 10px 14px; padding: 25px 0; }
  .service-item::after { display: none; }
  .service-item p { grid-column: 2; }
  .service-item:hover { padding-left: 0; padding-right: 0; }
  .process-list li { min-height: auto; padding: 25px 0 30px !important; border-right: 0; border-bottom: 1px solid var(--line); }
  .process-list h3 { margin-top: 16px; }
  .project-card { min-height: 360px; padding: 26px; }
  .project-card h3 { font-size: 26px; }
  .chat { padding: 20px; }
  .cta-section { padding: 28px; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-links { justify-items: start; }
  .footer-meta { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
