@font-face {
  font-family: "Barlow Condensed";
  src: url("assets/fonts/barlow-condensed-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("assets/fonts/barlow-condensed-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("assets/fonts/barlow-condensed-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("assets/fonts/dm-sans.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("assets/fonts/ibm-plex-mono-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("assets/fonts/ibm-plex-mono-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --blueprint: #0d2b36;
  --blueprint-deep: #081d25;
  --procut-blue: #35b8eb;
  --procut-blue-dark: #1688b5;
  --alloy: #66717a;
  --aluminium: #c9d0d2;
  --workshop: #eef1ef;
  --paper: #fafcfb;
  --signal: #e47a31;
  --ink: #17242a;
  --muted: #5d6a70;
  --line: rgba(13, 43, 54, 0.16);
  --line-light: rgba(255, 255, 255, 0.2);
  --shadow: 0 20px 70px rgba(8, 29, 37, 0.12);
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "DM Sans", Arial, sans-serif;
  --utility: "IBM Plex Mono", Consolas, monospace;
  --content: min(1240px, calc(100vw - 64px));
  --header-height: 80px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background: var(--workshop);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

h1,
h2,
h3,
p,
ul,
blockquote,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 0.98;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

::selection {
  background: var(--procut-blue);
  color: var(--blueprint-deep);
}

:focus-visible {
  outline: 3px solid var(--signal);
  outline-offset: 4px;
}

.container {
  width: var(--content);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--paper);
  color: var(--blueprint);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.utility-bar {
  background: var(--blueprint-deep);
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--utility);
  font-size: 0.72rem;
  letter-spacing: 0.03em;
}

.utility-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.utility-address,
.utility-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.utility-bar a {
  text-decoration: none;
  transition: color 160ms ease;
}

.utility-bar a:hover {
  color: var(--procut-blue);
}

.utility-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--procut-blue);
  box-shadow: 0 0 0 4px rgba(53, 184, 235, 0.12);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(250, 252, 251, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 32px rgba(8, 29, 37, 0.1);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: clamp(190px, 16vw, 230px);
  aspect-ratio: 2560 / 557;
  object-fit: contain;
}

.site-nav,
.nav-list {
  display: flex;
  align-items: center;
}

.site-nav {
  gap: 26px;
}

.nav-list {
  gap: clamp(18px, 2vw, 30px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--blueprint);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.nav-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  background: var(--procut-blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  --button-bg: var(--procut-blue);
  --button-color: var(--blueprint-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0.72rem 1.35rem;
  border: 1px solid transparent;
  background: var(--button-bg);
  color: var(--button-color);
  font-family: var(--utility);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: uppercase;
  clip-path: polygon(0 0, calc(100% - 11px) 0, 100% 11px, 100% 100%, 11px 100%, 0 calc(100% - 11px));
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  background: var(--signal);
  color: var(--blueprint-deep);
  transform: translateY(-2px);
}

.button-dark {
  --button-bg: var(--blueprint);
  --button-color: var(--paper);
}

.button-outline {
  --button-bg: transparent;
  --button-color: var(--paper);
  border-color: rgba(255, 255, 255, 0.48);
}

.button-outline:hover {
  border-color: var(--procut-blue);
  background: var(--procut-blue);
  color: var(--blueprint-deep);
}

.button svg {
  width: 17px;
  transition: transform 160ms ease;
}

.button:hover svg {
  transform: translateX(3px);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--blueprint);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-details {
  display: none;
}

.page-main {
  overflow: clip;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--procut-blue-dark);
  font-family: var(--utility);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.eyebrow-light {
  color: var(--procut-blue);
}

.home-hero {
  position: relative;
  min-height: calc(100vh - 116px);
  background: var(--blueprint);
  color: var(--paper);
  isolation: isolate;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    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: 40px 40px;
  mask-image: linear-gradient(to right, #000 0%, transparent 72%);
}

.home-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  min-height: calc(100vh - 116px);
}

.hero-copy {
  grid-column: 1 / span 7;
  align-self: center;
  z-index: 3;
  max-width: 780px;
  padding: 88px 0 96px;
}

.hero-copy h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(4.5rem, 8.2vw, 8.6rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.78;
  text-transform: uppercase;
}

.hero-copy h1 span {
  display: block;
}

.hero-copy h1 .outlined {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.72);
}

.hero-subtitle {
  max-width: 560px;
  margin-bottom: 18px;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.2vw, 2.1rem);
  font-weight: 500;
  line-height: 1.15;
}

.hero-description {
  max-width: 610px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(0.95rem, 1.3vw, 1.08rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-visual {
  position: absolute;
  top: 42px;
  right: 0;
  bottom: 42px;
  width: 48%;
  z-index: 1;
}

.hero-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #122f39;
  clip-path: polygon(8% 0, 100% 0, 100% 92%, 92% 100%, 0 100%, 0 8%);
}

.hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--blueprint) 0%, rgba(13, 43, 54, 0.22) 38%, rgba(8, 29, 37, 0.12) 100%);
}

.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 52% center;
  filter: saturate(0.78) contrast(1.08);
}

.hero-coordinates {
  position: absolute;
  right: 20px;
  bottom: 18px;
  z-index: 3;
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-family: var(--utility);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.toolpath {
  position: absolute;
  right: 1%;
  bottom: 8%;
  z-index: 4;
  width: 58%;
  overflow: visible;
  pointer-events: none;
}

.toolpath .path-line {
  fill: none;
  stroke: var(--procut-blue);
  stroke-width: 2.2;
  stroke-linecap: square;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: machine-path 2.6s cubic-bezier(0.62, 0, 0.22, 1) 300ms forwards;
}

.toolpath .path-guide {
  fill: none;
  stroke: rgba(255, 255, 255, 0.32);
  stroke-width: 1;
  stroke-dasharray: 3 6;
}

.toolpath .tool-head {
  fill: var(--signal);
  filter: drop-shadow(0 0 7px rgba(228, 122, 49, 0.72));
  opacity: 0;
  animation: tool-head-in 260ms ease 2.55s forwards;
}

@keyframes machine-path {
  to { stroke-dashoffset: 0; }
}

@keyframes tool-head-in {
  to { opacity: 1; }
}

.capability-strip {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.capability {
  position: relative;
  min-height: 218px;
  padding: 42px 42px 38px 0;
}

.capability + .capability {
  padding-left: 42px;
  border-left: 1px solid var(--line);
}

.capability-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 24px;
  border: 1px solid var(--procut-blue-dark);
  color: var(--procut-blue-dark);
  font-family: var(--utility);
  font-size: 0.68rem;
  clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 7px, 100% 100%, 7px 100%, 0 calc(100% - 7px));
}

.capability h2 {
  margin-bottom: 10px;
  color: var(--blueprint);
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.capability p {
  max-width: 330px;
  margin-bottom: 0;
  color: var(--muted);
}

.section {
  padding-block: clamp(82px, 10vw, 140px);
}

.section-sm {
  padding-block: clamp(64px, 8vw, 104px);
}

.section-paper {
  background: var(--paper);
}

.section-blueprint {
  background: var(--blueprint);
  color: var(--paper);
}

.split-intro {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
}

.section-title {
  margin-bottom: 24px;
  color: var(--blueprint);
  font-size: clamp(3.2rem, 6vw, 6.3rem);
  letter-spacing: -0.025em;
}

.section-title-light {
  color: var(--paper);
}

.intro-lead {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--blueprint);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.48;
}

.intro-copy {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.12rem);
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: clamp(42px, 6vw, 72px);
}

.section-heading-row .section-title {
  max-width: 760px;
  margin-bottom: 0;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
}

.faq-visual {
  position: sticky;
  top: 116px;
}

.faq-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.24 / 1;
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%);
}

.faq-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.faq-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  pointer-events: none;
}

.faq-list {
  border-top: 1px solid var(--line-light);
}

.faq-list details {
  border-bottom: 1px solid var(--line-light);
}

.faq-list summary {
  position: relative;
  padding: 28px 58px 28px 0;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.25vw, 2rem);
  font-weight: 500;
  line-height: 1.18;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before,
.faq-list summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  width: 22px;
  height: 2px;
  background: var(--procut-blue);
  transition: transform 180ms ease;
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0);
}

.faq-answer {
  max-width: 680px;
  padding: 0 58px 26px 0;
  color: rgba(255, 255, 255, 0.68);
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.excellence-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.work-card {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  background: var(--blueprint);
  color: var(--paper);
}

.work-card:first-child {
  grid-column: span 6;
}

.work-card:not(:first-child) {
  grid-column: span 3;
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 600ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 29, 37, 0.94) 0%, rgba(8, 29, 37, 0.1) 65%);
}

.work-card:hover img {
  transform: scale(1.035);
}

.work-card-copy {
  position: absolute;
  right: 28px;
  bottom: 26px;
  left: 28px;
  z-index: 2;
}

.work-card h3 {
  margin-bottom: 8px;
  font-size: clamp(2rem, 3.1vw, 3.2rem);
}

.work-card p {
  max-width: 460px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.94rem;
}

.page-hero {
  position: relative;
  background: var(--blueprint);
  color: var(--paper);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    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: 42px 42px;
  mask-image: linear-gradient(to bottom, #000, transparent 92%);
}

.page-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(380px, 0.7fr);
  gap: clamp(54px, 8vw, 110px);
  min-height: 610px;
  align-items: center;
  padding-block: clamp(72px, 9vw, 120px);
}

.page-hero-copy {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  max-width: 800px;
  margin-bottom: 26px;
  font-size: clamp(4.6rem, 8vw, 8.2rem);
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.page-hero-copy > p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
}

.page-hero-media {
  position: relative;
  align-self: stretch;
  min-height: 440px;
  overflow: hidden;
  clip-path: polygon(24px 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%, 0 24px);
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.page-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
  pointer-events: none;
}

.page-hero-media .axis-label {
  position: absolute;
  right: 14px;
  bottom: 12px;
  z-index: 2;
  margin: 0;
  padding: 5px 8px;
  background: rgba(8, 29, 37, 0.74);
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--utility);
  font-size: 0.62rem;
  text-transform: uppercase;
}

.content-split {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(48px, 8vw, 112px);
  align-items: start;
}

.content-block + .content-block {
  margin-top: clamp(66px, 8vw, 112px);
}

.content-block h2,
.content-block h3 {
  color: var(--blueprint);
}

