:root {
  --ink: #171815;
  --graphite: #23241f;
  --field: #d9d5c8;
  --paper: #efeadc;
  --panel: #f8f3e5;
  --line: rgba(23, 24, 21, 0.18);
  --line-dark: rgba(248, 243, 229, 0.18);
  --muted: #6a685e;
  --signal: #b3412f;
  --signal-2: #366d5d;
  --signal-3: #c3a75d;
  --white: #fffaf0;
  --shadow: 0 20px 60px rgba(23, 24, 21, 0.14);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(23, 24, 21, 0.045) 1px, transparent 1px) 0 0 / 56px 56px,
    linear-gradient(0deg, rgba(23, 24, 21, 0.035) 1px, transparent 1px) 0 0 / 56px 56px,
    var(--field);
  line-height: 1.56;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.site-shell {
  min-height: 100vh;
}

.topbar {
  position: fixed;
  inset: 0 auto 0 0;
  width: 230px;
  z-index: 60;
  background: var(--ink);
  color: var(--white);
  border-right: 1px solid rgba(255, 250, 240, 0.16);
}

.nav {
  min-height: 100vh;
  padding: 28px 22px 24px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 100%;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line-dark);
}

.brand img {
  width: 156px;
  height: auto;
  filter: grayscale(1) contrast(1.08) brightness(1.55);
}

.nav-links {
  display: grid;
  align-content: start;
  gap: 0;
  counter-reset: nav;
}

.nav-links a {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  min-height: 54px;
  border-bottom: 1px solid rgba(255, 250, 240, 0.12);
  color: rgba(255, 250, 240, 0.72);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a::before {
  counter-increment: nav;
  content: "0" counter(nav);
  color: rgba(255, 250, 240, 0.36);
  font-size: 11px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 2px;
  background: var(--signal);
  transition: width 0.22s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-actions {
  display: grid;
  gap: 12px;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 250, 240, 0.2);
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 13px 18px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--signal);
  border-color: var(--signal);
}

.btn.secondary {
  background: transparent;
  color: var(--ink);
  border-color: rgba(23, 24, 21, 0.24);
}

.btn.secondary:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.btn.industrial {
  background: var(--signal);
  color: var(--white);
  border-color: var(--signal);
}

.btn.industrial:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.btn.small {
  min-height: 42px;
  padding: 10px 12px;
  font-size: 11px;
}

main,
.footer {
  margin-left: 230px;
}

.hero {
  position: relative;
  min-height: 100vh;
  color: var(--ink);
  overflow: hidden;
  background: var(--paper);
}

.hero.compact {
  min-height: 560px;
}

.hero .hero-media {
  position: absolute;
  inset: 0 0 0 55%;
  background: var(--ink);
}

.hero .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05) brightness(0.94);
}

.hero .hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(239, 234, 220, 1) 0%, rgba(239, 234, 220, 0.18) 38%, rgba(23, 24, 21, 0.22) 100%),
    linear-gradient(0deg, rgba(23, 24, 21, 0.28), transparent 52%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23, 24, 21, 0.06) 1px, transparent 1px) 0 0 / 74px 74px,
    linear-gradient(0deg, rgba(23, 24, 21, 0.05) 1px, transparent 1px) 0 0 / 74px 74px;
  pointer-events: none;
}

.hero::after {
  content: "JINYE / STRIP PROCESSING SYSTEMS";
  position: absolute;
  right: 28px;
  bottom: 24px;
  color: rgba(23, 24, 21, 0.28);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  writing-mode: vertical-rl;
}

.hero-grid {
  position: relative;
  width: min(1180px, calc(100% - 64px));
  min-height: inherit;
  margin: 0 auto;
  padding: 48px 0;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(300px, 0.28fr);
  grid-template-rows: 1fr auto;
  gap: 28px;
  align-items: end;
}

.hero-copy {
  max-width: 820px;
  align-self: center;
}

.eyebrow {
  display: inline-grid;
  grid-auto-flow: column;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--signal);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.eyebrow::before {
  content: "";
  width: 54px;
  height: 2px;
  background: currentColor;
}

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

