:root {
  --ink: #161513;
  --muted: #68645d;
  --paper: #f7f7f2;
  --surface: #ffffff;
  --line: #dfded6;
  --red: #b51f2c;
  --red-dark: #7f141d;
  --gold: #c9a24a;
  --gold-soft: #efe3bd;
  --green: #1f5b45;
  --charcoal: #161513;
  --shadow: 0 24px 70px rgba(22, 21, 19, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

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

.site-header {
  color: #ffffff;
  background: var(--charcoal);
}

.nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: min(1180px, calc(100% - 40px));
  min-height: 74px;
  margin: 0 auto;
}

.nav::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 214px;
  min-width: 190px;
}

.brand img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.24));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.86);
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  width: 42px;
  min-height: 42px;
  padding: 0;
  border: 1px solid rgba(239, 227, 189, 0.7);
  border-radius: 999px;
  color: var(--gold-soft);
  background: rgba(22, 21, 19, 0.96);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.menu-toggle span {
  width: 17px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  border-color: var(--gold-soft);
  background: #0f0e0d;
}

.nav.is-menu-open .menu-toggle span:first-child {
  transform: translateY(6px) rotate(45deg);
}

.nav.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.nav.is-menu-open .menu-toggle span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.nav-cta,
.button,
.lang-link {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.nav-cta {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.38);
}

.lang-link {
  min-width: 42px;
  padding: 0 14px;
  color: var(--charcoal);
  background: var(--gold-soft);
}

.button:hover,
.nav-cta:hover,
.lang-link:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  min-height: 700px;
  margin-top: -74px;
  padding: 154px max(20px, calc((100% - 1180px) / 2)) 66px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(12, 12, 12, 0.92) 0%, rgba(12, 12, 12, 0.78) 45%, rgba(12, 12, 12, 0.16) 100%),
    linear-gradient(180deg, rgba(12, 12, 12, 0) 68%, rgba(12, 12, 12, 0.58) 100%),
    url("https://img1.wsimg.com/isteam/ip/96cf7411-9e24-41bb-b641-0ec076a595d4/Mach-5-Floor-Model-3ft__31272.1616752555.jpg/:/cr=t:0%25,l:0%25,w:100%25,h:100%25/rs=w:1160,h:1160") right center / contain no-repeat,
    var(--charcoal);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 10px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--green), var(--red));
  z-index: -1;
}

.hero-copy {
  width: min(690px, 100%);
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.site-header .eyebrow {
  color: var(--gold);
}

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

h1,
h2 {
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.05;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: 60px;
}

h2 {
  margin-bottom: 18px;
  font-size: 40px;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.25;
}

.hero-lede {
  max-width: 660px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
}

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

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 14px 36px rgba(181, 31, 44, 0.28);
  -webkit-tap-highlight-color: transparent;
}

.button-primary:hover,
.button-primary:active,
.button-primary:focus-visible {
  background: var(--red-dark);
}

.button-secondary {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.72);
}

.button-dark {
  color: #ffffff;
  background: var(--charcoal);
}

.button-dark:hover {
  background: #2b2925;
}

.quote-band .button-dark {
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
}

.quote-band .button-dark:hover {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.12);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: min(690px, 100%);
  margin-top: 74px;
}

.hero-proof span {
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 800;
}

.hero-machine {
  display: none;
}

@media (prefers-reduced-motion: no-preference) {
  .js-reveal .reveal-item {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 560ms ease, transform 560ms ease;
    will-change: opacity, transform;
  }

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

.trust-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  transform: translateY(-28px);
  background: var(--line);
  box-shadow: var(--shadow);
}

.trust-bar div {
  min-height: 132px;
  padding: 28px;
  background: var(--surface);
  min-width: 0;
}

.trust-bar strong {
  display: block;
  margin-bottom: 10px;
  color: var(--charcoal);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 27px;
  line-height: 1.1;
}

.trust-bar span {
  color: var(--muted);
  font-weight: 600;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 88px 0;
}

.intro {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 76px;
  align-items: start;
  padding-top: 54px;
}

.intro p:last-child,
.showcase-copy p,
.contact-copy p,
.client-grid p {
  color: var(--muted);
  font-size: 18px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading > p:last-child {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
}

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

.service-card {
  min-height: 300px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 20px 50px rgba(22, 21, 19, 0.06);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.service-card:nth-child(2) .service-icon {
  background: var(--red);
}

.service-card:nth-child(3) .service-icon {
  background: var(--green);
}

.service-card:nth-child(4) .service-icon {
  color: var(--ink);
  background: var(--gold);
}

.service-card:nth-child(5) .service-icon {
  background: var(--red-dark);
}

.service-card p,
.equipment p {
  color: var(--muted);
}

.process {
  padding-top: 20px;
}

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

.process-grid article {
  position: relative;
  min-height: 280px;
  padding: 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 20px 50px rgba(22, 21, 19, 0.06);
}

.process-grid article::after {
  content: "";
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--red), var(--gold));
}