.content-block h2 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 5vw, 5.2rem);
}

.content-block h3 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3vw, 3rem);
}

.content-block p {
  color: var(--muted);
}

.content-block p:last-child {
  margin-bottom: 0;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.mission-card {
  padding: clamp(34px, 5vw, 58px);
  border-top: 3px solid var(--procut-blue);
  background: var(--paper);
}

.mission-card h2 {
  font-size: clamp(2.7rem, 4vw, 4.2rem);
}

.mission-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.quote-band {
  position: relative;
  overflow: hidden;
  background: var(--procut-blue);
  color: var(--blueprint-deep);
}

.quote-band::before {
  content: "";
  position: absolute;
  top: -35%;
  right: -4%;
  width: 360px;
  aspect-ratio: 1;
  border: 60px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.quote-inner {
  position: relative;
  padding-block: clamp(68px, 8vw, 108px);
}

.quote-inner blockquote {
  max-width: 1000px;
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 5.1rem);
  font-weight: 600;
  line-height: 0.98;
}

.why-grid {
  display: grid;
  grid-template-columns: 0.64fr 1.36fr;
  gap: clamp(48px, 8vw, 112px);
}

.reason-list {
  border-top: 1px solid var(--line);
}

.reason {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  padding-block: 30px;
  border-bottom: 1px solid var(--line);
}

.reason strong {
  color: var(--blueprint);
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.1;
}

.reason p {
  margin-bottom: 0;
  color: var(--muted);
}

.industries {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 54px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.industry {
  position: relative;
  min-height: 126px;
  display: flex;
  align-items: end;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.28);
  color: var(--blueprint);
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.1;
  transition: background 160ms ease, color 160ms ease;
}

.industry::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 20px;
  width: 8px;
  height: 8px;
  border: 1px solid var(--procut-blue-dark);
}

.industry:hover {
  background: var(--blueprint);
  color: var(--paper);
}

.services-intro {
  max-width: 860px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.12rem, 1.8vw, 1.42rem);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 60px;
  border-top: 1px solid var(--line-light);
}

.service-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 24px;
  padding-block: 34px;
  border-bottom: 1px solid var(--line-light);
}

.service-number {
  color: var(--procut-blue);
  font-family: var(--utility);
  font-size: 0.88rem;
}

.service-item h3 {
  margin-bottom: 12px;
  color: var(--paper);
  font-size: clamp(1.9rem, 2.8vw, 2.7rem);
}

.service-item p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.67);
}

.gallery-intro {
  max-width: 960px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.4vw, 1.16rem);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 120px;
  gap: 14px;
}

.gallery-item {
  grid-column: span 3;
  grid-row: span 3;
  min-height: 0;
}

.gallery-item.wide {
  grid-column: span 6;
}

.gallery-item.tall {
  grid-row: span 5;
}

.gallery-item.large {
  grid-column: span 6;
  grid-row: span 5;
}

.gallery-button {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--aluminium);
  cursor: zoom-in;
}

.gallery-button::after {
  content: "+";
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: var(--procut-blue);
  color: var(--blueprint-deep);
  font-family: var(--utility);
  font-size: 1.1rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.gallery-button:hover::after,
.gallery-button:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.gallery-button img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 560ms cubic-bezier(0.2, 0.75, 0.25, 1), filter 180ms ease;
}

.gallery-button:hover img {
  transform: scale(1.035);
  filter: saturate(1.08);
}

.lightbox {
  width: min(1120px, calc(100vw - 36px));
  max-width: none;
  height: min(820px, calc(100dvh - 36px));
  max-height: none;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--blueprint-deep);
  color: var(--paper);
}

.lightbox::backdrop {
  background: rgba(3, 15, 20, 0.88);
  backdrop-filter: blur(8px);
}

.lightbox-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
}

.lightbox-image-wrap {
  min-height: 0;
  display: grid;
  place-items: center;
  padding: 52px 62px 24px;
}

.lightbox img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lightbox-caption {
  min-height: 54px;
  margin: 0;
  padding: 14px 70px;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--utility);
  font-size: 0.7rem;
  text-align: center;
  text-transform: uppercase;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(8, 29, 37, 0.74);
  color: var(--paper);
  cursor: pointer;
}

.lightbox-close {
  top: 12px;
  right: 12px;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 12px;
}

.lightbox-next {
  right: 12px;
}

.deck-hero .page-hero-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.78fr);
}

.deck-hero .page-hero-media img {
  object-position: center;
}

.deck-spec-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(48px, 8vw, 112px);
}

