:root {
  --navy: #0b1422;
  --navy-2: #111f33;
  --ink: #1f242b;
  --muted: #5e6875;
  --soft: #8f98a5;
  --silver: #e3e7ec;
  --silver-2: #f5f7fa;
  --white: #ffffff;
  --line: #d7dde5;
  --line-dark: rgba(255, 255, 255, 0.16);
  --shadow: 0 18px 44px rgba(11, 20, 34, 0.16);
  --radius: 6px;
  font-family: "Poppins", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  letter-spacing: 0;
  overflow-x: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.container {
  width: min(1240px, calc(100% - 64px));
  margin: 0 auto;
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 760ms ease,
    transform 760ms cubic-bezier(0.2, 0.78, 0.18, 1);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(215, 221, 229, 0.82);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 34px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: clamp(178px, 16vw, 232px);
  height: auto;
}

.site-nav {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 34px);
  color: var(--navy);
  background: transparent;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  min-height: 82px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
}

.site-nav a::before {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--navy);
  opacity: 0;
  transform: scaleX(0.45);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

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

.site-nav a:hover::before,
.site-nav a.is-active::before {
  opacity: 1;
  transform: scaleX(1);
}

.site-nav .nav-cta {
  min-height: 42px;
  padding: 0 18px;
  color: var(--white);
  background: var(--navy);
  border: 1px solid var(--navy);
  border-radius: var(--radius);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta.is-active {
  color: var(--white);
  background: var(--navy-2);
}

.site-nav .nav-cta::before {
  display: none;
}

.menu-toggle {
  display: none;
  justify-self: end;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 14px;
  color: var(--white);
  background: var(--navy);
  border: 1px solid var(--navy);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 650;
}

.menu-icon {
  display: grid;
  gap: 5px;
}

.menu-icon i {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
}

.hero {
  position: relative;
  color: var(--white);
  background: var(--navy);
  border-bottom: 1px solid var(--line);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.34;
  pointer-events: none;
  animation: grid-drift 18s linear infinite;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(520px, 1fr);
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
  min-height: calc(88svh - 82px);
  padding: clamp(36px, 5vw, 60px) 0;
}

.hero-copy {
  min-width: 0;
  max-width: 100%;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--soft);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow,
.contact .eyebrow {
  color: rgba(255, 255, 255, 0.66);
}

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

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  color: var(--white);
  font-family: "Montserrat", "Poppins", sans-serif;
  font-size: clamp(3.05rem, 4.8vw, 5.25rem);
  font-weight: 700;
  line-height: 0.93;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  max-width: 780px;
  margin-bottom: 18px;
  color: var(--navy);
  font-family: "Montserrat", "Poppins", sans-serif;
  font-size: clamp(2.1rem, 3.3vw, 3.8rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-family: "Montserrat", "Poppins", sans-serif;
  font-size: 1.07rem;
  font-weight: 650;
  line-height: 1.28;
}

.lead,
.section-intro p,
.production-copy p,
.quality-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.68;
}

.hero .lead {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.12rem;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border: 1px solid var(--navy);
  border-radius: var(--radius);
  font-family: "Montserrat", "Poppins", sans-serif;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.button.primary {
  color: var(--white);
  background: var(--navy);
}

.button.secondary {
  color: var(--navy);
  background: var(--white);
}

.hero .button.primary {
  color: var(--navy);
  background: var(--white);
  border-color: var(--white);
}

.hero .button.secondary {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.34);
}

.hero-media {
  position: relative;
  margin: 0;
  height: min(560px, 62svh);
  min-height: 430px;
  background: var(--silver);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
  transform: scale(1.015);
  animation: image-breathe 12s ease-in-out infinite alternate;
}

.hero-media figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  color: var(--white);
  background: rgba(11, 20, 34, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}

.hero-media strong {
  font-size: 0.92rem;
}

.hero-media span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.86rem;
  text-align: right;
}

.spec-strip {
  background: linear-gradient(180deg, var(--white), var(--silver-2));
  border-bottom: 1px solid var(--line);
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 42px);
  padding: 34px 0;
}

.spec-grid div {
  position: relative;
  min-height: 142px;
  padding: 0 0 0 18px;
}

.spec-grid span {
  display: block;
  margin-bottom: 20px;
  color: var(--soft);
  font-size: 0.76rem;
  font-weight: 650;
}

.spec-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.35;
}

