:root {
  --ink: #201d1e;
  --ink-soft: #343133;
  --gray: #777779;
  --gray-2: #9c9d9f;
  --line: #d4d4d4;
  --paper: #f7f7f6;
  --white: #ffffff;
  --shell: min(1380px, calc(100vw - 96px));
  --header: 88px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.52;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
address { font-style: normal; }
.shell { width: var(--shell); margin-inline: auto; }
.sr-only,
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link,
.screen-reader-text:focus {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 16px;
  margin: 0;
  clip: auto;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
}
.skip-link:focus,
.screen-reader-text:focus { transform: none; }

[id] { scroll-margin-top: calc(var(--header) + 18px); }
.section { position: relative; padding-block: 118px; overflow: hidden; }
.paper {
  background-color: var(--paper);
  background-image: linear-gradient(rgba(255,255,255,.80), rgba(255,255,255,.80)), url("../images/hero-bg.webp");
  background-position: center;
  background-size: cover;
}
h1, h2, h3, h4, p { overflow-wrap: anywhere; }
h2 {
  margin: 0;
  font-size: clamp(44px, 4.9vw, 78px);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -.055em;
}
.section-number {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 25px !important;
  color: #6e6e70 !important;
  font-size: 12px !important;
  font-weight: 850;
  line-height: 1.2 !important;
  letter-spacing: .16em;
}
.section-number::before { content: ""; width: 38px; height: 3px; background: currentColor; }
.section-number-light { color: #bababc !important; }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(32,29,30,.12);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  transition: box-shadow .25s ease, background .25s ease;
}
.admin-bar .site-header { top: 32px; }
.site-header.is-scrolled { background: rgba(255,255,255,.98); box-shadow: 0 14px 34px rgba(26,24,25,.08); }
.header-inner { min-height: var(--header); display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img,
.brand-custom-logo img { width: auto; height: 64px; object-fit: contain; }
.brand-custom-logo .custom-logo-link { display: block; }
.main-nav { display: flex; align-items: center; gap: 22px; }
.main-nav .menu { display: flex; align-items: center; gap: 22px; margin: 0; padding: 0; list-style: none; }
.main-nav > a,
.main-nav .menu > li > a {
  position: relative;
  display: block;
  padding-block: 32px;
  color: #3e3b3c;
  font-size: 13px;
  font-weight: 740;
}
.main-nav > a:not(.nav-cta)::after,
.main-nav .menu > li:not(:last-child) > a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 24px;
  left: 0;
  height: 2px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s var(--ease);
}
.main-nav > a:hover::after,
.main-nav > a:focus-visible::after,
.main-nav .menu > li > a:hover::after,
.main-nav .menu > li > a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav-cta,
.main-nav .menu > li:last-child > a {
  padding: 11px 17px !important;
  color: var(--white) !important;
  background: var(--ink);
  transition: transform .2s var(--ease), background .2s ease;
}
.nav-cta:hover,
.nav-cta:focus-visible,
.main-nav .menu > li:last-child > a:hover,
.main-nav .menu > li:last-child > a:focus-visible { background: #595657; transform: translateY(-2px); }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 10px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle > span:not(.sr-only):not(.screen-reader-text) { display: block; width: 25px; height: 2px; margin: 5px 0; background: currentColor; transition: transform .2s ease, opacity .2s ease; }

.hero { position: relative; min-height: 790px; padding-top: var(--header); overflow: hidden; background: #f7f7f6; }
.hero-texture {
  position: absolute;
  inset: var(--header) 0 0;
  background-image: linear-gradient(90deg, rgba(255,255,255,.04), rgba(255,255,255,.03)), url("../images/hero-bg.webp");
  background-position: center;
  background-size: cover;
  opacity: .94;
}
.hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  right: -4%;
  bottom: 42px;
  width: 66%;
  height: 55%;
  background: url("../images/processo-industrial.webp") right bottom / contain no-repeat;
  opacity: .10;
  mix-blend-mode: multiply;
}
.hero-inner { position: relative; z-index: 2; min-height: calc(790px - var(--header)); display: grid; place-items: center; }
.hero-copy { width: min(850px, 78%); padding: 70px 0 95px; }
.hero-copy p { margin: 0; color: #6e6e70; font-size: clamp(27px, 3.2vw, 48px); font-weight: 850; line-height: 1.08; letter-spacing: -.035em; }
.hero-copy h1,
.hero-copy strong { display: block; margin: 9px 0; color: #201d1e; font-size: clamp(54px, 7.2vw, 108px); font-weight: 950; line-height: .92; letter-spacing: -.065em; }
.hero-copy strong { margin-top: 14px; }
.hero-rule { position: absolute; z-index: 3; right: 4vw; bottom: 0; left: 4vw; height: 22px; display: grid; grid-template-columns: 1fr repeat(4, 9px); gap: 48px; align-items: end; border-bottom: 5px solid var(--ink); }
.hero-rule span { height: 1px; }
.hero-rule i { height: 14px; border-left: 1px solid rgba(32,29,30,.35); }

.overview-top { display: grid; grid-template-columns: 1.12fr .88fr; gap: 72px; align-items: center; }
.section-copy { max-width: 780px; }
.section-copy h2 { margin-bottom: 30px; }
.section-copy > p:not(.section-number) { margin: 0 0 22px; color: #4e4b4c; font-size: 17px; line-height: 1.62; }
.section-copy-wide { max-width: 1050px; }
.overview-photo { position: relative; margin: 0; }
.overview-photo::before { content: ""; position: absolute; z-index: -1; top: -18px; right: 18px; bottom: 18px; left: -18px; border: 1px solid #bababa; }
.overview-photo img { width: 100%; min-height: 390px; object-fit: cover; filter: saturate(.84) contrast(1.04); }
.service-grid { margin-top: 88px; display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { position: relative; min-height: 270px; padding: 42px 46px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-card > span { position: absolute; top: 22px; right: 30px; color: #d6d6d6; font-size: 76px; font-weight: 900; line-height: 1; letter-spacing: -.06em; }
.service-card h3 { position: relative; max-width: 430px; margin: 0 0 26px; padding-top: 58px; font-size: 28px; font-weight: 900; line-height: 1.1; letter-spacing: -.035em; }
.service-card h3::after { content: ""; display: block; width: 36px; height: 3px; margin-top: 16px; background: var(--ink); }
.service-card p { position: relative; max-width: 520px; margin: 0; color: #595657; }

.automation,
.process,
.field { color: var(--white); background: var(--ink); }
.feature-heading { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 80px; align-items: end; }
.feature-heading > p { max-width: 590px; margin: 0 0 5px; color: #bbb9ba; font-size: 18px; line-height: 1.65; }
.feature-heading.dark > p { color: #565354; }
.automation-layout { margin-top: 72px; display: grid; grid-template-columns: .95fr 1.05fr; gap: 72px; align-items: start; }
.automation-photo { position: sticky; top: calc(var(--header) + 32px); margin: 0; }
.automation-photo img { width: 100%; min-height: 620px; object-fit: cover; filter: saturate(.75); }
.automation-lists { display: grid; gap: 40px; }
.list-block h3,
.detail-panel h3,
.capacity-panel h3,
.scope-panel h3 { margin: 0 0 21px; padding-bottom: 15px; border-bottom: 1px solid currentColor; font-size: 25px; font-weight: 900; line-height: 1.12; letter-spacing: -.025em; }
.list-block ul,
.detail-panel ul,
.team-card ul,
.scope-panel ul { margin: 0; padding: 0; list-style: none; }
.list-block li,
.detail-panel li,
.team-card li {
  position: relative;
  padding: 8px 0 8px 23px;
  color: #d0cecf;
  font-size: 16px;
  line-height: 1.45;
}
.list-block li::before,
.detail-panel li::before,
.team-card li::before { content: ""; position: absolute; top: 20px; left: 0; width: 11px; height: 2px; background: #9e9c9d; }
.technology-strip { margin-top: 72px; display: grid; grid-template-columns: 1.6fr repeat(6, 1fr); border: 1px solid rgba(255,255,255,.25); }
.technology-strip > * { min-height: 80px; display: grid; place-items: center; padding: 14px; border-right: 1px solid rgba(255,255,255,.18); text-align: center; }
.technology-strip > *:last-child { border-right: 0; }
.technology-strip strong { font-size: 17px; }
.technology-strip span { color: #d5d3d4; }

.electrical { color: var(--ink); }
.field-ribbon { margin-top: 70px; display: grid; grid-template-columns: repeat(6, 1fr); gap: 6px; }
.field-ribbon img { width: 100%; height: 300px; object-fit: cover; filter: saturate(.78); }
.field-ribbon img:nth-child(even) { transform: translateY(16px); }
.electrical-lists { margin-top: 72px; display: grid; grid-template-columns: 1fr 1fr; gap: 90px; }
.electrical .list-block li { color: #4f4c4d; }
.delivery-strip { margin-top: 66px; display: grid; grid-template-columns: repeat(4, 1fr); background: #e6e6e5; }
.delivery-strip span { position: relative; min-height: 80px; display: flex; align-items: center; gap: 15px; padding: 18px 28px; font-weight: 850; }
.delivery-strip span::before { content: "✓"; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: var(--ink); font-size: 22px; }

.process { isolation: isolate; }
.process-drawing { position: absolute; z-index: -1; top: 0; right: -4%; width: 58%; height: 390px; background: url("../images/processo-industrial.webp") center / cover no-repeat; opacity: .09; mix-blend-mode: screen; }
.process-steps { margin: 76px 0 0; padding: 0; display: grid; grid-template-columns: repeat(6, 1fr); list-style: none; border-top: 1px solid rgba(255,255,255,.30); }
.process-steps li { min-height: 275px; padding: 27px 23px 25px; border-right: 1px solid rgba(255,255,255,.18); }
.process-steps li:last-child { border-right: 0; }
.process-steps span { color: #a5a3a4; font-size: 53px; font-weight: 300; line-height: 1; }
.process-steps h3 { min-height: 72px; margin: 24px 0 13px; font-size: 18px; font-weight: 900; line-height: 1.12; }
.process-steps p { margin: 0; color: #bdbbbc; font-size: 14px; line-height: 1.42; }
.process-details { margin-top: 70px; display: grid; grid-template-columns: .82fr 1.18fr; gap: 38px; }
.detail-panel,
.capacity-panel { padding: 38px 42px; border: 1px solid rgba(255,255,255,.22); }
.capacity-panel { color: var(--ink); background: #e5e5e4; border-color: #e5e5e4; }
.capacity-panel dl { margin: 0; }
.capacity-panel dl > div { display: grid; grid-template-columns: .9fr 1.1fr; gap: 20px; padding: 9px 0; border-bottom: 1px dotted #969496; }
.capacity-panel dl > div:last-child { border-bottom: 0; }
.capacity-panel dt,
.capacity-panel dd { margin: 0; line-height: 1.4; }
.qualification { margin-top: 34px; display: grid; grid-template-columns: 105px 1fr; border: 2px solid rgba(255,255,255,.55); }
.qualification > span { display: grid; place-items: center; font-size: 45px; background: rgba(255,255,255,.08); }
.qualification > div { padding: 26px 34px; }
.qualification h3 { margin: 0 0 6px; font-size: 21px; }
.qualification p { margin: 0; color: #c9c7c8; }

.team { color: var(--ink); }
.team-grid { margin-top: 76px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.team-card { min-width: 0; padding: 45px 38px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.team-card header { display: grid; grid-template-columns: 118px 1fr; gap: 24px; align-items: center; }
.team-card header img { width: 118px; height: 145px; object-fit: cover; object-position: top; background: #f1f1f1; filter: saturate(.82); }
.team-card h3 { margin: 0; font-size: 30px; font-weight: 950; line-height: 1; text-transform: uppercase; }
.team-card header strong { display: block; margin-top: 8px; font-size: 13px; line-height: 1.25; text-transform: uppercase; }
.team-card h4 { min-height: 58px; margin: 35px 0 17px; font-size: 19px; line-height: 1.35; }
.team-card > p { min-height: 132px; margin: 0; color: #5f5c5d; font-size: 14px; }
.team-card ul { padding-top: 24px; border-top: 2px solid var(--ink); }
.team-card li { padding-block: 4px; color: #4e4b4c; font-size: 13px; }
.team-card li::before { top: 14px; background: #c4c4c4; }

.field-layout { margin-top: 70px; display: grid; grid-template-columns: 1fr 340px; gap: 44px; }
.field-gallery { min-height: 690px; display: grid; grid-template-columns: 1.15fr repeat(3, 1fr); grid-template-rows: repeat(2, 1fr); gap: 7px; }
.field-gallery img { width: 100%; height: 100%; min-height: 0; object-fit: cover; filter: saturate(.78); }
.field-gallery .field-tall { grid-row: 1 / 3; }
.field-gallery img:nth-child(2) { grid-column: 2; grid-row: 1; }
.field-gallery img:nth-child(3) { grid-column: 3; grid-row: 1; }
.field-gallery img:nth-child(4) { grid-column: 4; grid-row: 1; }
.field-gallery img:nth-child(5) { grid-column: 2; grid-row: 2; }
.field-gallery img:nth-child(6) { grid-column: 3; grid-row: 2; }
.field-gallery img:nth-child(7) { grid-column: 4; grid-row: 2; }
.scope-panel { padding: 38px 32px; color: var(--ink); background: #e5e5e4; }
.scope-panel ul { display: grid; gap: 5px; }
.scope-panel li { min-height: 94px; display: flex; align-items: center; padding: 15px 0 15px 58px; border-bottom: 1px solid #c1c1c1; font-size: 17px; line-height: 1.25; }
.scope-panel li::before { content: ""; position: absolute; width: 34px; height: 34px; margin-left: -52px; border: 2px solid var(--ink); transform: rotate(45deg); }

.clients { color: var(--ink); }
.client-columns { margin-top: 70px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.client-columns img { width: 100%; height: 650px; object-fit: cover; border: 1px solid #dddddc; background: #f7f7f6; }

.contact { color: var(--ink); background-color: #f7f7f6; background-image: linear-gradient(rgba(255,255,255,.72), rgba(255,255,255,.72)), url("../images/hero-bg.webp"); background-size: cover; }
.contact-brand { width: min(560px, 68vw); margin: 0 auto 36px; }
.contact-brand img { width: 100%; }
.contact > .shell > h2 { max-width: 1100px; margin: 0 auto; text-align: center; }
.contact-grid { margin-top: 72px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.contact-card { padding: 34px 30px 38px; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.contact-card h3 { margin: 0 0 12px; font-size: 24px; }
.contact-card a { display: block; width: fit-content; max-width: 100%; font-size: 15px; word-break: break-word; }
.contact-card a:hover,
.contact-card a:focus-visible,
.contact-meta a:hover,
.contact-meta a:focus-visible { text-decoration: underline; }
.contact-card .contact-phone { margin-bottom: 3px; font-size: clamp(25px, 2.4vw, 38px); font-weight: 900; line-height: 1.2; letter-spacing: -.035em; }
.contact-meta { margin-top: 34px; display: grid; grid-template-columns: auto 1fr; gap: 34px; align-items: center; padding: 20px 28px; color: var(--white); background: var(--ink); }
.contact-meta a { font-size: 22px; font-weight: 850; }
.contact-meta address { font-size: 20px; font-weight: 760; text-align: right; }

.site-footer { padding-block: 38px; color: #dad8d9; background: #121011; }
.footer-inner { display: grid; grid-template-columns: 220px auto 1fr; gap: 38px; align-items: center; }
.footer-inner img { width: 210px; filter: invert(1); }
.footer-inner a { font-weight: 800; }
.footer-inner address { text-align: right; }

.reveal.is-pending { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* WordPress / Elementor */
.site-main-front { overflow: hidden; }
.site-main-front .elementor,
.site-main-front .elementor-element,
.site-main-front .elementor-widget-html,
.site-main-front .elementor-widget-html > .elementor-widget-container { width: 100%; max-width: none; }
.site-main-front .elementor-element.ia-section-wrap { --display: block; --width: 100%; --padding-top: 0; --padding-right: 0; --padding-bottom: 0; --padding-left: 0; }
.site-main-front .elementor-element.ia-section-wrap > .e-con-inner { display: block; width: 100%; max-width: none; padding: 0; }
.elementor-editor-active .reveal { opacity: 1 !important; transform: none !important; }

@media (max-width: 1160px) {
  :root { --shell: min(100% - 56px, 980px); }
  .main-nav,
  .main-nav .menu { gap: 14px; }
  .main-nav > a,
  .main-nav .menu > li > a { font-size: 12px; }
  .overview-top,
  .feature-heading,
  .automation-layout { gap: 52px; }
  .service-card { padding-inline: 34px; }
  .technology-strip { grid-template-columns: repeat(3, 1fr); }
  .technology-strip strong { grid-column: 1 / -1; }
  .technology-strip > *:nth-child(3n+1) { border-right: 0; }
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .process-steps li { border-bottom: 1px solid rgba(255,255,255,.18); }
  .process-steps li:nth-child(3n) { border-right: 0; }
  .team-card { padding-inline: 26px; }
  .team-card header { grid-template-columns: 95px 1fr; gap: 17px; }
  .team-card header img { width: 95px; height: 125px; }
}

@media (max-width: 920px) {
  :root { --header: 78px; --shell: min(100% - 42px, 760px); }
  .admin-bar .site-header { top: 46px; }
  .brand img,
  .brand-custom-logo img { height: 56px; }
  .menu-toggle { position: relative; z-index: 2; display: block; }
  .main-nav {
    position: fixed;
    top: var(--header);
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 24px max(21px, calc((100vw - 760px)/2));
    overflow-y: auto;
    background: rgba(255,255,255,.99);
  }
  .admin-bar .main-nav { top: calc(var(--header) + 46px); }
  .main-nav.is-open { display: flex; }
  .main-nav .menu { display: contents; }
  .main-nav > a,
  .main-nav .menu > li > a { padding: 15px 0 !important; color: var(--ink) !important; background: transparent !important; border-bottom: 1px solid var(--line); font-size: 19px; }
  .main-nav > a::after,
  .main-nav .menu > li > a::after { display: none; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { min-height: 690px; }
  .hero-inner { min-height: calc(690px - var(--header)); }
  .hero-copy { width: 94%; }
  .overview-top,
  .feature-heading,
  .automation-layout,
  .electrical-lists,
  .process-details,
  .field-layout { grid-template-columns: 1fr; }
  .overview-photo { width: 85%; margin-left: auto; }
  .automation-photo { position: relative; top: auto; }
  .automation-photo img { min-height: 500px; }
  .field-ribbon { grid-template-columns: repeat(3, 1fr); row-gap: 22px; }
  .field-ribbon img { height: 240px; }
  .field-ribbon img:nth-child(even) { transform: none; }
  .team-grid { grid-template-columns: 1fr; }
  .team-card > p { min-height: 0; }
  .field-layout { gap: 28px; }
  .scope-panel { width: 100%; }
  .client-columns { gap: 12px; }
  .client-columns img { height: 540px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-meta { grid-template-columns: 1fr; }
  .contact-meta address { text-align: left; }
  .footer-inner { grid-template-columns: 190px 1fr; }
  .footer-inner address { grid-column: 1 / -1; text-align: left; }
}

@media (max-width: 640px) {
  :root { --shell: calc(100vw - 30px); --header: 72px; }
  body { font-size: 16px; }
  .section { padding-block: 82px; }
  h2 { font-size: clamp(40px, 12vw, 56px); }
  .brand img,
  .brand-custom-logo img { height: 49px; }
  .main-nav { top: var(--header); padding-inline: 15px; }
  .hero { min-height: 650px; }
  .hero-inner { min-height: calc(650px - var(--header)); }
  .hero-copy { width: 100%; padding-block: 75px 100px; }
  .hero::after { right: -28%; width: 118%; height: 44%; opacity: .08; }
  .hero-copy p { font-size: clamp(24px, 8vw, 35px); }
  .hero-copy h1,
  .hero-copy strong { font-size: clamp(48px, 15vw, 69px); }
  .hero-rule { gap: 22px; }
  .overview-photo { width: 100%; }
  .overview-photo img { min-height: 270px; }
  .service-grid { margin-top: 58px; grid-template-columns: 1fr; }
  .service-card { min-height: 0; padding: 35px 26px 38px; }
  .service-card h3 { padding-top: 48px; }
  .service-card > span { font-size: 62px; }
  .feature-heading { grid-template-columns: 1fr; gap: 28px; }
  .automation-layout,
  .field-ribbon,
  .electrical-lists { margin-top: 48px; }
  .automation-photo img { min-height: 310px; }
  .technology-strip { margin-top: 52px; grid-template-columns: repeat(2, 1fr); }
  .technology-strip strong { grid-column: 1 / -1; }
  .technology-strip > * { min-height: 68px; border-bottom: 1px solid rgba(255,255,255,.18); }
  .technology-strip > *:nth-child(odd) { border-right: 0; }
  .field-ribbon { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .field-ribbon img { height: 190px; }
  .delivery-strip { grid-template-columns: 1fr 1fr; }
  .delivery-strip span { padding-inline: 17px; font-size: 14px; }
  .process-steps { margin-top: 54px; grid-template-columns: 1fr 1fr; }
  .process-steps li,
  .process-steps li:nth-child(3n) { min-height: 245px; border-right: 1px solid rgba(255,255,255,.18); }
  .process-steps li:nth-child(even) { border-right: 0; }
  .detail-panel,
  .capacity-panel { padding: 28px 23px; }
  .capacity-panel dl > div { grid-template-columns: 1fr; gap: 3px; }
  .capacity-panel dd { font-weight: 750; }
  .qualification { grid-template-columns: 1fr; }
  .qualification > span { min-height: 80px; }
  .qualification > div { padding: 25px 22px; }
  .team-grid { margin-top: 54px; }
  .team-card { padding: 34px 22px; }
  .team-card header { grid-template-columns: 100px 1fr; }
  .team-card header img { width: 100px; height: 130px; }
  .field-gallery { min-height: 820px; grid-template-columns: 1.1fr .9fr; grid-template-rows: repeat(4, 1fr); }
  .field-gallery .field-tall { grid-row: 1 / 3; }
  .field-gallery img:nth-child(2) { grid-column: 2; grid-row: 1; }
  .field-gallery img:nth-child(3) { grid-column: 2; grid-row: 2; }
  .field-gallery img:nth-child(4) { grid-column: 1; grid-row: 3; }
  .field-gallery img:nth-child(5) { grid-column: 2; grid-row: 3; }
  .field-gallery img:nth-child(6) { grid-column: 1; grid-row: 4; }
  .field-gallery img:nth-child(7) { grid-column: 2; grid-row: 4; }
  .client-columns { grid-template-columns: 1fr; }
  .client-columns img { width: min(100%, 390px); height: auto; margin-inline: auto; object-fit: contain; }
  .contact-brand { width: 90vw; }
  .contact-grid { margin-top: 52px; }
  .contact-card { padding-inline: 22px; }
  .contact-card .contact-phone { font-size: 32px; }
  .contact-meta { padding-inline: 20px; }
  .contact-meta address { font-size: 17px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-inner address { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal.is-pending { opacity: 1; transform: none; }
}