.process-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 34px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--charcoal);
  font-size: 13px;
  font-weight: 900;
}

.process-grid h3 {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 23px;
}

.process-grid p {
  color: var(--muted);
}

.showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: 48px;
  align-items: center;
  padding: 104px max(20px, calc((100% - 1180px) / 2));
  background:
    linear-gradient(135deg, rgba(22, 21, 19, 0.96), rgba(22, 21, 19, 0.9)),
    var(--charcoal);
  color: #ffffff;
}

.showcase-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.28);
}

.showcase-copy h2 {
  max-width: 520px;
}

.showcase-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.check-list {
  display: grid;
  gap: 11px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: var(--gold);
}

.clientele {
  padding-bottom: 96px;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.client-grid article {
  min-height: 188px;
  padding: 28px;
  background: var(--surface);
}

.client-grid span {
  display: block;
  margin-bottom: 16px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.client-grid p {
  margin-bottom: 0;
}

.client-secondary {
  background: #fbf6e5;
}

.client-secondary span {
  color: var(--red-dark);
}

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

.equipment-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 20px 50px rgba(22, 21, 19, 0.06);
}

.equipment-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: linear-gradient(180deg, #ffffff, #efeee7);
}

.equipment-grid article div {
  padding: 24px;
}

.models {
  padding-top: 24px;
}

.authorized-note {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) 1fr;
  gap: 20px;
  align-items: center;
  margin: -16px 0 28px;
  padding: 18px 22px;
  border: 1px solid rgba(184, 30, 45, 0.24);
  border-left: 4px solid var(--red);
  border-radius: 8px;
  background: #fffaf0;
}

.authorized-note strong {
  color: var(--red-dark);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.25;
  text-transform: uppercase;
}

.authorized-note p {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
}

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

.model-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 20px 50px rgba(22, 21, 19, 0.06);
}

.model-card a {
  display: grid;
  height: 100%;
}

.model-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 18px;
  background: linear-gradient(180deg, #ffffff, #f1f0e9);
}

.model-card span {
  display: inline-flex;
  width: max-content;
  margin: 22px 22px 12px;
  padding: 6px 10px;
  border: 1px solid var(--gold-soft);
  border-radius: 999px;
  color: var(--red-dark);
  background: #fbf6e5;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.model-card h3 {
  margin: 0 22px 10px;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 22px;
}

.model-card p {
  margin: 0 22px 24px;
  color: var(--muted);
}

.model-card:hover h3 {
  color: var(--red);
}

.model-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 22px;
  padding: 24px 28px;
  border: 1px solid var(--gold-soft);
  border-radius: 8px;
  background: #fbf6e5;
}

.model-note strong {
  color: var(--red-dark);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 22px;
  line-height: 1.2;
}

.model-note p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
}

.brands {
  padding: 82px max(20px, calc((100% - 1180px) / 2));
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(127, 20, 29, 0.96), rgba(22, 21, 19, 0.95)),
    var(--red-dark);
}

.brands .eyebrow {
  color: var(--gold);
}

.brand-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
}

.brand-strip a {
  display: grid;
  background: #ffffff;
  transition: transform 180ms ease, filter 180ms ease;
}

.brand-strip a:hover,
.brand-strip a:focus-visible {
  z-index: 1;
  filter: brightness(0.98);
  transform: translateY(-2px);
}

.brand-strip a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: -3px;
}

.brand-strip img {
  width: 100%;
  height: 136px;
  padding: 34px;
  object-fit: contain;
}

.faq {
  padding-bottom: 56px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 16px 44px rgba(22, 21, 19, 0.05);
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 26px;
  color: var(--ink);
  font-weight: 800;
}

.faq-list summary::marker {
  color: var(--red);
}

.faq-list p {
  margin: 0;
  padding: 0 26px 24px;
  color: var(--muted);
}

.quote-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
  padding: 64px max(20px, calc((100% - 1180px) / 2));
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(22, 21, 19, 0.94), rgba(127, 20, 29, 0.9)),
    var(--charcoal);
}

.quote-band .eyebrow {
  color: var(--gold);
}

.quote-band h2 {
  max-width: 620px;
  margin-bottom: 14px;
}

.quote-band p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.quote-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 28px 60px;
  align-items: start;
  padding: 104px max(20px, calc((100% - 1180px) / 2));
}

.contact-copy {
  grid-column: 1;
}

