:root {
  --green: #4d7041;
  --green-dark: #243b22;
  --green-deep: #172817;
  --green-soft: #dce8d6;
  --ink: #20231f;
  --charcoal: #2e312d;
  --muted: #626a60;
  --paper: #f4f6f1;
  --white: #ffffff;
  --copper: #b47a46;
  --line: rgba(44, 58, 41, 0.2);
  --header-height: 86px;
  --shadow: 0 28px 80px rgba(19, 31, 18, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    url("assets/vcd-blueprint-background.png") center center / 1650px auto fixed,
    var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--green-deep);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-height);
  background: rgba(244, 246, 241, 0.94);
  border-bottom: 1px solid rgba(36, 59, 34, 0.14);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(250, 251, 248, 0.98);
  box-shadow: 0 12px 34px rgba(23, 40, 23, 0.09);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(250px, auto) 1fr auto;
  gap: 32px;
  align-items: center;
  width: min(100% - 40px, 1480px);
  min-height: var(--header-height);
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  width: fit-content;
}

.brand-mark {
  display: block;
  width: 82px;
  height: 30px;
  background: url("assets/vcd-mark.png") center / contain no-repeat;
  border-radius: 3px;
}

.brand-name {
  color: var(--charcoal);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.brand-name span {
  display: block;
  margin-top: 4px;
  color: var(--green);
  font-size: 0.78rem;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  color: var(--charcoal);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

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

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

.header-action,
.button {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--green-dark);
  border-radius: 4px;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.header-action {
  color: var(--white);
  background: var(--green-dark);
}

.header-action:hover,
.button:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: calc(100vh - var(--header-height));
  max-height: 920px;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8, 13, 8, 0.9) 0%, rgba(8, 13, 8, 0.72) 40%, rgba(8, 13, 8, 0.16) 74%),
    linear-gradient(180deg, rgba(8, 13, 8, 0.04) 52%, rgba(8, 13, 8, 0.92) 100%),
    url("assets/vcd-hero-electrical.png") center right / cover no-repeat;
  background-position: center, center, right calc(50% + var(--hero-offset, 0px));
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  opacity: 0.42;
}

.hero-content {
  align-self: center;
  width: min(100% - 48px, 1400px);
  margin: 0 auto;
  padding: 72px 0 48px;
}