h1 {
  margin-bottom: 24px;
  max-width: 920px;
  font-size: clamp(40px, 3.9vw, 62px);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero:not(.compact) h1 {
  max-width: 560px;
  font-size: clamp(36px, 3vw, 50px);
  line-height: 0.95;
}

.compact h1 {
  font-size: clamp(44px, 6vw, 82px);
}

.hero-copy p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 28px;
  color: var(--graphite);
  font-size: clamp(17px, 1.8vw, 21px);
  font-weight: 650;
}

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

.hero-panel {
  align-self: center;
  padding: 26px;
  background: rgba(248, 243, 229, 0.88);
  border: 1px solid var(--line);
  border-top: 6px solid var(--signal-2);
  box-shadow: var(--shadow);
}

.hero-panel::before {
  content: "ENGINEERING NOTE";
  display: block;
  margin-bottom: 28px;
  color: var(--signal-2);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.16em;
}

.hero-panel strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.08;
}

.hero-panel p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

.metric-strip {
  background: var(--ink);
  color: var(--white);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.metric-strip .inner {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metric {
  padding: 28px 24px;
  border-right: 1px solid var(--line-dark);
}

.metric:first-child {
  border-left: 1px solid var(--line-dark);
}

.metric b {
  display: block;
  margin-bottom: 5px;
  color: var(--signal-3);
  font-size: clamp(30px, 3.8vw, 50px);
  line-height: 0.95;
}

.metric span {
  color: rgba(255, 250, 240, 0.68);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  padding: 92px 0;
}

.section.tight {
  padding: 62px 0;
}

.section.paper {
  background: rgba(248, 243, 229, 0.82);
}

.section.dark {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.045) 1px, transparent 1px) 0 0 / 56px 56px,
    linear-gradient(0deg, rgba(255, 250, 240, 0.035) 1px, transparent 1px) 0 0 / 56px 56px,
    var(--graphite);
}

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

.section-head {
  max-width: 860px;
  margin-bottom: 42px;
}

.section-head.wide {
  max-width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(280px, 0.32fr);
  gap: 42px;
  align-items: end;
}

.section-head h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.96;
  text-transform: uppercase;
}

.section-head p,
.muted {
  color: var(--muted);
  font-weight: 650;
}

.dark .section-head p,
.dark .muted,
.dark .text-list li {
  color: rgba(255, 250, 240, 0.68);
}

.grid {
  display: grid;
  gap: 0;
}

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

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

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

.equipment-grid {
  align-items: stretch;
}

.product-card,
.info-card,
.blog-card,
.contact-card {
  position: relative;
  background: rgba(248, 243, 229, 0.78);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.24s ease, background 0.24s ease, border-color 0.24s ease;
}

.product-card {
  display: grid;
  grid-template-rows: 240px 1fr;
}

.equipment-grid .product-card {
  grid-template-rows: 190px 1fr;
}

.product-card:hover,
.info-card:hover,
.blog-card:hover,
.contact-card:hover {
  transform: translateY(-5px);
  background: var(--panel);
  border-color: rgba(179, 65, 47, 0.5);
  z-index: 2;
}

.dark .product-card,
.dark .info-card,
.dark .blog-card,
.dark .contact-card {
  background: rgba(255, 250, 240, 0.055);
  border-color: var(--line-dark);
}

.dark .product-card:hover,
.dark .info-card:hover,
.dark .blog-card:hover,
.dark .contact-card:hover {
  background: rgba(255, 250, 240, 0.1);
}

.product-card img,
.blog-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.product-card:hover img,
.blog-card:hover img {
  transform: scale(1.04);
  filter: saturate(1.08) contrast(1.06);
}

.product-card .content,
.blog-card .content,
.info-card,
.contact-card {
  padding: 25px;
}

.product-card .content {
  display: grid;
  grid-template-rows: auto minmax(92px, auto) minmax(42px, auto) auto;
  align-content: start;
}