.contact-panel {
  grid-column: 1;
  display: grid;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.contact-form {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

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

.form-row {
  display: grid;
  gap: 7px;
}

.form-row label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fbfaf6;
  font: inherit;
}

.form-row textarea {
  min-height: 150px;
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 2px solid rgba(181, 31, 44, 0.22);
  border-color: var(--red);
}

.contact-form .button {
  border: 0;
  cursor: pointer;
}

.submit-control {
  display: inline-grid;
  justify-self: start;
}

.submit-status {
  border: 0;
  cursor: wait;
  text-align: center;
}

.submit-status[hidden] {
  display: none !important;
}

.submit-status,
.contact-form.is-submitting .button,
.contact-form .button:disabled,
.contact-form .button.is-submitting,
.contact-form .button[aria-disabled="true"] {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background-color: var(--red-dark) !important;
  background-image: linear-gradient(135deg, var(--red), var(--red-dark)) !important;
  box-shadow: 0 14px 36px rgba(181, 31, 44, 0.28) !important;
  cursor: wait;
  opacity: 1;
  pointer-events: none;
  transform: none;
}

.form-note {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.form-note a,
.site-footer a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-panel a,
.contact-panel address {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 24px;
  border-bottom: 1px solid var(--line);
  font-style: normal;
}

.contact-panel address {
  border-bottom: 0;
}

.contact-panel span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-panel strong {
  font-size: 20px;
  line-height: 1.35;
}

.contact-panel a:hover strong {
  color: var(--red);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 28px max(20px, calc((100% - 1180px) / 2));
  color: rgba(255, 255, 255, 0.74);
  background: var(--charcoal);
}

.footer-logo {
  width: 170px;
  height: auto;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.24));
}

.site-footer p {
  margin: 0;
}

.response-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(22, 21, 19, 0.96), rgba(22, 21, 19, 0.88)),
    var(--charcoal);
}