.eyebrow {
  display: flex;
  gap: 12px;
  align-items: center;
  width: fit-content;
  margin: 0 0 16px;
  color: var(--green);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::after {
  display: block;
  width: 54px;
  height: 2px;
  background: currentColor;
  content: "";
  opacity: 0.58;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 680ms cubic-bezier(0.22, 1, 0.36, 1) 180ms;
}

.reveal.is-visible .eyebrow::after,
.eyebrow.reveal.is-visible::after {
  transform: scaleX(1);
}

.hero-eyebrow {
  color: #d7e8cf;
}

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

h1,
h2,
h3 {
  font-family: Inter, Arial, sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 1050px;
  margin-bottom: 28px;
  color: var(--white);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 88px;
  font-weight: 600;
  line-height: 0.92;
  text-transform: uppercase;
}

h1 span {
  color: #d5e7cc;
}

h2 {
  margin-bottom: 26px;
  color: var(--green-deep);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 58px;
  font-weight: 600;
  line-height: 0.98;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 12px;
  color: var(--green-deep);
  font-size: 1.35rem;
  line-height: 1.15;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-lede {
  max-width: 690px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
  margin-top: 34px;
}

.button-light {
  color: var(--green-deep);
  background: var(--white);
  border-color: var(--white);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
}

.text-link {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  color: var(--green-deep);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .text-link,
.text-link-light {
  color: var(--white);
}

.text-link span,
.button span {
  font-size: 1.15rem;
  transition: transform 180ms ease;
}

.text-link:hover span,
.button:hover span {
  transform: translateX(4px);
}

.hero-proof {
  display: grid;
  grid-template-columns: 0.7fr 1fr 1fr;
  width: min(100% - 48px, 1400px);
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-proof > div {
  min-height: 124px;
  padding: 24px 30px 26px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-proof > div + div {
  padding-left: 30px;
}

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

.proof-value,
.proof-label {
  display: block;
}

.proof-value {
  color: var(--white);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 1.55rem;
  font-weight: 600;
  text-transform: uppercase;
}

.proof-label {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
}

.surface-section {
  background: rgba(244, 246, 241, 0.88);
  backdrop-filter: blur(5px);
}

.section-shell {
  width: min(100% - 48px, 1400px);
  margin: 0 auto;
}

.company-intro {
  padding: 112px 0;
  border-bottom: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.38fr 1fr;
  gap: 90px;
  align-items: start;
}

.heritage {
  padding-top: 12px;
  border-top: 5px solid var(--copper);
}

.heritage span {
  display: block;
  color: var(--green-dark);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 112px;
  font-weight: 600;
  line-height: 0.9;
  font-variant-numeric: tabular-nums;
}

.heritage p {
  max-width: 160px;
  margin: 14px 0 0;
  color: var(--charcoal);
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

.intro-copy h2 {
  max-width: 980px;
}

.intro-copy > p:last-child {
  max-width: 860px;
  margin-bottom: 0;
  font-size: 1.08rem;
}

.capabilities {
  padding: 118px 0 130px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 52px;
}

.section-heading h2 {
  max-width: 850px;
  margin-bottom: 0;
}

.section-heading > p {
  margin-bottom: 4px;
  font-size: 1.03rem;
}

.capability-image {
  position: relative;
  height: 560px;
  margin: 0 0 26px;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.image-reveal {
  position: relative;
  overflow: hidden;
}

.image-reveal.reveal {
  transform: translateY(10px);
  transition: opacity 780ms ease, transform 780ms cubic-bezier(0.22, 1, 0.36, 1);
}

.image-reveal.reveal.is-visible {
  transform: translateY(0);
}

.capability-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(10, 17, 10, 0.82));
  content: "";
}

.capability-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.capability-image figcaption {
  position: absolute;
  right: 30px;
  bottom: 28px;
  left: 30px;
  z-index: 1;
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 700;
}

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

.capability-row {
  position: relative;
  display: grid;
  grid-template-columns: 74px minmax(280px, 0.82fr) minmax(260px, 0.5fr);
  gap: 34px;
  align-items: start;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.capability-row::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--copper), transparent 82%);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.capability-row.is-visible::after,
.capability-row:hover::after {
  transform: scaleX(1);
}

.capability-row .row-number,
.capability-row h3 {
  transition: color 220ms ease, transform 220ms ease;
}

.capability-row:hover .row-number,
.capability-row:hover h3 {
  color: var(--green);
  transform: translateX(5px);
}

.row-number,
.market-label,
.panel-kicker,
.standard-list article > span {
  color: var(--copper);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.row-number {
  font-size: 1rem;
}

.capability-row h3 {
  font-size: 1.5rem;
}

.capability-row p {
  margin-bottom: 0;
}

.row-detail {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.approach {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 760px;
  color: var(--white);
  background: var(--green-deep);
  overflow: hidden;
}

.approach-visual {
  min-height: 760px;
}

.approach-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.approach-copy {
  align-self: start;
  max-width: 680px;
  padding: 100px 70px 320px;
}

.approach-copy h2,
.thermal-copy h2,
.contact h2 {
  color: var(--white);
}

.approach-copy p:last-child,
.thermal-copy > p,
.contact p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.04rem;
}

.eyebrow-light {
  color: #bcd4b1;
}

.process-shell {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 66%;
  min-height: 296px;
  background: var(--white);
}

.process-tabs {
  --active-index: 0;
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid var(--line);
}

.process-tabs::after {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 20%;
  height: 3px;
  background: var(--copper);
  box-shadow: 0 0 12px rgba(180, 122, 70, 0.45);
  content: "";
  transform: translateX(calc(var(--active-index) * 100%));
  transition: transform 380ms cubic-bezier(0.22, 1, 0.36, 1);
}

.process-tab {
  min-height: 66px;
  padding: 10px 12px;
  color: var(--muted);
  background: var(--paper);
  border: 0;
  border-right: 1px solid var(--line);
  cursor: pointer;
  font-size: 0.73rem;
  font-weight: 800;
  text-transform: uppercase;
}

.process-tab:last-child {
  border-right: 0;
}

.process-tab span {
  display: block;
  margin-bottom: 5px;
  color: var(--copper);
  font-family: "Barlow Condensed", Arial, sans-serif;
}

.process-tab.is-active {
  color: var(--white);
  background: var(--green);
}

.process-tab.is-active span {
  color: #e7d3be;
}

.process-panel {
  min-height: 230px;
  padding: 34px 44px;
  animation: panel-in 240ms ease both;
}

.process-panel h3 {
  max-width: 680px;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  text-transform: uppercase;
}

.process-panel p:last-child {
  max-width: 720px;
  margin-bottom: 0;
}

.panel-kicker {
  margin-bottom: 9px;
  font-size: 0.78rem;
}

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.thermography {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 680px;
  background: var(--charcoal);
}

.thermal-image {
  position: relative;
  min-height: 680px;
  overflow: hidden;
}

.thermal-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 64%, rgba(46, 49, 45, 0.7));
  content: "";
}

.thermal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scan-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 48%;
  z-index: 2;
  width: 2px;
  background: rgba(255, 244, 224, 0.78);
  box-shadow: 0 0 18px rgba(255, 211, 130, 0.7);
  animation: scan 5s ease-in-out infinite alternate;
}

@keyframes scan {
  from { transform: translateX(-90px); }
  to { transform: translateX(90px); }
}

.thermal-copy {
  align-self: center;
  max-width: 700px;
  padding: 80px 72px;
}

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

.thermal-list li {
  position: relative;
  padding: 12px 0 12px 28px;
  color: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.thermal-list li::before {
  position: absolute;
  top: 19px;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--copper);
  border-radius: 50%;
  content: "";
}

.markets {
  padding: 118px 0 132px;
}

.market-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.market {
  min-height: 390px;
  padding: 50px;
  background: rgba(255, 255, 255, 0.84);
  border-top: 6px solid var(--green);
  box-shadow: 0 18px 60px rgba(23, 40, 23, 0.1);
}

.market-dark {
  background: var(--green-dark);
  border-top-color: var(--copper);
}

.market-label {
  display: block;
  margin-bottom: 72px;
}

.market h3 {
  max-width: 540px;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 2.45rem;
  font-weight: 600;
  text-transform: uppercase;
}

.market p {
  max-width: 580px;
  margin-bottom: 0;
}

.market-dark h3 {
  color: var(--white);
}

.market-dark p {
  color: rgba(255, 255, 255, 0.68);
}

.standards {
  padding: 108px 0 120px;
  border-top: 1px solid var(--line);
}

.standards-grid {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 90px;
}

.standards-heading {
  position: sticky;
  top: 130px;
  align-self: start;
}

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

.standard-list article {
  display: grid;
  grid-template-columns: 64px 0.44fr 1fr;
  gap: 24px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.standard-list h3,
.standard-list p {
  margin-bottom: 0;
}

.contact {
  padding: 122px 24px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(17, 31, 17, 0.96), rgba(36, 59, 34, 0.86)),
    url("assets/vcd-blueprint-background.png") center / cover;
}

.contact-inner {
  width: min(100%, 1160px);
  margin: 0 auto;
  text-align: center;
}

.contact .eyebrow {
  margin-right: auto;
  margin-left: auto;
}

.contact h2 {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
  font-size: 72px;
}

.contact p {
  max-width: 720px;
  margin: 0 auto 34px;
}

.site-footer {
  display: grid;
  grid-template-columns: 170px 1fr auto;
  gap: 44px;
  align-items: center;
  padding: 42px max(24px, calc((100vw - 1400px) / 2));
  background: var(--white);
  border-top: 1px solid var(--line);
}

.footer-brand img {
  width: 150px;
}

.footer-copy p {
  max-width: 640px;
  margin-bottom: 12px;
}

.footer-copy span,
.footer-links {
  color: var(--muted);
  font-size: 0.75rem;
}

.footer-links {
  display: grid;
  gap: 12px;
  justify-items: end;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

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

:focus-visible {
  outline: 3px solid #d39a65;
  outline-offset: 4px;
}

@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: minmax(220px, auto) 1fr auto;
    gap: 20px;
  }

  .brand-name {
    display: none;
  }

  .main-nav {
    gap: 20px;
  }

  h1 {
    font-size: 72px;
  }

  h2 {
    font-size: 50px;
  }

  .approach-copy {
    padding-right: 48px;
    padding-left: 48px;
  }

  .process-shell {
    width: 72%;
  }

  .thermal-copy {
    padding-right: 48px;
    padding-left: 48px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 76px;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    width: min(100% - 32px, 1400px);
  }

  .brand-name {
    display: inline;
  }

  .menu-toggle {
    position: relative;
    z-index: 52;
    display: grid;
    gap: 7px;
    place-content: center;
    width: 46px;
    height: 46px;
    padding: 0;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 4px;
  }

  .menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--green-dark);
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: none;
    gap: 0;
    justify-content: stretch;
    padding: 26px 24px 34px;
    background: rgba(244, 246, 241, 0.99);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 60px rgba(23, 40, 23, 0.16);
  }

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

  .main-nav a {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .header-action {
    display: none;
  }

  .hero {
    min-height: 760px;
    max-height: none;
  }

  .hero-content {
    width: min(100% - 36px, 1400px);
  }

  h1 {
    font-size: 62px;
  }

  h2 {
    font-size: 44px;
  }

  .hero-proof {
    grid-template-columns: repeat(3, 1fr);
    width: min(100% - 36px, 1400px);
  }

  .hero-proof > div,
  .hero-proof > div + div {
    padding: 20px 16px;
  }

  .intro-grid,
  .section-heading,
  .standards-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .heritage {
    display: flex;
    gap: 24px;
    align-items: end;
  }

  .heritage span {
    font-size: 86px;
  }

  .heritage p {
    margin-bottom: 8px;
  }

  .capability-image {
    height: 430px;
  }

  .capability-row {
    grid-template-columns: 54px 1fr;
  }

  .row-detail {
    grid-column: 2;
    padding-left: 0;
    border-left: 0;
  }

  .approach {
    display: block;
  }

  .approach-visual {
    height: 520px;
    min-height: 0;
  }

  .approach-copy {
    max-width: none;
    padding: 72px 32px 42px;
  }

  .process-shell {
    position: static;
    width: 100%;
  }

  .thermography {
    grid-template-columns: 1fr;
  }

  .thermal-image {
    min-height: 520px;
  }

  .thermal-image::after {
    background: linear-gradient(180deg, transparent 65%, rgba(46, 49, 45, 0.8));
  }

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

  .standards-heading {
    position: static;
  }

  .site-footer {
    grid-template-columns: 140px 1fr;
  }

  .footer-links {
    grid-column: 2;
    justify-items: start;
  }
}