.spec-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.spec-grid div::before {
  position: absolute;
  top: 2px;
  bottom: 4px;
  left: 0;
  width: 1px;
  content: "";
  background: linear-gradient(180deg, var(--navy), rgba(11, 20, 34, 0));
}

.section {
  padding: clamp(76px, 8vw, 124px) 0;
  border-bottom: 1px solid var(--line);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(380px, 0.55fr) minmax(0, 1fr);
  gap: clamp(38px, 5vw, 72px);
  align-items: start;
}

.section-intro {
  min-width: 0;
}

.capabilities .section-grid {
  display: block;
}

.capabilities .section-intro {
  margin-bottom: clamp(32px, 4vw, 52px);
}

.capabilities .section-intro h2 {
  max-width: none;
  font-size: clamp(1.55rem, 1.85vw, 2rem);
  line-height: 1.18;
  white-space: nowrap;
}

.capability-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.capability-grid article {
  display: grid;
  grid-template-columns: 58px minmax(150px, 0.35fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.reveal-ready .capability-grid article[data-stagger] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 640ms ease,
    transform 640ms cubic-bezier(0.2, 0.78, 0.18, 1);
}

.reveal-ready .capabilities.is-visible .capability-grid article[data-stagger] {
  opacity: 1;
  transform: translateY(0);
}

.reveal-ready .capabilities.is-visible .capability-grid article[data-stagger]:nth-child(1) {
  transition-delay: 80ms;
}

.reveal-ready .capabilities.is-visible .capability-grid article[data-stagger]:nth-child(2) {
  transition-delay: 180ms;
}

.reveal-ready .capabilities.is-visible .capability-grid article[data-stagger]:nth-child(3) {
  transition-delay: 280ms;
}

.reveal-ready .capabilities.is-visible .capability-grid article[data-stagger]:nth-child(4) {
  transition-delay: 380ms;
}

.capability-grid svg,
.check-list svg {
  fill: none;
  stroke: var(--navy);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.capability-grid svg {
  width: 46px;
  height: 46px;
  padding: 8px;
  color: var(--navy);
  background: var(--silver-2);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.capability-grid p,
.data-list dd,
.check-list li {
  color: var(--muted);
  line-height: 1.58;
}

.production {
  background: var(--silver-2);
}

.media-showcase {
  padding: clamp(66px, 7vw, 108px) 0;
  background: var(--navy);
  overflow: hidden;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 250px 250px;
  gap: 16px;
}

.showcase-grid figure {
  margin: 0;
  min-height: 0;
  background: var(--navy-2);
  border: 1px solid rgba(255, 255, 255, 0.13);
  overflow: hidden;
}

.showcase-grid .showcase-wide {
  grid-row: 1 / 3;
}

.showcase-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04);
  transition:
    transform 800ms cubic-bezier(0.2, 0.78, 0.18, 1),
    filter 800ms ease;
}

.showcase-grid figure:hover img {
  filter: saturate(0.98) contrast(1.08);
  transform: scale(1.035);
}

.production-grid,
.quality-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.86fr);
  gap: clamp(42px, 5vw, 74px);
  align-items: center;
}

.production figure,
.quality figure {
  margin: 0;
  height: 540px;
  background: var(--silver);
  border: 1px solid var(--line);
  box-shadow: 0 16px 36px rgba(11, 20, 34, 0.08);
  overflow: hidden;
}

.production figure img,
.quality figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.03);
}

.data-list {
  margin: 36px 0 0;
  border-top: 1px solid var(--line);
}

.data-list div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.data-list dt {
  color: var(--navy);
  font-weight: 650;
}

.data-list dd {
  margin: 0;
}

.quality-grid {
  grid-template-columns: minmax(390px, 0.86fr) minmax(0, 1fr);
}

.quality figure {
  order: 2;
}

.quality-copy {
  order: 1;
}

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

.check-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 13px;
  align-items: start;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.check-list svg {
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

.services {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, #0b1422 0%, #111a29 100%);
  background-size: 84px 84px, 84px 84px, auto;
}

.services::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
}

.services-shell {
  display: grid;
  gap: clamp(34px, 5vw, 68px);
}

.services-top {
  padding-bottom: clamp(28px, 4vw, 44px);
}

.services-manifest h2 {
  max-width: 760px;
  margin-bottom: 20px;
  color: var(--white);
  font-size: clamp(1.9rem, 3.05vw, 3.35rem);
  font-weight: 600;
  line-height: 1.06;
}

.services-manifest p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.72;
}