.equipment-grid .product-card .content {
  grid-template-rows: 82px minmax(154px, auto) minmax(84px, auto) 44px;
  padding: 22px;
}

.equipment-grid .product-card h3 {
  align-self: start;
  font-size: 21px;
  line-height: 1.05;
  margin-bottom: 0;
}

.equipment-grid .product-card p:not(.card-action) {
  align-self: start;
}

.product-card h3,
.blog-card h2,
.blog-card h3,
.info-card h3,
.contact-card h3 {
  margin-bottom: 11px;
  font-size: 23px;
  line-height: 1.12;
  text-transform: uppercase;
}

.product-card p,
.blog-card p,
.info-card p,
.contact-card p {
  color: var(--muted);
  font-weight: 650;
}

.dark .product-card p,
.dark .blog-card p,
.dark .info-card p,
.dark .contact-card p {
  color: rgba(255, 250, 240, 0.68);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
  align-self: start;
}

.card-action {
  margin: 18px 0 0;
  align-self: end;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border: 1px solid rgba(54, 109, 93, 0.35);
  background: rgba(54, 109, 93, 0.08);
  color: var(--signal-2);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.dark .tag {
  border-color: rgba(195, 167, 93, 0.42);
  background: rgba(195, 167, 93, 0.1);
  color: #e6d28e;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 0;
  align-items: stretch;
  border: 1px solid var(--line);
  background: rgba(248, 243, 229, 0.6);
}

.feature-band > div:first-child {
  padding: 44px;
}

.machine-window {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  background: var(--ink);
}

.machine-window img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
}

.machine-window::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 250, 240, 0.3);
  pointer-events: none;
}

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

.capability {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.capability .num {
  color: var(--signal);
  font-weight: 950;
  letter-spacing: 0.08em;
}

.capability h3 {
  margin-bottom: 4px;
  font-size: 20px;
  text-transform: uppercase;
}

.capability p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 650;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line-dark);
  counter-reset: step;
}

.process-step {
  position: relative;
  min-height: 220px;
  padding: 28px;
  border-right: 1px solid var(--line-dark);
  background: rgba(255, 250, 240, 0.04);
}

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

.process-step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--signal-3);
  font-weight: 950;
}

.process-step h3 {
  margin-bottom: 8px;
  text-transform: uppercase;
}

.process-step p {
  margin-bottom: 0;
  color: rgba(255, 250, 240, 0.68);
}

.spec-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

th,
td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--ink);
  color: var(--signal-3);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

td {
  color: var(--steel);
  font-weight: 650;
}

tr:last-child td {
  border-bottom: 0;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.55fr);
  gap: 32px;
  align-items: start;
}

.contact-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 30px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  gap: 14px;
}

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

label {
  display: grid;
  gap: 7px;
  color: var(--steel);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(23, 24, 21, 0.22);
  background: #fff;
  color: var(--ink);
  padding: 13px;
  outline: none;
}

textarea {
  min-height: 136px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--signal);
  box-shadow: 0 0 0 3px rgba(179, 65, 47, 0.16);
}

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

.text-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-weight: 650;
}

.text-list li::before {
  content: "";
  position: absolute;
  top: 0.64em;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--signal);
}

.product-hero-note {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--line);
  background: var(--ink);
}

.note-cell {
  padding: 18px;
  border-bottom: 1px solid var(--line-dark);
  color: var(--white);
}

.note-cell:last-child {
  border-bottom: 0;
}

.note-cell b {
  display: block;
  color: var(--signal-3);
  font-size: 34px;
  line-height: 1;
}

.note-cell span {
  color: rgba(255, 250, 240, 0.65);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-body {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: clamp(28px, 4vw, 58px);
  box-shadow: var(--shadow);
}

.article-body h2 {
  margin-top: 34px;
  font-size: 30px;
  text-transform: uppercase;
}

.article-body p,
.article-body li {
  color: var(--steel);
  font-size: 17px;
  font-weight: 650;
}

.article-body img {
  margin: 30px 0;
  filter: saturate(0.92) contrast(1.05);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.footer {
  background: var(--ink);
  color: var(--white);
  padding: 52px 0 32px;
}

.footer-grid {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) repeat(3, minmax(150px, 0.45fr));
  gap: 30px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line-dark);
}