@media (max-width: 620px) {
  .brand-name {
    font-size: 0.88rem;
  }

  .brand-name span {
    font-size: 0.7rem;
  }

  .brand-mark {
    width: 68px;
    height: 25px;
  }

  .section-shell {
    width: min(100% - 32px, 1400px);
  }

  .hero {
    min-height: 720px;
    background-position: 64% center;
  }

  .hero-content {
    width: min(100% - 32px, 1400px);
    padding-top: 56px;
  }

  h1 {
    font-size: 48px;
    line-height: 0.96;
  }

  h2,
  .contact h2 {
    font-size: 38px;
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
    justify-items: start;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    width: min(100% - 32px, 1400px);
  }

  .hero-proof > div,
  .hero-proof > div + div {
    min-height: 0;
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

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

  .proof-value,
  .proof-label {
    display: inline;
  }

  .proof-label {
    margin-left: 10px;
  }

  .company-intro,
  .capabilities,
  .markets,
  .standards {
    padding-top: 82px;
    padding-bottom: 88px;
  }

  .heritage span {
    font-size: 72px;
  }

  .capability-image {
    height: 330px;
  }

  .capability-image figcaption {
    right: 20px;
    bottom: 20px;
    left: 20px;
    font-size: 0.9rem;
  }

  .capability-row {
    grid-template-columns: 42px 1fr;
    gap: 14px;
  }

  .approach-visual {
    height: 380px;
  }

  .approach-copy,
  .thermal-copy {
    padding: 62px 24px;
  }

  .process-tabs {
    grid-template-columns: repeat(5, 112px);
    overflow-x: auto;
  }

  .process-tabs::after {
    display: none;
  }

  .process-panel {
    min-height: 285px;
    padding: 30px 24px;
  }

  .thermal-image {
    min-height: 390px;
  }

  .market-grid {
    grid-template-columns: 1fr;
  }

  .market {
    min-height: 340px;
    padding: 34px 28px;
  }

  .market-label {
    margin-bottom: 48px;
  }

  .market h3 {
    font-size: 2rem;
  }

  .standard-list article {
    grid-template-columns: 40px 1fr;
  }

  .standard-list article p {
    grid-column: 2;
  }

  .contact {
    padding: 90px 20px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 36px 24px;
  }

  .footer-brand img {
    width: 120px;
  }

  .footer-links {
    grid-column: 1;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .capability-row .row-number,
  .capability-row h3 {
    transform: none;
  }
}