.response-card {
  width: min(620px, 100%);
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.response-card img {
  width: 190px;
  margin-bottom: 34px;
}

.response-card h1 {
  margin-bottom: 16px;
  font-size: 42px;
}

.response-card p {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.legal-header {
  color: #ffffff;
  background: var(--charcoal);
}

.legal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(1180px, calc(100% - 40px));
  min-height: 96px;
  margin: 0 auto;
}

.legal-nav img {
  width: 210px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.legal-main {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 92px;
}

.legal-main h1 {
  margin-bottom: 16px;
  font-size: 50px;
}

.legal-updated {
  margin-bottom: 38px;
  color: var(--muted);
  font-weight: 700;
}

.legal-main section {
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.legal-main h2 {
  font-size: 30px;
}

.legal-main ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.legal-main li {
  margin-bottom: 10px;
}

.legal-main p {
  color: var(--muted);
}

.legal-main a {
  color: var(--red);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 940px) {
  .nav {
    min-height: 70px;
  }

  .brand {
    width: 194px;
  }

  .nav-links {
    display: none;
  }

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

  .mobile-menu:not([hidden]) {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    z-index: 30;
    display: grid;
    width: min(360px, calc(100vw - 40px));
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(22, 21, 19, 0.98);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
  }

  .mobile-menu a {
    padding: 13px 14px;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    font-weight: 800;
  }

  .mobile-menu a:hover,
  .mobile-menu a:focus-visible {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
  }

  .mobile-menu .mobile-menu-cta {
    justify-content: center;
    margin-top: 6px;
    color: #ffffff;
    text-align: center;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
  }

  .hero {
    min-height: 590px;
    margin-top: -70px;
    padding-top: 128px;
    background:
      linear-gradient(90deg, rgba(12, 12, 12, 0.9) 0%, rgba(12, 12, 12, 0.78) 58%, rgba(12, 12, 12, 0.34) 100%),
      url("https://img1.wsimg.com/isteam/ip/96cf7411-9e24-41bb-b641-0ec076a595d4/Mach-5-Floor-Model-3ft__31272.1616752555.jpg/:/cr=t:0%25,l:0%25,w:100%25,h:100%25/rs=w:1160,h:1160") right bottom / 58% auto no-repeat,
      #171717;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 32px;
  }

  .trust-bar,
  .service-grid,
  .client-grid,
  .model-grid,
  .process-grid,
  .equipment-grid,
  .brand-strip,
  .intro,
  .showcase,
  .quote-band,
  .contact {
    grid-template-columns: 1fr;
  }

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

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

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

  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .showcase,
  .quote-band,
  .contact,
  .model-note {
    gap: 32px;
  }

  .contact-copy,
  .contact-panel,
  .contact-form {
    grid-column: auto;
    grid-row: auto;
  }

  .quote-actions {
    justify-content: flex-start;
  }

  .model-note {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .nav {
    display: flex;
    width: 100%;
    min-height: 64px;
    margin-right: 0;
    margin-left: 0;
    padding-right: 14px;
    padding-left: 14px;
    gap: 8px;
    overflow: visible;
  }

  .brand {
    width: clamp(104px, 32vw, 124px);
    min-width: 0;
  }

  .nav-actions {
    position: fixed;
    top: 12px;
    right: 14px;
    z-index: 20;
    transform: none;
    gap: 6px;
    min-width: 0;
    flex-shrink: 0;
  }

  .nav-cta {
    display: none;
  }

  .lang-link {
    position: static;
    display: inline-flex;
    min-width: 34px;
    min-height: 38px;
    padding: 0 9px;
    font-size: 12px;
  }

  .menu-toggle {
    width: 38px;
    min-height: 38px;
  }

  .mobile-menu:not([hidden]) {
    position: fixed;
    top: 62px;
    right: 14px;
    left: 14px;
    width: auto;
  }

  .hero {
    min-height: auto;
    margin-top: -64px;
    padding-top: 102px;
    padding-right: 14px;
    padding-bottom: 28px;
    padding-left: 14px;
    background:
      linear-gradient(180deg, rgba(12, 12, 12, 0.96) 0%, rgba(12, 12, 12, 0.9) 62%, rgba(12, 12, 12, 0.78) 100%),
      #171717;
  }

  .hero-copy,
  .hero-actions,
  .hero-proof,
  .site-header .eyebrow {
    width: min(380px, calc(100% - 44px));
    max-width: calc(100vw - 44px);
  }

  .site-header .eyebrow {
    max-width: 100%;
    font-size: 11px;
    letter-spacing: 0.08em;
    overflow-wrap: anywhere;
  }

  h1 {
    margin-bottom: 20px;
    font-size: clamp(30px, 7.5vw, 34px);
    line-height: 1.08;
  }

  h2 {
    font-size: 26px;
    line-height: 1.08;
  }

  .hero-lede,
  .intro p:last-child,
  .showcase-copy p,
  .contact-copy p,
  .section-heading > p:last-child {
    font-size: 16px;
  }

  .hero-lede {
    margin-bottom: 24px;
    max-width: min(380px, calc(100vw - 44px));
  }

  .hero-actions {
    gap: 10px;
  }

  .button {
    width: 100%;
    max-width: 100%;
    min-height: 46px;
    padding-right: 18px;
    padding-left: 18px;
    text-align: center;
    white-space: normal;
  }

  .submit-control {
    width: 100%;
  }

  .trust-bar,
  .section {
    width: min(380px, calc(100% - 44px));
  }

  .hero-proof {
    margin-top: 30px;
    gap: 8px;
  }

  .hero-proof span {
    max-width: 100%;
    padding: 6px 10px;
    font-size: 12px;
    overflow-wrap: break-word;
  }

  .hero-machine {
    display: block;
    width: min(380px, calc(100% - 44px));
    aspect-ratio: 16 / 10;
    margin: 20px auto -2px;
    background: #ffffff url("https://img1.wsimg.com/isteam/ip/96cf7411-9e24-41bb-b641-0ec076a595d4/Mach-5-Floor-Model-3ft__31272.1616752555.jpg/:/cr=t:0%25,l:0%25,w:100%25,h:100%25/rs=w:1160,h:1160") center / contain no-repeat;
  }

  .trust-bar {
    transform: translateY(-12px);
  }

  .trust-bar div {
    min-height: auto;
    padding: 16px 18px;
    overflow: hidden;
  }

  .trust-bar span {
    display: block;
    overflow-wrap: normal;
  }

  .section {
    padding: 48px 0;
  }

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

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

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

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

  .service-card {
    min-height: 0;
    padding: 24px;
  }

  .process-grid article,
  .client-grid article {
    min-height: 0;
    padding: 24px;
  }

  .equipment-card div,
  .authorized-note,
  .model-note,
  .faq-list details {
    padding: 20px;
  }

  .authorized-note {
    grid-template-columns: 1fr;
    gap: 8px;
    margin: -6px 0 22px;
  }

  .contact-form {
    padding: 22px;
  }

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

  .showcase,
  .brands,
  .quote-band,
  .contact {
    padding-right: 14px;
    padding-left: 14px;
  }

  .brand-strip img {
    height: 118px;
    padding: 26px;
  }

  .legal-nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }

  .legal-nav img {
    width: 158px;
  }

  .legal-main {
    padding: 52px 0 70px;
  }

  .legal-main h1 {
    font-size: 34px;
  }

  .legal-main h2 {
    font-size: 26px;
  }

  .response-card {
    padding: 28px;
  }

  .response-card h1 {
    font-size: 32px;
  }
}