.spec-lines {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.spec-lines li {
  position: relative;
  padding: 21px 0 21px 32px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.spec-lines li::before {
  content: "";
  position: absolute;
  top: 29px;
  left: 0;
  width: 11px;
  height: 11px;
  border: 2px solid var(--procut-blue-dark);
  border-radius: 50%;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.benefit {
  min-height: 250px;
  padding: clamp(28px, 4vw, 48px);
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.benefit h3 {
  margin-bottom: 14px;
  color: var(--paper);
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.benefit p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.deck-custom {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(48px, 8vw, 112px);
  align-items: center;
}

.deck-custom-image {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
}

.deck-custom-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.deck-gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: 160px;
  gap: 12px;
}

.deck-gallery .gallery-item {
  grid-column: span 2;
  grid-row: span 2;
}

.deck-gallery .gallery-item:nth-child(1),
.deck-gallery .gallery-item:nth-child(8) {
  grid-column: span 3;
  grid-row: span 3;
}

.deck-patterns {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.deck-patterns .gallery-item {
  grid-column: span 1;
  grid-row: auto;
  aspect-ratio: 1;
}

.contact-hero .page-hero-grid {
  grid-template-columns: minmax(0, 1fr);
  min-height: 520px;
}

.contact-hero .page-hero-copy {
  max-width: 960px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(54px, 8vw, 112px);
  align-items: start;
}

.contact-panel {
  position: sticky;
  top: 116px;
}

.contact-panel h2,
.contact-form-wrap h2 {
  margin-bottom: 22px;
  color: var(--blueprint);
  font-size: clamp(2.8rem, 4.8vw, 4.8rem);
}

.contact-panel > p {
  color: var(--muted);
}

.contact-links {
  margin-top: 36px;
  border-top: 1px solid var(--line);
}

.contact-link {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 22px;
  padding-block: 22px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.contact-link span:first-child {
  color: var(--procut-blue-dark);
  font-family: var(--utility);
  font-size: 0.66rem;
  text-transform: uppercase;
}

.contact-link span:last-child {
  color: var(--blueprint);
  font-weight: 600;
}

.contact-link:hover span:last-child {
  color: var(--procut-blue-dark);
}

.contact-form-wrap {
  padding: clamp(34px, 5vw, 62px);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.contact-form-wrap > p {
  color: var(--muted);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
}

.field {
  display: grid;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--blueprint);
  font-family: var(--utility);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--workshop);
  color: var(--ink);
  transition: border-color 160ms ease, background 160ms ease;
}

.field input {
  min-height: 54px;
  padding: 0 16px;
}

.field textarea {
  min-height: 190px;
  padding: 14px 16px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--procut-blue-dark);
  background: var(--paper);
  box-shadow: 0 0 0 3px rgba(53, 184, 235, 0.16);
}

.form-actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 6px;
}

.form-response {
  margin: 0;
  color: var(--muted);
  font-family: var(--utility);
  font-size: 0.68rem;
}

.response-note {
  margin: 22px 0 0;
  color: var(--procut-blue-dark);
  font-family: var(--utility);
  font-size: 0.72rem;
}

.site-footer {
  background: var(--blueprint-deep);
  color: var(--paper);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.15fr 0.55fr 0.85fr;
  gap: clamp(42px, 7vw, 96px);
  padding-block: clamp(64px, 8vw, 104px);
}

.footer-brand img {
  width: min(310px, 80%);
}

.footer-brand p {
  max-width: 490px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.62);
}

.footer-heading {
  margin-bottom: 22px;
  color: var(--procut-blue);
  font-family: var(--utility);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li + li {
  margin-top: 10px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--procut-blue);
}

.footer-contact {
  display: grid;
  gap: 14px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-contact p {
  margin: 0;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.social-link {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 8px 13px;
  border: 1px solid var(--line-light);
  color: var(--paper) !important;
  font-family: var(--utility);
  font-size: 0.66rem;
  text-transform: uppercase;
}

.social-link:hover {
  border-color: var(--procut-blue);
  background: var(--procut-blue);
  color: var(--blueprint-deep) !important;
}

.footer-bottom {
  border-top: 1px solid var(--line-light);
}

.footer-bottom-inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255, 255, 255, 0.46);
  font-family: var(--utility);
  font-size: 0.62rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.65);
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  :root {
    --content: min(100% - 48px, 1180px);
  }

  .utility-address span:last-child {
    display: none;
  }

  .nav-list {
    gap: 16px;
  }

  .site-nav {
    gap: 16px;
  }

  .nav-cta {
    display: none;
  }

  .hero-copy {
    grid-column: 1 / span 8;
  }

  .hero-visual {
    width: 52%;
  }

  .work-card:first-child {
    grid-column: span 6;
  }

  .work-card:not(:first-child) {
    grid-column: span 3;
  }

  .gallery-grid {
    grid-auto-rows: 105px;
  }

  .gallery-item {
    grid-column: span 4;
  }

  .gallery-item.wide,
  .gallery-item.large {
    grid-column: span 8;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 72px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    height: calc(100dvh - var(--header-height));
    display: block;
    padding: 28px max(24px, calc((100vw - var(--content)) / 2));
    overflow-y: auto;
    background: var(--blueprint-deep);
    color: var(--paper);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: visibility 180ms ease, opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-list {
    display: block;
  }

  .nav-link {
    width: 100%;
    min-height: 64px;
    border-bottom: 1px solid var(--line-light);
    color: var(--paper);
    font-family: var(--display);
    font-size: 2rem;
    font-weight: 500;
  }

  .nav-link::after {
    display: none;
  }

  .mobile-nav-details {
    display: grid;
    gap: 12px;
    margin-top: 32px;
    color: rgba(255, 255, 255, 0.65);
    font-family: var(--utility);
    font-size: 0.72rem;
  }

  .mobile-nav-details a {
    text-decoration: none;
  }

  .home-hero-grid {
    min-height: auto;
    display: block;
  }

  .home-hero {
    min-height: 0;
  }

  .hero-copy {
    max-width: 680px;
    padding-block: 88px 560px;
  }

  .hero-visual {
    top: auto;
    right: 0;
    bottom: 36px;
    left: 0;
    width: 100%;
    height: 500px;
  }

  .hero-frame::after {
    background: linear-gradient(to bottom, var(--blueprint) 0%, rgba(13, 43, 54, 0.08) 45%, rgba(8, 29, 37, 0.12) 100%);
  }

  .toolpath {
    right: 2%;
    bottom: 5%;
    width: 78%;
  }

  .split-intro,
  .faq-layout,
  .content-split,
  .why-grid,
  .deck-spec-grid,
  .deck-custom,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .faq-visual,
  .contact-panel {
    position: static;
  }

  .faq-image {
    max-height: 480px;
  }

  .work-card:first-child,
  .work-card:not(:first-child) {
    grid-column: span 6;
  }

  .page-hero-grid,
  .deck-hero .page-hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .page-hero-copy {
    padding-top: 18px;
  }

  .page-hero-media {
    min-height: 480px;
  }

  .reason {
    grid-template-columns: 180px 1fr;
  }

  .industries {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .deck-custom-image {
    min-height: 480px;
    order: -1;
  }

  .deck-patterns {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  :root {
    --content: min(100% - 32px, 1180px);
  }

  .utility-bar {
    display: none;
  }

  .brand img {
    width: 178px;
  }

  .hero-copy {
    padding-block: 70px 420px;
  }

  .hero-copy h1 {
    font-size: clamp(4rem, 20vw, 6rem);
  }

  .hero-visual {
    bottom: 20px;
    height: 380px;
  }

  .hero-frame {
    clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .capability-grid {
    grid-template-columns: 1fr;
  }

  .capability,
  .capability + .capability {
    min-height: 0;
    padding: 32px 0;
    border-left: 0;
  }

  .capability + .capability {
    border-top: 1px solid var(--line);
  }

  .capability-mark {
    margin-bottom: 16px;
  }

  .section-heading-row {
    display: block;
  }

  .section-heading-row .button {
    margin-top: 26px;
  }

  .work-card:first-child,
  .work-card:not(:first-child) {
    grid-column: 1 / -1;
  }

  .work-card {
    min-height: 400px;
  }

  .page-hero h1 {
    font-size: clamp(4rem, 19vw, 6rem);
  }

  .page-hero-grid {
    padding-block: 62px;
  }

  .page-hero-media {
    min-height: 360px;
  }

  .mission-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .reason {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .industries {
    grid-template-columns: 1fr;
  }

  .industry {
    min-height: 100px;
  }

  .service-item {
    grid-template-columns: 42px 1fr;
    gap: 16px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 140px;
  }

  .gallery-item,
  .gallery-item.wide,
  .gallery-item.large {
    grid-column: span 1;
    grid-row: span 2;
  }

  .gallery-item.tall,
  .gallery-item.large {
    grid-row: span 3;
  }

  .gallery-item.wide {
    grid-column: span 2;
  }

  .lightbox-image-wrap {
    padding: 52px 12px 18px;
  }

  .lightbox-caption {
    padding-inline: 50px;
  }

  .deck-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .deck-gallery .gallery-item,
  .deck-gallery .gallery-item:nth-child(1),
  .deck-gallery .gallery-item:nth-child(8) {
    grid-column: span 1;
    grid-row: span 2;
  }

  .deck-gallery .gallery-item:nth-child(1),
  .deck-gallery .gallery-item:nth-child(8) {
    grid-column: span 2;
  }

  .contact-form-wrap {
    padding: 28px 20px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .form-actions .button {
    width: 100%;
  }

  .contact-link {
    grid-template-columns: 72px 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 18px;
  }
}

@media (max-width: 440px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 320px;
  }

  .gallery-item,
  .gallery-item.wide,
  .gallery-item.tall,
  .gallery-item.large {
    grid-column: 1;
    grid-row: span 1;
  }

  .deck-gallery {
    grid-template-columns: 1fr;
  }

  .deck-gallery .gallery-item,
  .deck-gallery .gallery-item:nth-child(1),
  .deck-gallery .gallery-item:nth-child(8) {
    grid-column: 1;
    grid-row: span 2;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .toolpath .path-line {
    stroke-dashoffset: 0;
  }

  .toolpath .tool-head {
    opacity: 1;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

/* SupremeWorx-inspired industrial direction, adapted to Procut's identity. */
:root {
  --blueprint: #242b38;
  --blueprint-deep: #020812;
  --procut-blue: #3d63f3;
  --procut-blue-dark: #3d63f3;
  --alloy: #7a8491;
  --aluminium: #303846;
  --workshop: #101722;
  --paper: #f8f9fb;
  --signal: #3ebffa;
  --ink: #f5f7fb;
  --muted: #aeb6c2;
  --line: rgba(255, 255, 255, 0.13);
  --line-light: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --display: "DM Sans", Arial, sans-serif;
  --body: "DM Sans", Arial, sans-serif;
  --header-height: 100px;
}

body {
  background: var(--blueprint-deep);
  color: var(--paper);
}

.utility-bar {
  display: none;
}

.site-header {
  height: var(--header-height);
  background: rgba(2, 8, 18, 0.97);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 45px rgba(0, 0, 0, 0.38);
}

.header-inner {
  min-height: var(--header-height);
}

.site-header .brand img,
.footer-brand img {
  filter: none;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.nav-link::after {
  bottom: 3px;
  height: 2px;
}

.button {
  min-height: 50px;
  padding-inline: 1.55rem;
  border-radius: 999px;
  clip-path: none;
  font-family: var(--body);
  font-size: 0.86rem;
  letter-spacing: 0;
  text-transform: none;
}

.button:hover {
  background: var(--signal);
}

.button-dark {
  --button-bg: var(--procut-blue);
  --button-color: #fff;
}

.button-outline {
  --button-bg: #202735;
  border-color: transparent;
}

.menu-toggle {
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--paper);
}

.page-main {
  background: var(--blueprint-deep);
}

.eyebrow {
  color: var(--procut-blue);
  font-size: 0.68rem;
}

.eyebrow::before {
  width: 7px;
  height: 28px;
  border-radius: 99px;
  background: var(--procut-blue);
}

.eyebrow-light {
  color: #fff;
}

.home-hero {
  min-height: calc(100vh - var(--header-height));
  background: var(--blueprint-deep);
}

.home-hero::before {
  display: none;
}

.home-hero-grid {
  min-height: calc(100vh - var(--header-height));
}

.hero-copy {
  grid-column: 1 / span 7;
  position: relative;
  max-width: 720px;
  padding-block: 110px 140px;
}

.hero-copy h1 {
  max-width: 680px;
  margin-bottom: 28px;
  font-size: clamp(4.2rem, 6.6vw, 6.7rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.92;
  text-transform: none;
}

.hero-copy h1 .outlined {
  color: #fff;
  -webkit-text-stroke: 0;
}

.hero-subtitle {
  font-family: var(--body);
  font-size: clamp(1.2rem, 1.8vw, 1.48rem);
  font-weight: 400;
}

.hero-description {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
}

.hero-visual {
  top: 0;
  right: auto;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
}

.hero-frame {
  clip-path: none;
}

.hero-frame::after {
  background:
    linear-gradient(90deg, rgba(2, 8, 18, 0.94) 0%, rgba(2, 8, 18, 0.74) 40%, rgba(2, 8, 18, 0.24) 72%, rgba(2, 8, 18, 0.18) 100%),
    linear-gradient(0deg, rgba(2, 8, 18, 0.55), transparent 48%);
}

.hero-frame img {
  object-position: 64% 48%;
  filter: saturate(0.72) contrast(1.12) brightness(0.78);
}

.hero-coordinates {
  display: none;
}

.toolpath {
  right: 2%;
  bottom: 4%;
  width: 44%;
  opacity: 0.44;
}

.capability-strip {
  position: relative;
  z-index: 5;
  padding-bottom: 50px;
  background: var(--blueprint-deep);
  border-bottom: 0;
}

.capability-grid {
  position: relative;
  transform: translateY(-56px);
  margin-bottom: -56px;
  background: #252c39;
  box-shadow: var(--shadow);
}

.capability,
.capability + .capability {
  min-height: 184px;
  padding: 36px 36px 32px 68px;
  border-color: rgba(255, 255, 255, 0.1);
}

.capability-mark {
  position: absolute;
  top: 38px;
  left: 20px;
  width: 7px;
  height: 74px;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 99px;
  background: var(--procut-blue);
  color: transparent;
  clip-path: none;
}

.capability h2 {
  color: #fff;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 400;
  line-height: 1.12;
}

.capability p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.section-paper {
  background: var(--blueprint-deep);
  color: var(--paper);
}

.section-title,
.intro-lead,
.content-block h2,
.content-block h3,
.contact-panel h2,
.contact-form-wrap h2 {
  color: #fff;
}

.section-title {
  font-size: clamp(3rem, 5.4vw, 5.8rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.intro-copy,
.content-block p,
.services-intro,
.contact-panel > p {
  color: var(--muted);
}

.capability-strip + .section-paper {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(2, 8, 18, 0.97) 0%, rgba(2, 8, 18, 0.82) 52%, rgba(2, 8, 18, 0.56) 100%),
    url("assets/images/about-cutting.webp") center 52% / cover no-repeat;
}

.capability-strip + .section-paper .split-intro {
  align-items: center;
}

.capability-strip + .section-paper .intro-lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.35rem, 2.5vw, 2.25rem);
  line-height: 1.5;
}

.section-blueprint {
  background: #1f2734;
}

.faq-image {
  border-radius: 10px;
  clip-path: none;
}

.faq-list summary {
  font-family: var(--body);
  font-size: clamp(1.25rem, 1.9vw, 1.7rem);
  font-weight: 400;
}

.section-heading-row .eyebrow,
.faq-visual > .eyebrow,
.why-grid > div > .eyebrow,
.deck-spec-grid > div > .eyebrow,
.deck-custom > div > .eyebrow {
  width: fit-content;
  padding: 16px 24px;
  border-radius: 0 0 10px 10px;
  background: #fff;
  color: #080d15;
  font-family: var(--body);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.section-heading-row .eyebrow::before,
.faq-visual > .eyebrow::before,
.why-grid > div > .eyebrow::before,
.deck-spec-grid > div > .eyebrow::before,
.deck-custom > div > .eyebrow::before {
  display: none;
}

.excellence-grid {
  gap: 24px;
}

.work-card {
  border-radius: 10px;
  background: #252c39;
}

.work-card h3 {
  font-weight: 400;
}

.page-hero {
  background: var(--blueprint-deep);
}

.page-hero::before {
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
}

.page-hero-grid {
  min-height: 680px;
  padding-block: 98px;
}

.page-hero h1 {
  font-size: clamp(4rem, 6.8vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.96;
  text-transform: none;
}

.gallery-hero h1,
.deck-hero h1 {
  font-size: clamp(3.6rem, 5.2vw, 5.4rem);
}

.page-hero-media {
  border-radius: 12px;
  clip-path: none;
  box-shadow: var(--shadow);
}

.page-hero-media img {
  filter: saturate(0.82) contrast(1.06) brightness(0.86);
}

.mission-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-top: 1px solid var(--line);
  border-radius: 8px;
  background: #252c39;
}

.mission-card::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 0;
  width: 7px;
  height: 58px;
  border-radius: 0 99px 99px 0;
  background: var(--procut-blue);
}

.mission-card h2 {
  color: #fff;
  font-weight: 400;
}

.mission-card p {
  color: rgba(255, 255, 255, 0.68);
}

.quote-band {
  background: var(--procut-blue);
  color: #fff;
}

.quote-inner blockquote {
  font-family: var(--body);
  font-weight: 400;
}

.reason-list,
.reason {
  border-color: var(--line);
}

.reason strong {
  color: #fff;
  font-family: var(--body);
  font-weight: 500;
}

.reason p {
  color: var(--muted);
}

.industries {
  border-color: var(--line);
}

.industry {
  border-color: var(--line);
  background: #252c39;
  color: #fff;
  font-family: var(--body);
  font-size: 1.18rem;
  font-weight: 400;
}

.industry:hover {
  background: #30394a;
}

.service-list {
  gap: 0;
  border: 1px solid var(--line-light);
  background: #252c39;
}

.service-item {
  position: relative;
  min-height: 310px;
  padding: 44px 48px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.service-item:nth-child(even) {
  border-right: 0;
}

.service-number {
  align-self: start;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 7px solid var(--procut-blue);
  color: rgba(255, 255, 255, 0.72);
}

.service-item h3 {
  font-family: var(--body);
  font-size: clamp(1.6rem, 2.3vw, 2.2rem);
  font-weight: 400;
}

.gallery-button {
  border-radius: 9px;
  background: #252c39;
}

.deck-spec-grid .spec-lines,
.deck-custom .spec-lines {
  border-color: var(--line);
}

.spec-lines li {
  border-color: var(--line);
  color: var(--muted);
}

.contact-panel {
  color: #fff;
}

.contact-links,
.contact-link {
  border-color: var(--line);
}

.contact-link span:last-child {
  color: #fff;
}

.contact-form-wrap {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #252c39;
}

.contact-form-wrap > p,
.form-response {
  color: var(--muted);
}

.field label {
  color: #fff;
}

.field input,
.field textarea {
  border-color: var(--line);
  background: #151c27;
  color: #fff;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--procut-blue);
  background: #101722;
}

.site-footer {
  background: #242b38;
}

.footer-brand p,
.footer-links a,
.footer-contact,
.footer-contact a {
  color: rgba(255, 255, 255, 0.68);
}

.social-link {
  border-radius: 999px;
}

@media (max-width: 900px) {
  :root {
    --header-height: 78px;
  }

  .site-nav {
    background: rgba(2, 8, 18, 0.99);
  }

  .home-hero,
  .home-hero-grid {
    min-height: 760px;
  }

  .hero-copy {
    max-width: 620px;
    padding-block: 100px 110px;
  }

  .hero-visual {
    top: 0;
    right: auto;
    bottom: 0;
    left: 50%;
    width: 100vw;
    height: auto;
    transform: translateX(-50%);
  }

  .hero-frame::after {
    background: linear-gradient(90deg, rgba(2, 8, 18, 0.94), rgba(2, 8, 18, 0.55)), linear-gradient(0deg, rgba(2, 8, 18, 0.6), transparent 50%);
  }

  .toolpath {
    display: none;
  }

  .capability-grid {
    transform: translateY(-42px);
    margin-bottom: -42px;
  }

  .capability-strip + .section-paper {
    min-height: 640px;
  }

  .page-hero-grid {
    padding-block: 72px;
  }
}

@media (max-width: 680px) {
  .hero-copy {
    padding-block: 72px 90px;
  }

  .hero-copy h1 {
    font-size: clamp(3.6rem, 17vw, 5rem);
  }

  .hero-description {
    max-width: 96%;
  }

  .capability-grid {
    transform: none;
    margin-bottom: 0;
  }

  .capability,
  .capability + .capability {
    padding: 28px 24px 28px 58px;
  }

  .capability-mark {
    top: 30px;
    left: 20px;
    height: 54px;
  }

  .capability-strip {
    padding: 16px 0 32px;
  }

  .capability-strip + .section-paper {
    min-height: 0;
  }

  .service-item {
    min-height: 0;
    padding: 32px 24px;
    border-right: 0;
  }

  .page-hero h1,
  .gallery-hero h1,
  .deck-hero h1 {
    font-size: clamp(3.2rem, 15vw, 4.8rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .toolpath .path-line {
    stroke-dashoffset: 0;
  }
}

/* Scroll-activated process film and mobile-first project journey. */
.scroll-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: var(--blueprint-deep);
}

.hero-frame .scroll-video {
  position: absolute;
  inset: 0;
  object-position: 64% 48%;
  filter: saturate(0.72) contrast(1.12) brightness(0.78);
}

.video-toggle {
  position: absolute;
  z-index: 6;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(2, 8, 18, 0.7);
  color: #fff;
  font-family: var(--utility);
  font-size: 0.66rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease;
}

.video-toggle:hover,
.video-toggle:focus-visible {
  border-color: #8ca5ff;
  background: rgba(20, 31, 52, 0.94);
}

.hero-video-toggle {
  right: 22px;
  bottom: 22px;
}

.process-video-toggle {
  top: 0;
  right: 0;
}

.scroll-video.is-static {
  filter: saturate(0.76) contrast(1.08) brightness(0.76);
}

.process-story {
  position: relative;
  min-height: 100svh;
  padding-block: clamp(96px, 10vw, 156px);
  overflow: hidden;
  isolation: isolate;
  background: #030812;
  color: #fff;
}

.process-story::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(2, 8, 18, 0.96) 0%, rgba(2, 8, 18, 0.76) 46%, rgba(2, 8, 18, 0.44) 100%),
    linear-gradient(0deg, rgba(2, 8, 18, 0.92) 0%, transparent 46%, rgba(2, 8, 18, 0.6) 100%);
}

.process-story-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.process-story-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}

.process-story-media .scroll-video {
  object-position: center;
  filter: saturate(0.68) contrast(1.13) brightness(0.68);
}

.process-story-inner {
  position: relative;
  z-index: 2;
}

.process-story-heading {
  max-width: 900px;
  margin-bottom: clamp(52px, 7vw, 92px);
}

.process-story-heading .eyebrow {
  margin-bottom: 28px;
}

.process-story-heading h2 {
  margin: 0;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(4.6rem, 8vw, 8.6rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.84;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 14px;
}

.process-step {
  position: relative;
  min-height: 330px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: rgba(27, 35, 48, 0.9);
  box-shadow: 0 22px 62px rgba(0, 0, 0, 0.2);
}

.process-step-number {
  display: block;
  margin-bottom: 52px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.64);
  font-family: var(--utility);
  font-size: 0.78rem;
}

.process-stage {
  margin: 0 0 6px;
  color: #8ca5ff;
  font-family: var(--utility);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process-step h3 {
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(1.65rem, 2.5vw, 2.5rem);
  font-weight: 400;
}

.process-step > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.93rem;
}

.process-step-featured {
  border-color: #6686ff;
  background: rgba(65, 105, 255, 0.94);
  transform: translateY(-18px);
}

.process-step-featured .process-stage,
.process-step-featured > p:last-child,
.process-step-featured .process-step-number {
  color: rgba(255, 255, 255, 0.9);
}

.process-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.service-item-featured {
  overflow: hidden;
  scroll-margin-top: calc(var(--header-height) + 24px);
  border-color: #6686ff;
  background:
    radial-gradient(circle at 92% 14%, rgba(255, 255, 255, 0.24), transparent 30%),
    var(--procut-blue);
  box-shadow: 0 20px 46px rgba(24, 58, 186, 0.24);
}

.service-item-featured .service-number {
  border-left-color: #fff;
  color: #fff;
}

.service-item-featured h3 {
  color: #fff;
  font-size: clamp(2.25rem, 3.2vw, 3.4rem);
}

.service-item-featured p {
  position: relative;
  z-index: 1;
  color: #fff;
}

.service-focus {
  display: inline-block;
  margin-bottom: 12px;
  color: #fff;
  font-family: var(--utility);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.print-layers {
  position: absolute;
  right: 20px;
  bottom: 18px;
  width: 112px;
  height: 78px;
  opacity: 0.24;
  pointer-events: none;
}

.print-layers i {
  position: absolute;
  right: 0;
  width: 92px;
  height: 30px;
  border: 2px solid #fff;
  transform: skewY(-12deg);
}

.print-layers i:nth-child(1) { bottom: 0; }
.print-layers i:nth-child(2) { right: 7px; bottom: 13px; }
.print-layers i:nth-child(3) { right: 14px; bottom: 26px; }
.print-layers i:nth-child(4) { right: 21px; bottom: 39px; }

.gallery-process {
  padding: clamp(92px, 10vw, 150px) 0 0;
}

.gallery-process-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: clamp(36px, 7vw, 110px);
  padding-bottom: clamp(58px, 7vw, 96px);
}

.gallery-process-intro > p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.55vw, 1.35rem);
  line-height: 1.55;
}

.process-nav {
  position: sticky;
  top: var(--header-height);
  z-index: 8;
  border-block: 1px solid var(--line);
  background: rgba(9, 15, 25, 0.96);
  backdrop-filter: blur(16px);
}

.process-nav-inner {
  min-height: 88px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
}

.process-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.56);
  font-size: clamp(1rem, 1.6vw, 1.28rem);
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease;
}

.process-nav a span {
  color: #718fff;
  font-family: var(--utility);
  font-size: 0.68rem;
}

.process-nav a:hover,
.process-nav a:focus-visible,
.process-nav a.is-active {
  background: rgba(65, 105, 255, 0.12);
  color: #fff;
}

.process-nav-arrow {
  align-self: center;
  color: rgba(255, 255, 255, 0.25);
}

.gallery-stage {
  padding-block: clamp(84px, 9vw, 132px);
  border-bottom: 1px solid var(--line);
  scroll-margin-top: calc(var(--header-height) + 88px);
}

.gallery-stage-heading {
  display: grid;
  grid-template-columns: 150px minmax(280px, 0.85fr) minmax(300px, 0.75fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
  margin-bottom: 44px;
}

.gallery-stage-number {
  margin: 10px 0 0;
  color: #718fff;
  font-family: var(--utility);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gallery-stage-heading h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.8rem, 4.8vw, 5.2rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.gallery-stage-heading > p:last-child {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.stage-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.gallery-stage .gallery-item {
  grid-column: auto;
  grid-row: auto;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #252c39;
}

.gallery-stage .gallery-button {
  height: auto;
  aspect-ratio: 4 / 3;
  border-radius: 0;
}

.gallery-stage figcaption {
  padding: 14px 16px 16px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--utility);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gallery-stage .featured-print {
  grid-column: span 2;
  border-color: #6686ff;
  box-shadow: 0 18px 44px rgba(24, 58, 186, 0.22);
}

.gallery-stage .featured-print .gallery-button {
  aspect-ratio: 2 / 1;
}

.gallery-stage .featured-print figcaption {
  background: var(--procut-blue);
  color: #fff;
}

.gallery-swipe-cue {
  display: none;
}

.button-dark:hover {
  background: #2f4fcc;
  color: #fff;
}

.footer-heading {
  color: #aebcff;
}

.footer-bottom p,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 900px) {
  .process-story-heading h2 {
    font-size: clamp(4rem, 12vw, 7rem);
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-step {
    min-height: 0;
  }

  .process-step-featured {
    transform: none;
  }

  .gallery-process-intro {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .gallery-stage-heading {
    grid-template-columns: 90px minmax(220px, 0.8fr) 1fr;
    gap: 24px;
  }

  .stage-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .hero-frame .scroll-video {
    object-position: center;
  }

  .hero-video-toggle {
    right: 16px;
    bottom: 16px;
  }

  .process-story {
    min-height: 0;
    padding-block: 82px;
  }

  .process-story::before {
    background:
      linear-gradient(180deg, rgba(2, 8, 18, 0.55) 0%, rgba(2, 8, 18, 0.82) 28%, rgba(2, 8, 18, 0.95) 100%),
      linear-gradient(90deg, rgba(2, 8, 18, 0.78), rgba(2, 8, 18, 0.36));
  }

  .process-story-media .scroll-video {
    object-position: center top;
    filter: saturate(0.68) contrast(1.12) brightness(0.62);
  }

  .process-story-heading {
    margin-bottom: 44px;
  }

  .process-video-toggle {
    top: 0;
    right: 16px;
  }

  .process-story-heading .eyebrow {
    margin-bottom: 20px;
  }

  .process-story-heading h2 {
    font-size: clamp(3.35rem, 15vw, 4.8rem);
    line-height: 0.88;
  }

  .process-steps {
    gap: 12px;
  }

  .process-step {
    padding: 26px 24px 28px;
    background: rgba(24, 32, 45, 0.94);
  }

  .process-step-number {
    margin-bottom: 34px;
  }

  .process-step-featured {
    background: rgba(65, 105, 255, 0.96);
  }

  .process-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .process-actions .button {
    width: 100%;
  }

  .service-item-featured {
    padding-right: 24px;
  }

  .print-layers {
    right: 10px;
    bottom: 10px;
    opacity: 0.1;
  }

  .gallery-process {
    padding-top: 76px;
  }

  .gallery-process-intro {
    gap: 24px;
    padding-bottom: 50px;
  }

  .process-nav {
    top: var(--header-height);
    backdrop-filter: none;
  }

  .process-nav-inner {
    min-height: 68px;
    grid-template-columns: 1fr 1fr 1fr;
    padding-inline: 0;
  }

  .process-nav-arrow {
    display: none;
  }

  .process-nav a {
    flex-direction: column;
    gap: 2px;
    font-size: 0.9rem;
  }

  .process-nav a + a {
    border-left: 1px solid var(--line);
  }

  .gallery-stage {
    padding-block: 74px;
    scroll-margin-top: calc(var(--header-height) + 68px);
  }

  .gallery-stage-heading {
    display: block;
    margin-bottom: 34px;
  }

  .gallery-stage-number {
    margin: 0 0 16px;
  }

  .gallery-stage-heading h2 {
    margin-bottom: 18px;
    font-size: clamp(3.1rem, 14vw, 4.3rem);
  }

  .gallery-stage-heading > p:last-child {
    margin-top: 0;
  }

  .gallery-swipe-cue {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: -8px 0 18px;
    color: #8ca5ff;
    font-family: var(--utility);
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .stage-gallery {
    display: flex;
    gap: 14px;
    padding-bottom: 16px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 1px;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .stage-gallery::-webkit-scrollbar {
    display: none;
  }

  .gallery-stage .gallery-item,
  .gallery-stage .featured-print {
    flex: 0 0 82vw;
    grid-column: auto;
    scroll-snap-align: start;
  }

  .gallery-stage .gallery-button,
  .gallery-stage .featured-print .gallery-button {
    aspect-ratio: 4 / 5;
  }

  .gallery-button::after {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-video {
    display: block;
  }

  .process-nav {
    scroll-behavior: auto;
  }
}

/* Gallery inspection orbit — a native, accessible adaptation of the 3D carousel brief. */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

body.lightbox-open {
  overflow: hidden;
}

.orbit-stage-nav .process-nav-inner {
  grid-template-columns: 1fr auto 1fr auto 1fr;
}

.orbit-stage-tab {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 18px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.56);
  font-size: clamp(1rem, 1.6vw, 1.28rem);
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease;
}

.orbit-stage-tab > span {
  color: #8ca5ff;
  font-family: var(--utility);
  font-size: 0.68rem;
}

.orbit-stage-tab:hover,
.orbit-stage-tab:focus-visible,
.orbit-stage-tab.is-active {
  background: rgba(61, 99, 243, 0.16);
  color: #fff;
}

.orbit-stage-tab:focus-visible,
.orbit-control:focus-visible,
.orbit-card-button:focus-visible,
.project-viewer button:focus-visible,
.project-viewer a:focus-visible {
  outline: 3px solid #aebcff;
  outline-offset: 3px;
}

.orbit-gallery-shell {
  padding-block: clamp(80px, 8vw, 126px) clamp(96px, 10vw, 150px);
}

.orbit-gallery-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.7fr);
  gap: clamp(40px, 8vw, 128px);
  align-items: end;
  margin-bottom: 30px;
}

.orbit-gallery-heading h3 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(3.6rem, 6.5vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.orbit-gallery-intro > p:first-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
}

.orbit-gesture {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 24px 0 0;
  color: #8ca5ff;
  font-family: var(--utility);
  font-size: 0.68rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.orbit-gesture span {
  font-size: 1.05rem;
}

.orbit-stage {
  position: relative;
  scroll-margin-top: 190px;
}

.orbit-viewport {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(ellipse at 50% 88%, rgba(61, 99, 243, 0.22), transparent 38%),
    linear-gradient(180deg, #060c17 0%, #030812 100%);
  outline: none;
}

.orbit-viewport::before,
.orbit-viewport::after {
  content: "";
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  width: clamp(18px, 5vw, 72px);
  pointer-events: none;
}

.orbit-viewport::before {
  left: 0;
  background: linear-gradient(90deg, #030812, transparent);
}

.orbit-viewport::after {
  right: 0;
  background: linear-gradient(-90deg, #030812, transparent);
}

.orbit-ring {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 32px;
}

.orbit-card {
  min-width: 0;
  margin: 0;
}

.orbit-card[hidden] {
  display: none !important;
}

.orbit-card-button {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: #1c2432;
  color: #fff;
  text-align: left;
  cursor: zoom-in;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.3);
}

.orbit-card-media {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: #0a101b;
}

.orbit-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(2, 8, 18, 0.34));
  pointer-events: none;
}

.orbit-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  transition: transform 500ms cubic-bezier(0.2, 0.75, 0.25, 1), filter 220ms ease;
}

.orbit-card-button:hover img,
.orbit-card-button:focus-visible img {
  transform: scale(1.035);
  filter: saturate(1.08);
}

.orbit-card-meta {
  min-height: 124px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: center;
  gap: 4px 18px;
  padding: 20px 22px;
}

.orbit-card-meta > span:first-child,
.orbit-card-meta > span:last-child {
  color: #8ca5ff;
  font-family: var(--utility);
  font-size: 0.62rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.orbit-card-meta strong {
  grid-column: 1 / -1;
  color: #fff;
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  font-weight: 500;
  line-height: 1.15;
}

.orbit-card-meta > span:last-child {
  grid-column: 2;
  grid-row: 1;
  color: rgba(255, 255, 255, 0.52);
}

.orbit-gallery.is-enhanced .orbit-viewport {
  height: clamp(570px, 54vw, 680px);
  min-height: 0;
  perspective: 1350px;
  perspective-origin: 50% 46%;
  transform-style: preserve-3d;
  touch-action: pan-y pinch-zoom;
  cursor: grab;
}

.orbit-gallery.is-enhanced .orbit-viewport.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.orbit-gallery.is-enhanced .orbit-ring {
  --orbit-card-width: 360px;
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--orbit-card-width);
  height: min(470px, calc(100% - 84px));
  display: block;
  padding: 0;
  transform-style: preserve-3d;
}

.orbit-gallery.is-enhanced .orbit-ring.is-snapping {
  transition: transform 560ms cubic-bezier(0.22, 0.76, 0.22, 1);
}

.orbit-gallery.is-enhanced .orbit-card {
  position: absolute;
  inset: 0;
  transform: rotateY(var(--orbit-angle)) translateZ(var(--orbit-radius));
  transform-style: preserve-3d;
  backface-visibility: hidden;
  opacity: 0.68;
  filter: brightness(0.8) saturate(0.82);
  transition: opacity 260ms ease, filter 260ms ease;
}

.orbit-gallery.is-enhanced .orbit-card.is-active {
  opacity: 1;
  filter: none;
}

.orbit-gallery.is-enhanced .orbit-card.is-active .orbit-card-button {
  border-color: rgba(140, 165, 255, 0.82);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.52), 0 0 0 1px rgba(61, 99, 243, 0.18);
}

.orbit-gallery.is-static .orbit-viewport {
  min-height: 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-width: thin;
  scrollbar-color: #3d63f3 #111827;
}

.orbit-gallery.is-static .orbit-ring {
  width: max-content;
  display: flex;
  gap: 16px;
  padding: 30px;
}

.orbit-gallery.is-static .orbit-card {
  flex: 0 0 min(78vw, 360px);
  min-height: 430px;
  scroll-snap-align: center;
}

.orbit-controls {
  min-height: 92px;
  display: grid;
  grid-template-columns: minmax(140px, 1fr) minmax(220px, 1.3fr) minmax(140px, 1fr);
  align-items: stretch;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.orbit-control {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 16px;
  border: 0;
  background: #171f2c;
  color: #fff;
  cursor: pointer;
  transition: background 180ms ease;
}

.orbit-control:hover {
  background: #25304a;
}

.orbit-control:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.orbit-control:last-child {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.orbit-control span:last-child,
.orbit-control span:first-child {
  font-size: 0.86rem;
}

.orbit-readout {
  display: grid;
  place-content: center;
  padding: 12px 24px;
  text-align: center;
}

.orbit-readout output {
  color: #8ca5ff;
  font-family: var(--utility);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.orbit-readout p {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
}

.project-viewer.lightbox {
  inset: 0;
  width: 100vw;
  width: 100dvw;
  max-width: none;
  height: 100vh;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #020812;
  color: #fff;
}

.project-viewer::backdrop {
  background: rgba(0, 0, 0, 0.96);
  backdrop-filter: none;
}

.project-viewer-inner {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
}

.project-viewer-toolbar {
  position: relative;
  z-index: 8;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px max(22px, env(safe-area-inset-left));
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(2, 8, 18, 0.97);
}

.project-viewer-toolbar p {
  display: flex;
  gap: 10px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-family: var(--utility);
  font-size: 0.67rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.project-viewer-toolbar [data-lightbox-stage] {
  color: #8ca5ff;
}

.project-viewer-close {
  min-width: 108px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: #171f2c;
  color: #fff;
  cursor: pointer;
}

.project-viewer-close span:first-child {
  font-family: var(--utility);
  font-size: 0.66rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.project-viewer-close span:last-child {
  font-size: 1.35rem;
  line-height: 1;
}

.project-viewer-scroll {
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: #020812;
}

.project-viewer-media {
  position: relative;
  height: calc(100vh - 70px);
  height: calc(100dvh - 70px);
  min-height: 500px;
  display: grid;
  place-items: center;
  margin: 0;
  padding: clamp(24px, 4vw, 58px) clamp(68px, 7vw, 112px) 64px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 44%, rgba(61, 99, 243, 0.12), transparent 40%),
    #00040a;
  touch-action: pan-y pinch-zoom;
}

.project-viewer-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  -webkit-user-drag: none;
  user-select: none;
  filter: drop-shadow(0 34px 70px rgba(0, 0, 0, 0.5));
}

.project-viewer-media figcaption {
  position: absolute;
  right: clamp(22px, 4vw, 58px);
  bottom: 18px;
  left: clamp(22px, 4vw, 58px);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--utility);
  font-size: 0.62rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.project-viewer-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(18, 26, 40, 0.86);
  color: #fff;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 180ms ease, opacity 180ms ease;
}

.project-viewer-arrow:hover {
  background: #3d63f3;
}

.project-viewer-arrow:disabled {
  opacity: 0.2;
  cursor: not-allowed;
}

.project-viewer-prev {
  left: clamp(14px, 2.5vw, 40px);
}

.project-viewer-next {
  right: clamp(14px, 2.5vw, 40px);
}

.project-viewer-story {
  width: var(--content);
  margin-inline: auto;
  padding-block: clamp(68px, 8vw, 116px) clamp(82px, 9vw, 132px);
}

.project-viewer-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 0 clamp(58px, 7vw, 94px);
  padding: 0;
  border-block: 1px solid rgba(255, 255, 255, 0.15);
  list-style: none;
}

.project-viewer-track li {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.project-viewer-track li + li {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.project-viewer-track li span {
  color: rgba(140, 165, 255, 0.64);
  font-family: var(--utility);
  font-size: 0.64rem;
}

.project-viewer-track li.is-complete {
  color: rgba(255, 255, 255, 0.68);
}

.project-viewer-track li.is-active {
  background: #3d63f3;
  color: #fff;
}

.project-viewer-track li.is-active span {
  color: #fff;
}

.project-viewer-heading {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  align-items: start;
  gap: 32px;
}

.project-viewer-heading > p:first-child {
  margin: 12px 0 0;
  color: #8ca5ff;
  font-family: var(--utility);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-viewer-heading h2 {
  max-width: 980px;
  margin: 0;
  color: #fff;
  font-size: clamp(3.6rem, 7vw, 7.6rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.project-viewer-heading > p:last-child {
  grid-column: 2;
  max-width: 760px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
}

.project-viewer-notes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: clamp(58px, 8vw, 110px) 0 0 182px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: #171f2c;
}

.project-viewer-notes section {
  min-height: 260px;
  padding: clamp(28px, 4vw, 54px);
}

.project-viewer-notes section + section {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.project-viewer-note-label {
  margin: 0 0 42px;
  color: #8ca5ff;
  font-family: var(--utility);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-viewer-notes section > p:last-child {
  margin: 0;
  color: #fff;
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  line-height: 1.55;
}

.project-viewer-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin: 44px 0 0 182px;
}

.project-viewer-footer > p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
}

@media (max-width: 900px) {
  .orbit-gallery-heading {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .orbit-gallery-intro {
    max-width: 680px;
  }

  .orbit-ring {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-viewer-heading {
    grid-template-columns: 110px minmax(0, 1fr);
  }

  .project-viewer-notes,
  .project-viewer-footer {
    margin-left: 142px;
  }
}

@media (max-width: 680px) {
  .orbit-stage-nav .process-nav-inner {
    grid-template-columns: repeat(3, 1fr);
  }

  .orbit-stage-nav .process-nav-arrow {
    display: none;
  }

  .orbit-stage-tab {
    min-height: 68px;
    flex-direction: column;
    gap: 2px;
    padding: 7px 5px;
    font-size: 0.9rem;
  }

  .orbit-stage-tab + .orbit-stage-tab {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }

  .orbit-gallery-shell {
    width: 100%;
    padding-block: 68px 92px;
  }

  .orbit-stage {
    scroll-margin-top: 146px;
  }

  .orbit-gallery-heading {
    width: var(--content);
    margin-inline: auto;
    margin-bottom: 34px;
  }

  .orbit-gallery-heading h3 {
    font-size: clamp(3.25rem, 14vw, 4.5rem);
  }

  .orbit-gesture {
    margin-top: 20px;
  }

  .orbit-gallery.is-enhanced .orbit-viewport {
    height: 530px;
    perspective: 900px;
    perspective-origin: 50% 45%;
  }

  .orbit-gallery.is-enhanced .orbit-ring {
    height: 410px;
  }

  .orbit-card-meta {
    min-height: 112px;
    padding: 16px 18px;
  }

  .orbit-card-meta strong {
    font-size: 1.15rem;
  }

  .orbit-controls {
    min-height: 82px;
    grid-template-columns: 82px minmax(0, 1fr) 82px;
  }

  .orbit-control {
    gap: 0;
    padding: 12px;
  }

  .orbit-control span:not([aria-hidden="true"]) {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .orbit-control span[aria-hidden="true"] {
    font-size: 1.25rem;
  }

  .orbit-readout {
    padding-inline: 10px;
  }

  .orbit-readout p {
    overflow: hidden;
    font-size: 0.82rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .orbit-gallery.is-static .orbit-ring {
    padding-inline: 16px;
  }

  .orbit-gallery.is-static .orbit-card {
    flex-basis: 82vw;
    min-height: 410px;
  }

  .project-viewer-toolbar {
    min-height: 64px;
    padding: 8px max(14px, env(safe-area-inset-left)) 8px max(14px, env(safe-area-inset-right));
  }

  .project-viewer-toolbar p {
    display: grid;
    grid-template-columns: auto auto;
    gap: 0 8px;
  }

  .project-viewer-toolbar p > span[aria-hidden="true"] {
    display: none;
  }

  .project-viewer-close {
    min-width: 52px;
    width: 52px;
    min-height: 48px;
    padding: 0;
  }

  .project-viewer-close span:first-child {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .project-viewer-media {
    height: 62vh;
    height: 62dvh;
    min-height: 410px;
    padding: 24px 46px 54px;
  }

  .project-viewer-media figcaption {
    right: 16px;
    bottom: 14px;
    left: 16px;
    font-size: 0.55rem;
  }

  .project-viewer-arrow {
    width: 48px;
    height: 48px;
  }

  .project-viewer-prev {
    left: 8px;
  }

  .project-viewer-next {
    right: 8px;
  }

  .project-viewer-story {
    width: 100%;
    padding: 48px 20px calc(86px + env(safe-area-inset-bottom));
  }

  .project-viewer-track {
    margin-bottom: 50px;
  }

  .project-viewer-track li {
    min-height: 62px;
    flex-direction: column;
    gap: 1px;
    font-size: 0.82rem;
  }

  .project-viewer-heading {
    display: block;
  }

  .project-viewer-heading > p:first-child {
    margin: 0 0 16px;
  }

  .project-viewer-heading h2 {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

  .project-viewer-heading > p:last-child {
    margin-top: 24px;
  }

  .project-viewer-notes {
    display: block;
    margin: 48px 0 0;
  }

  .project-viewer-notes section {
    min-height: 0;
    padding: 28px 24px 32px;
  }

  .project-viewer-notes section + section {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 0;
  }

  .project-viewer-note-label {
    margin-bottom: 24px;
  }

  .project-viewer-notes section > p:last-child {
    font-size: 1.08rem;
  }

  .project-viewer-footer {
    display: grid;
    margin: 30px 0 0;
  }

  .project-viewer-footer .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .orbit-gallery *,
  .project-viewer * {
    animation: none !important;
    transition: none !important;
  }

  .orbit-gallery .orbit-viewport {
    scroll-behavior: auto;
  }
}

/* CNC cut-pass motion system, Netlify form states, and compact footer marks. */
.scroll-progress {
  --scroll-progress: 0;
  position: fixed;
  inset: 0 0 auto;
  z-index: 1200;
  height: 3px;
  pointer-events: none;
  background: linear-gradient(90deg, #8ca5ff, var(--procut-blue) 72%, #ffffff);
  transform: scaleX(var(--scroll-progress));
  transform-origin: left center;
}

.home-hero {
  overflow: hidden;
}

.hero-scan {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: -14%;
  width: 12%;
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(62, 191, 250, 0.12) 52%, transparent);
  filter: drop-shadow(0 0 24px rgba(61, 99, 243, 0.28));
  mix-blend-mode: screen;
}

.hero-scan::after {
  content: "";
  position: absolute;
  top: 0;
  right: 12%;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent 5%, rgba(174, 188, 255, 0.9) 28%, #3ebffa 68%, transparent 95%);
  box-shadow: 0 0 18px rgba(62, 191, 250, 0.72);
}

@media (min-width: 901px) {
  .js.gsap-hero .home-hero .hero-coordinates {
    right: clamp(22px, 3vw, 48px);
    bottom: clamp(70px, 8vw, 108px);
    display: flex;
    align-items: center;
    gap: 0.45em;
    padding: 9px 12px;
    border: 1px solid rgba(174, 188, 255, 0.26);
    border-radius: 5px;
    background: rgba(2, 8, 18, 0.64);
    color: rgba(255, 255, 255, 0.64);
    backdrop-filter: blur(8px);
  }

  .hero-coordinates > span {
    min-width: 4ch;
    color: #aebcff;
  }

  .hero-coordinates > [data-hero-state] {
    min-width: 0;
    margin-left: 0.35em;
    color: #fff;
  }
}

.js .home-hero .hero-copy > * {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition:
    opacity 680ms ease,
    transform 680ms cubic-bezier(0.18, 0.78, 0.24, 1);
}

.js.page-ready .home-hero .hero-copy > * {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.js.page-ready .home-hero .hero-copy > :nth-child(1) { transition-delay: 80ms; }
.js.page-ready .home-hero .hero-copy > :nth-child(2) { transition-delay: 170ms; }
.js.page-ready .home-hero .hero-copy > :nth-child(3) { transition-delay: 240ms; }
.js.page-ready .home-hero .hero-copy > :nth-child(4) { transition-delay: 310ms; }

.js.gsap-hero .home-hero .hero-copy > * {
  opacity: 1;
  transform: none;
  transition: none;
}

.js.gsap-hero .toolpath .path-line,
.js.gsap-hero .toolpath .tool-head {
  animation: none;
}

.js .reveal {
  --reveal-x: 0px;
  --reveal-y: 20px;
  --reveal-rest-y: 0px;
  --reveal-scale: 1;
  --reveal-delay: 0ms;
  opacity: 0;
  transform: translate3d(var(--reveal-x), calc(var(--reveal-y) + var(--reveal-rest-y)), 0) scale(var(--reveal-scale));
  transition:
    opacity 640ms ease var(--reveal-delay),
    transform 700ms cubic-bezier(0.18, 0.78, 0.24, 1) var(--reveal-delay);
}

.js .reveal-left { --reveal-x: -26px; }
.js .reveal-right { --reveal-x: 26px; }

.js .reveal-media {
  --reveal-y: 12px;
  --reveal-scale: 1.018;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, var(--reveal-rest-y), 0) scale(1);
}

.process-step-featured {
  --reveal-rest-y: -18px;
}

.js .reveal .eyebrow::before,
.js .eyebrow.reveal::before {
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 620ms cubic-bezier(0.2, 0.75, 0.25, 1) calc(var(--reveal-delay, 0ms) + 180ms);
}

.js .reveal.is-visible .eyebrow::before,
.js .eyebrow.reveal.is-visible::before {
  transform: scaleX(1);
}

.js .process-step.reveal .process-step-number {
  border-bottom-color: transparent;
  background: linear-gradient(90deg, #6686ff, rgba(255, 255, 255, 0.18)) left bottom / 0 1px no-repeat;
  transition: background-size 720ms ease calc(var(--reveal-delay, 0ms) + 160ms);
}

.js .process-step.reveal.is-visible .process-step-number {
  background-size: 100% 1px;
}

.social-link {
  width: 46px;
  height: 46px;
  min-height: 46px;
  justify-content: center;
  padding: 0;
  border-radius: 50%;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    transform 220ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.social-link svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.site-credit {
  display: inline-block;
  margin-left: 0.25em;
  padding: 0.24em 0.62em;
  border: 1px solid rgba(140, 165, 255, 0.42);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.netlify-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.contact-form[aria-busy="true"] button[type="submit"] {
  cursor: wait;
  opacity: 0.68;
}

@media (hover: hover) and (pointer: fine) {
  .button svg,
  .button > span[aria-hidden="true"] {
    transition: transform 180ms ease;
  }

  .button:hover svg,
  .button:hover > span[aria-hidden="true"] {
    transform: translateX(4px);
  }

  .social-link:hover {
    transform: translateY(-3px) rotate(-3deg);
  }

  .service-item,
  .benefit,
  .mission-card,
  .contact-link {
    transition: border-color 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
  }

  .service-item:hover,
  .benefit:hover,
  .mission-card:hover,
  .contact-link:hover {
    border-color: rgba(102, 134, 255, 0.72);
    box-shadow: inset 3px 0 0 var(--procut-blue);
  }
}

@media (max-width: 900px) {
  .process-step-featured {
    --reveal-rest-y: 0px;
  }
}

@media (max-width: 680px) {
  .scroll-progress {
    height: 2px;
  }

  .js .reveal {
    --reveal-y: 14px;
  }

  .js .reveal-left,
  .js .reveal-right {
    --reveal-x: 0px;
  }

  .site-credit {
    margin-top: 0.45em;
    margin-left: 0;
  }
}

@media (max-width: 900px) {
  .hero-scan {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-progress {
    display: none;
  }

  .js .home-hero .hero-copy > *,
  .js.page-ready .home-hero .hero-copy > * {
    opacity: 1;
    transform: none;
  }

  .hero-scan {
    display: none;
  }

  .js .reveal,
  .js .reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, var(--reveal-rest-y, 0px), 0);
    animation: none;
  }

  .social-link:hover,
  .button:hover svg,
  .button:hover > span[aria-hidden="true"] {
    transform: none;
  }
}

/* Contact page: a fast, image-free technical intake built like a work order. */
.contact-intake-hero {
  position: relative;
  min-height: clamp(620px, calc(100svh - var(--header-height)), 760px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 22%, rgba(61, 99, 243, 0.2), transparent 32%),
    linear-gradient(135deg, #020812 0%, #080f1b 58%, #111a2a 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-intake-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    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: 64px 64px;
  mask-image: linear-gradient(90deg, #000, rgba(0, 0, 0, 0.5) 72%, transparent);
}

.contact-intake-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  gap: clamp(48px, 7vw, 112px);
  align-items: center;
  padding-block: clamp(64px, 8vw, 106px);
}

.contact-intake-copy h1 {
  max-width: 790px;
  margin: 0 0 28px;
  color: #fff;
  font-size: clamp(4.4rem, 7.7vw, 7.6rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.91;
}

.contact-intake-lead {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1.02rem, 1.45vw, 1.18rem);
  line-height: 1.72;
}

.contact-intake-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  align-items: center;
  margin-top: 38px;
}

.contact-intake-actions .button {
  min-width: 190px;
  justify-content: space-between;
}

.contact-call {
  display: grid;
  gap: 1px;
  min-height: 52px;
  align-content: center;
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
  text-decoration: none;
}

.contact-call span {
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--utility);
  font-size: 0.61rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-call strong {
  color: #fff;
  font-size: 0.96rem;
  font-weight: 500;
}

.contact-route {
  position: relative;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid rgba(140, 165, 255, 0.34);
  border-radius: 12px;
  background: rgba(13, 20, 33, 0.86);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.34);
}

.contact-route-meta,
.contact-form-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 0;
  font-family: var(--utility);
  font-size: 0.61rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.contact-route-meta {
  padding-bottom: 22px;
  color: rgba(255, 255, 255, 0.52);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-route-meta span:last-child {
  color: #8ca5ff;
}

.contact-route ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-route li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  padding-block: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-route li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-route-number {
  color: #8ca5ff;
  font-family: var(--utility);
  font-size: 0.68rem;
}

.contact-route li div {
  display: grid;
  gap: 7px;
}

.contact-route li strong {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
}

.contact-route li div > span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
  line-height: 1.55;
}

.contact-workbench {
  position: relative;
  background: #080d16;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-grid-v2 {
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  grid-template-areas: "directory form";
  gap: clamp(24px, 3.8vw, 58px);
  align-items: stretch;
}

.contact-page .contact-panel {
  grid-area: directory;
  top: 132px;
  align-self: start;
  padding: clamp(28px, 3.4vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: #111925;
}

.contact-page .contact-panel h2 {
  max-width: 520px;
  margin-bottom: 16px;
  color: #fff;
  font-size: clamp(2.4rem, 4vw, 4.1rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.contact-panel-heading > p:last-child {
  max-width: 450px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
}

.contact-page .contact-links {
  margin-top: 32px;
  border-top-color: rgba(255, 255, 255, 0.12);
}

.contact-page .contact-link {
  grid-template-columns: 72px minmax(0, 1fr) 18px;
  gap: 16px;
  min-height: 72px;
  align-items: center;
  padding-block: 17px;
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.contact-page .contact-link > span:nth-child(1) {
  color: #8ca5ff;
  font-family: var(--utility);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-page .contact-link > span:nth-child(2) {
  min-width: 0;
  overflow-wrap: anywhere;
  color: #fff;
  font-size: 0.93rem;
  font-weight: 500;
}

.contact-page .contact-link > span:nth-child(3) {
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--utility);
  font-size: 0.82rem;
  font-weight: 400;
}

.contact-page .contact-form-wrap {
  grid-area: form;
  position: relative;
  scroll-margin-top: 124px;
  padding: clamp(34px, 5vw, 68px);
  padding-bottom: clamp(62px, 6vw, 86px);
  overflow: hidden;
  border: 0;
  border-top: 4px solid var(--procut-blue);
  border-radius: 12px;
  background: #f4f6fa;
  color: #0a101a;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.3);
}

.contact-page .contact-form-wrap::after {
  content: "WVD / PROJECT INTAKE";
  position: absolute;
  right: 24px;
  bottom: 18px;
  color: rgba(10, 16, 26, 0.34);
  font-family: var(--utility);
  font-size: 0.58rem;
  letter-spacing: 0.07em;
}

.contact-form-meta {
  margin-bottom: 34px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(10, 16, 26, 0.15);
  color: #5a6471;
}

.contact-form-meta span:last-child {
  color: #3154da;
}

.contact-page .contact-form-wrap h2 {
  max-width: 630px;
  margin-bottom: 18px;
  color: #0a101a;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.058em;
  line-height: 0.95;
}

.contact-page .contact-form-wrap > .contact-form-intro {
  max-width: 650px;
  margin: 0;
  color: #586270;
  font-size: 1rem;
}

.contact-page .response-note {
  width: fit-content;
  margin: 24px 0 0;
  padding: 9px 12px;
  border: 1px solid rgba(61, 99, 243, 0.22);
  border-radius: 6px;
  background: rgba(61, 99, 243, 0.08);
  color: #2748c6;
  font-size: 0.66rem;
  line-height: 1.5;
}

.contact-page .contact-form {
  gap: 22px;
  margin-top: 34px;
}

.contact-page .field label {
  color: #252e3a;
  font-size: 0.66rem;
  letter-spacing: 0.05em;
}

.contact-page .field input,
.contact-page .field textarea {
  border-color: #cbd2dc;
  border-radius: 6px;
  background: #fff;
  color: #0a101a;
}

.contact-page .field input:hover,
.contact-page .field textarea:hover {
  border-color: #9ea9b8;
}

.contact-page .field input:focus,
.contact-page .field textarea:focus {
  border-color: var(--procut-blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(61, 99, 243, 0.14);
}

.contact-page .field textarea {
  min-height: 210px;
}

.contact-page .form-actions .button {
  --button-bg: #0a101a;
  --button-color: #fff;
  min-width: 224px;
  justify-content: space-between;
}

.contact-page .form-response {
  max-width: 330px;
  color: #4c5664;
  line-height: 1.55;
}

.contact-context-section {
  background: #171e2a;
}

.contact-context {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(44px, 8vw, 120px);
  align-items: start;
}

.contact-context h2 {
  max-width: 520px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.7rem, 4.6vw, 4.8rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.contact-context > p {
  max-width: 820px;
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 1rem;
  line-height: 1.85;
}

@media (hover: hover) and (pointer: fine) {
  .contact-page .contact-link:hover {
    border-color: rgba(140, 165, 255, 0.55);
    background: rgba(140, 165, 255, 0.04);
    box-shadow: none;
  }

  .contact-page .contact-link:hover > span:nth-child(2),
  .contact-page .contact-link:hover > span:nth-child(3) {
    color: #8ca5ff;
  }
}

@media (max-width: 900px) {
  .contact-intake-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .contact-intake-copy {
    max-width: 720px;
  }

  .contact-route {
    max-width: 720px;
  }

  .contact-grid-v2 {
    grid-template-columns: 1fr;
    grid-template-areas:
      "form"
      "directory";
  }

  .contact-page .contact-panel {
    position: static;
  }

  .contact-context {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .contact-intake-hero {
    min-height: 0;
  }

  .contact-intake-grid {
    gap: 36px;
    padding-block: 54px 48px;
  }

  .contact-intake-copy h1 {
    max-width: 350px;
    margin-bottom: 22px;
    font-size: clamp(3.5rem, 15vw, 4.55rem);
    line-height: 0.93;
  }

  .contact-intake-lead {
    font-size: 0.98rem;
    line-height: 1.68;
  }

  .contact-intake-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 30px;
  }

  .contact-intake-actions .button {
    width: 100%;
  }

  .contact-call {
    min-height: 50px;
    padding-left: 16px;
  }

  .contact-route {
    padding: 20px 16px;
  }

  .contact-route-meta {
    padding-inline: 4px;
    padding-bottom: 16px;
  }

  .contact-route ol {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-route li,
  .contact-route li:last-child {
    display: block;
    min-width: 0;
    padding: 16px 10px 4px;
    border: 0;
  }

  .contact-route li + li {
    border-left: 1px solid rgba(255, 255, 255, 0.11);
  }

  .contact-route-number {
    display: block;
    margin-bottom: 8px;
  }

  .contact-route li div {
    display: block;
  }

  .contact-route li strong {
    display: block;
    font-size: 0.79rem;
    line-height: 1.35;
  }

  .contact-route li div > span {
    display: none;
  }

  .contact-workbench {
    padding-block: 64px;
  }

  .contact-page .contact-form-wrap {
    padding: 28px 22px 68px;
  }

  .contact-form-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 28px;
  }

  .contact-page .contact-form-wrap h2 {
    font-size: clamp(2.65rem, 13vw, 3.55rem);
  }

  .contact-page .response-note {
    width: 100%;
  }

  .contact-page .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-page .form-actions .button {
    width: 100%;
  }

  .contact-page .contact-panel {
    padding: 28px 22px;
  }

  .contact-page .contact-link {
    grid-template-columns: 64px minmax(0, 1fr) 16px;
    gap: 12px;
  }

  .contact-page .contact-link > span:nth-child(2) {
    font-size: 0.86rem;
  }

  .contact-context-section {
    padding-block: 72px;
  }

  .contact-context {
    gap: 32px;
  }

  .contact-context > p {
    font-size: 0.95rem;
    line-height: 1.78;
  }
}

/* September content refresh: complete, static photography and one navigation contact. */
.nav-contact { padding: 12px 22px; border-radius: 999px; background: var(--procut-blue); color: #fff; }
.nav-contact:hover { background: #294dde; color: #fff; }
.nav-contact::after { display: none; }
.button { --button-color: #fff; }
.button:hover { color: var(--blueprint-deep); }
.button:focus-visible, .nav-contact:focus-visible { outline: 3px solid var(--signal); outline-offset: 4px; }
.page-hero-media { min-height: 0; align-self: center; overflow: visible; clip-path: none; }
.page-hero-media img { width: 100%; height: auto; max-height: 590px; object-fit: contain; filter: none; }
.page-hero-media::after { display: none; }
.home-hero-static { min-height: 0; }
.home-hero-static .home-hero-grid { grid-template-columns: 1.1fr 1fr; gap: clamp(32px, 6vw, 80px); min-height: 0; padding-block: 56px 64px; align-items: center; }
.home-hero-static .hero-copy { grid-column: auto; padding: 0; }
.home-hero-static .hero-copy h1 { font-size: clamp(3.6rem, 5.7vw, 5.8rem); line-height: .98; margin-bottom: 28px; }
.home-hero-static .hero-subtitle { color: var(--muted); font-size: clamp(1rem, 1.6vw, 1.2rem); line-height: 1.6; margin-bottom: 28px; }
.home-hero-static .hero-visual { position: relative; inset: auto; width: 100%; height: auto; transform: none; }
.home-hero-static .hero-frame { position: relative; inset: auto; overflow: visible; background: transparent; clip-path: none; }
.home-hero-static .hero-frame::after { display: none; }
.home-hero-static .hero-frame img { display: block; width: 100%; height: auto; max-height: 570px; object-fit: contain; object-position: center; filter: none; transform: none; }
.capability-grid { transform: none; margin-bottom: 0; }
.home-process-grid { display: grid; grid-template-columns: 1fr; gap: clamp(32px, 6vw, 88px); align-items: center; }
.home-process-copy .section-title { font-size: clamp(2.6rem, 4.5vw, 4.7rem); line-height: 1.04; }
.home-process-list { padding: 0; margin: 36px 0 0; list-style: none; }
.home-process-list li { padding: 20px 0; border-top: 1px solid var(--line); }
.home-process-list h3 { font-family: var(--body); font-size: 1.15rem; margin: 0 0 8px; font-weight: 500; }
.home-process-list p { color: var(--muted); margin: 0; font-size: .94rem; }
.home-process-photo { margin: 0; }
.home-process-photo img { width: 100%; height: auto; object-fit: contain; }
.service-item { display: block; min-height: 0; padding: 36px; }
.service-item:last-child:nth-child(odd) { grid-column: 1 / -1; }
.service-item p { max-width: 65ch; }
.service-item-featured { padding: 36px; }
.gallery-placeholder { padding-block: clamp(80px, 12vw, 160px); min-height: 60svh; display: grid; align-items: center; text-align: center; }
.gallery-construction-mark { width: 72px; height: 64px; color: var(--signal); margin: 0 auto 28px; }
.gallery-placeholder h1, .gallery-placeholder h3 { font-size: clamp(2.6rem, 5.2vw, 5rem); font-weight: 400; letter-spacing: -.045em; line-height: 1.08; max-width: 850px; margin: 0 auto 24px; }
.gallery-placeholder p { color: var(--muted); margin: 0; }
.contact-intake-hero { padding-block: 64px; }
.contact-intake-copy h1 { font-size: clamp(3rem, 6vw, 5.8rem); }
@media (max-width: 900px) {
  .nav-contact { width: fit-content; margin-top: 12px; padding: 10px 24px; }
}
@media (max-width: 680px) {
  .home-hero-static .home-hero-grid, .home-process-grid { grid-template-columns: 1fr; gap: 36px; }
  .home-hero-static .home-hero-grid { padding-block: 40px; }
  .home-hero-static .hero-copy h1 { font-size: clamp(3.2rem, 12vw, 4.5rem); }
  .home-hero-static .hero-frame img { max-height: none; }
  .home-process-photo { order: 2; }
  .service-item, .service-item-featured { padding: 28px 24px; }
  .page-hero-media, .page-hero-media img { min-height: 0; clip-path: none; }
  .gallery-placeholder { min-height: 55svh; padding-block: 64px; }
}

.contact-intake-grid { grid-template-columns: 1fr; padding-block: 0; }
.contact-intake-hero { min-height: 0; padding-block: 56px; }
.contact-workbench { padding-top: 56px; }
@media (max-width: 900px) {
  .contact-grid-v2 { grid-template-areas: "directory" "form"; }
}