.services .eyebrow {
  color: rgba(255, 255, 255, 0.56);
}

.services-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.service-lane {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 560px;
  padding: clamp(24px, 3vw, 38px);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  transition:
    background 260ms ease,
    transform 260ms ease;
}

.service-lane:last-child {
  border-right: 0;
}

.service-lane::before {
  position: absolute;
  top: 0;
  left: clamp(24px, 3vw, 38px);
  width: 42px;
  height: 2px;
  content: "";
  background: var(--white);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 360ms ease;
}

.service-lane:hover {
  background: rgba(255, 255, 255, 0.045);
}

.service-lane:hover::before {
  transform: scaleX(1);
}

.lane-head {
  display: grid;
  gap: 16px;
  padding-bottom: clamp(26px, 4vw, 46px);
}

.lane-head > span {
  color: rgba(255, 255, 255, 0.42);
  font-family: "Montserrat", "Poppins", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.lane-head h3 {
  margin: 0;
  color: var(--white);
  font-family: "Montserrat", "Poppins", sans-serif;
  font-size: clamp(1.52rem, 2.2vw, 2.2rem);
  font-weight: 600;
  line-height: 1.04;
}

.lane-head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.94rem;
  line-height: 1.62;
}

.service-lane ol {
  display: grid;
  align-content: end;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-lane li {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 8px 16px;
  align-items: baseline;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.service-lane li span {
  color: rgba(255, 255, 255, 0.42);
  font-family: "Montserrat", "Poppins", sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
}

.service-lane li strong {
  color: rgba(255, 255, 255, 0.95);
  font-family: "Montserrat", "Poppins", sans-serif;
  font-size: clamp(1rem, 1.22vw, 1.18rem);
  font-weight: 600;
  line-height: 1.22;
}

.service-lane li small {
  grid-column: 2;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.45;
}

.reveal-ready .service-lane[data-stagger] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.2, 0.78, 0.18, 1);
}

.reveal-ready .services.is-visible .service-lane[data-stagger] {
  opacity: 1;
  transform: translateY(0);
}

.reveal-ready .services.is-visible .service-lane:nth-child(1) {
  transition-delay: 100ms;
}

.reveal-ready .services.is-visible .service-lane:nth-child(2) {
  transition-delay: 190ms;
}

.reveal-ready .services.is-visible .service-lane:nth-child(3) {
  transition-delay: 280ms;
}

.machine-park {
  background: var(--white);
}

.machine-shell {
  display: grid;
  gap: clamp(24px, 3vw, 36px);
}

.machine-intro {
  display: grid;
  max-width: 960px;
}

.machine-intro h2 {
  margin-bottom: 22px;
  color: var(--navy);
  font-size: clamp(2.1rem, 4.5vw, 4.7rem);
  font-weight: 600;
  line-height: 1;
}

.machine-intro p:not(.eyebrow) {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.machine-image {
  width: min(860px, 100%);
  margin: 0 auto;
}

.machine-image img {
  width: 100%;
  height: auto;
}

.reveal-ready .machine-image[data-stagger] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.2, 0.78, 0.18, 1);
}

.reveal-ready .machine-park.is-visible .machine-image[data-stagger] {
  opacity: 1;
  transform: translateY(0);
}

.contact {
  padding: clamp(76px, 8vw, 124px) 0;
  color: var(--white);
  background: var(--navy);
}

.contact h2 {
  color: var(--white);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}

.contact-form .wide {
  grid-column: 1 / -1;
}

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

.contact-form span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
  font-weight: 650;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  outline: none;
}

.contact-form select option {
  color: var(--ink);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--white);
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.site-footer {
  padding: 54px 0 26px;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.35fr) minmax(260px, 1fr) minmax(220px, 0.8fr);
  gap: clamp(34px, 5vw, 78px);
  align-items: start;
}

.site-footer img {
  width: min(220px, 54vw);
  margin-bottom: 18px;
}

.site-footer address {
  font-style: normal;
}

.site-footer span {
  display: block;
  margin-bottom: 14px;
  color: var(--navy);
  font-family: "Montserrat", "Poppins", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.75;
}

.site-footer a {
  color: var(--muted);
  overflow-wrap: break-word;
}

.site-footer a:hover {
  color: var(--navy);
}

.footer-brand p {
  max-width: 430px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  font-size: 0.88rem;
}

@keyframes grid-drift {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 72px 72px, 72px 72px;
  }
}