.footer img {
  width: 150px;
  margin-bottom: 18px;
  filter: grayscale(1) brightness(1.55);
}

.footer p,
.footer a,
.footer span {
  color: rgba(255, 250, 240, 0.68);
}

.footer h3 {
  margin-bottom: 13px;
  color: var(--signal-3);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 9px;
}

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

.footer-bottom {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  color: rgba(255, 250, 240, 0.58);
  font-size: 14px;
}

.accent-rule {
  width: 90px;
  height: 5px;
  margin: 0 0 24px;
  background: var(--signal);
}

.map-block {
  min-height: 340px;
  display: grid;
  align-items: end;
  padding: 38px;
  background:
    linear-gradient(90deg, rgba(23, 24, 21, 0.9), rgba(23, 24, 21, 0.28)),
    url("https://storage.googleapis.com/cg-webase/media/1779815872021-e045aba7.jpg") center / cover;
  color: var(--white);
  box-shadow: var(--shadow);
}

.map-block h3 {
  font-size: 38px;
  text-transform: uppercase;
}

.map-block p {
  max-width: 650px;
  color: rgba(255, 250, 240, 0.74);
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

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

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

@media (max-width: 900px) {
  .topbar {
    position: sticky;
    inset: 0 0 auto 0;
    width: auto;
  }

  .nav {
    width: min(1180px, calc(100% - 28px));
    min-height: 74px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    align-items: center;
  }

  .brand {
    width: auto;
    padding-bottom: 0;
    border-bottom: 0;
  }

  .brand img {
    width: 140px;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
  }

  .nav-links a {
    display: block;
    min-height: auto;
    padding: 11px 10px;
    border-bottom: 0;
  }

  .nav-links a::before {
    content: none;
  }

  .nav-actions {
    display: flex;
    padding-top: 0;
    border-top: 0;
  }

  main,
  .footer {
    margin-left: 0;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-block;
  }

  .nav-links {
    position: fixed;
    inset: 74px 0 auto 0;
    display: none;
    grid-template-columns: 1fr;
    padding: 12px 20px 22px;
    background: var(--ink);
    border-bottom: 1px solid var(--line-dark);
  }

  .nav-links.open {
    display: grid;
  }

  .nav-links a {
    min-height: 54px;
    border-bottom: 1px solid var(--line-dark);
  }

  .nav-actions .btn {
    display: none;
  }

  .hero .hero-media {
    inset: 0;
  }

  .hero .hero-media::after {
    background: linear-gradient(90deg, rgba(239, 234, 220, 0.94), rgba(239, 234, 220, 0.82));
  }

  .hero-grid,
  .feature-band,
  .split-layout,
  .section-head.wide {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding: 68px 0 48px;
  }

  .grid.cols-4,
  .process,
  .metric-strip .inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 680px) {
  .nav {
    min-height: 68px;
    width: calc(100% - 24px);
  }

  .brand img {
    width: 126px;
  }

  .nav-links {
    top: 68px;
  }

  .wrap,
  .hero-grid,
  .metric-strip .inner,
  .footer-grid,
  .footer-bottom {
    width: calc(100% - 28px);
  }

  h1 {
    font-size: 42px;
    line-height: 0.9;
  }

  .compact h1 {
    font-size: 36px;
  }

  .hero-copy p:not(.eyebrow) {
    font-size: 16px;
  }

  .section {
    padding: 64px 0;
  }

  .grid.cols-2,
  .grid.cols-3,
  .grid.cols-4,
  .process,
  .metric-strip .inner,
  .form-row {
    grid-template-columns: 1fr;
  }

  .feature-band > div:first-child {
    padding: 28px;
  }

  .product-card img,
  .blog-card img {
    height: 198px;
  }

  .machine-window,
  .machine-window img {
    min-height: 300px;
  }

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

  .footer-bottom {
    display: grid;
  }
}