@keyframes image-breathe {
  from {
    transform: scale(1.015);
  }

  to {
    transform: scale(1.055);
  }
}

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: auto 1fr;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: 82px;
    left: 24px;
    right: 24px;
    z-index: 50;
    display: none;
    justify-self: stretch;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 24px 18px;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(11, 20, 34, 0.12);
  }

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

  .site-nav a {
    min-height: 54px;
    justify-content: space-between;
    padding: 0;
    color: var(--navy);
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
    font-weight: 600;
  }

  .site-nav a::after {
    content: "→";
    color: var(--soft);
  }

  .site-nav a::before {
    display: none;
  }

  .site-nav .nav-cta {
    margin-top: 4px;
    min-height: 50px;
    justify-content: center;
    color: var(--white);
    border-bottom: 0;
  }

  .site-nav .nav-cta::after {
    display: none;
  }

  .hero-grid,
  .section-grid,
  .production-grid,
  .quality-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .quality figure,
  .quality-copy {
    order: initial;
  }

  .spec-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .showcase-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 320px 240px;
  }

  .showcase-grid .showcase-wide {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .capabilities .section-intro h2 {
    white-space: normal;
  }

  .services-top {
    padding-bottom: 34px;
  }

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

  .service-lane {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .service-lane:last-child {
    border-bottom: 0;
  }

  .service-lane ol {
    align-content: start;
  }

}

@media (max-width: 720px) {
  .container {
    width: min(100% - 30px, 1240px);
  }

  .header-inner {
    min-height: 70px;
    gap: 12px;
  }

  .brand img {
    width: 150px;
  }

  .menu-toggle {
    min-height: 42px;
    padding: 0 12px;
    font-size: 0.92rem;
  }

  .hero-copy {
    width: 100%;
    max-width: calc(100vw - 30px);
  }

  .site-nav {
    top: 82px;
    left: 15px;
    right: 15px;
  }

  .hero-grid {
    gap: 24px;
    padding: 36px 0 28px;
  }

  h1 {
    max-width: 9.8ch;
    margin-bottom: 20px;
    font-size: clamp(2.35rem, 9.7vw, 2.9rem);
    line-height: 0.99;
  }

  h2 {
    font-size: clamp(2.05rem, 9.4vw, 2.9rem);
    line-height: 1.06;
  }

  .capabilities .section-intro h2 {
    font-size: clamp(1.55rem, 7vw, 2.1rem);
    white-space: normal;
  }

  .lead,
  .hero .lead,
  .section-intro p,
  .production-copy p,
  .quality-copy p,
  .contact-copy p {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-media,
  .production figure,
  .quality figure {
    min-height: 0;
    height: 330px;
  }

  .hero-media {
    height: 240px;
  }

  .hero-actions {
    margin-top: 26px;
  }

  .hero-media figcaption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: block;
    padding: 14px;
  }

  .hero-media span {
    display: block;
    margin-top: 4px;
    text-align: left;
  }

  .spec-grid,
  .capability-grid,
  .contact-form,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 280px 220px 220px;
    gap: 12px;
  }

  .spec-grid div {
    min-height: auto;
  }

  .capability-grid article {
    grid-template-columns: 52px 1fr;
    gap: 18px;
  }

  .capability-grid article p {
    grid-column: 2;
  }

  .capability-grid svg {
    margin-bottom: 28px;
  }

  .services-top {
    padding-bottom: 28px;
  }

  .services-manifest h2 {
    font-size: clamp(1.72rem, 7.6vw, 2.36rem);
    line-height: 1.08;
  }

  .machine-intro h2 {
    font-size: clamp(2rem, 9.4vw, 3rem);
    line-height: 1.04;
  }

  .service-lane {
    padding: 24px 0;
  }

  .service-lane::before {
    left: 0;
  }

  .lane-head {
    padding-bottom: 22px;
  }

  .lane-head h3 {
    font-size: clamp(1.44rem, 7vw, 1.92rem);
  }

  .service-lane li {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 7px 14px;
    padding: 17px 0;
  }

  .service-lane li small {
    font-size: 0.8rem;
  }

  .data-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-form {
    padding: 18px;
  }

  .contact-form label,
  .contact-form .wide {
    grid-column: 1;
  }

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .capability-grid article[data-stagger] {
    opacity: 1 !important;
    transform: none !important;
  }

  .service-lane[data-stagger] {
    opacity: 1 !important;
    transform: none !important;
  }

  .machine-image[data-stagger] {
    opacity: 1 !important;
    transform: none !important;
  }
}
