:root {
  --orange: #c6530f;
  --orange-dark: #8f3505;
  --orange-soft: #fff0e7;
  --ink: #151515;
  --muted: #666666;
  --line: #e8e0da;
  --white: #ffffff;
  --steel: #f5f5f4;
  --shadow: 0 18px 50px rgba(21, 21, 21, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(20px, 4vw, 64px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0));
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 36px rgba(21, 21, 21, 0.08);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 184px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 2px solid currentColor;
  background: var(--orange);
  color: var(--white);
  font-weight: 900;
  letter-spacing: 0.03em;
}

.brand strong {
  display: block;
  font-size: 19px;
  line-height: 1.1;
}

.brand small {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.75;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 38px);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

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

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

.nav-toggle {
  display: none;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
}

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

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 120px clamp(20px, 7vw, 92px) 72px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.5) 45%, rgba(0, 0, 0, 0.14) 100%),
    url("assets/factory-exterior.webp") center 58% / cover no-repeat;
}

.hero::after {
  position: absolute;
  right: -12vw;
  bottom: -110px;
  width: 44vw;
  height: 260px;
  background: var(--orange);
  content: "";
  transform: skewX(-24deg);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: min(760px, calc(100vw - 40px));
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.hero .eyebrow {
  color: #ffb078;
}

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

h1 {
  max-width: 730px;
  margin-bottom: 22px;
  font-size: clamp(48px, 7.5vw, 104px);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4.2vw, 62px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.18;
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions,
.hero-stats,
.feature-list,
.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  padding: 13px 22px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

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

.button-light {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
}

.button-dark {
  border-color: var(--ink);
  color: var(--ink);
}

.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--orange);
}

.hero-stats {
  margin-top: 36px;
}

.hero-stats span {
  min-width: 132px;
  border-left: 4px solid var(--orange);
  padding-left: 14px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  text-transform: uppercase;
}

.hero-stats strong {
  display: block;
  color: var(--white);
  font-size: 28px;
  line-height: 1;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.quick-links a {
  min-height: 96px;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  color: var(--ink);
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 900;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.quick-links a:hover,
.quick-links a:focus-visible {
  background: var(--orange);
  color: var(--white);
}

.section {
  padding: clamp(76px, 8vw, 128px) clamp(20px, 5vw, 72px);
}

.page-hero {
  min-height: 500px;
  display: grid;
  align-content: center;
  padding: 150px clamp(20px, 7vw, 92px) 72px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.76)),
    url("assets/hero-fence-yard.webp") center / cover no-repeat;
}

.page-hero-dark {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.4)),
    url("assets/hero-fence-yard.webp") center / cover no-repeat;
}

.page-hero h1 {
  max-width: 920px;
  margin-bottom: 22px;
  font-size: clamp(44px, 6vw, 82px);
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
}

.page-hero-dark p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(280px, 1.05fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: end;
}

.lead {
  margin: 0;
  color: var(--muted);
  font-size: clamp(19px, 2.1vw, 26px);
  line-height: 1.45;
}

.section-heading {
  max-width: 820px;
}

.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.products {
  background: var(--steel);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 44px;
}

.product-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(21, 21, 21, 0.06);
}

.product-card[id] {
  scroll-margin-top: 96px;
}

.product-photo {
  display: block;
  width: 100%;
  height: auto;
  background: var(--white);
  object-fit: contain;
}

.product-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.product-type {
  width: fit-content;
  margin-bottom: 12px;
  background: var(--orange-soft);
  color: var(--orange-dark);
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-content p,
.solution-copy p,
.factory-copy p,
.quality-grid p,
.contact-panel p {
  color: var(--muted);
}

.product-content ul {
  margin: auto 0 0;
  padding-left: 18px;
  color: var(--ink);
  font-size: 14px;
}

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

.solution-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 78px);
  padding: clamp(76px, 8vw, 124px) clamp(20px, 5vw, 72px);
  background: var(--ink);
  color: var(--white);
}

.solution-copy {
  align-self: center;
}

.solution-copy h2 {
  max-width: 650px;
}

.solution-copy p {
  max-width: 560px;
}

.solution-band .eyebrow,
.solution-list span {
  color: #ffb078;
}

.solution-band .solution-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.solution-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.solution-list div {
  min-height: 220px;
  padding: 28px;
  background: #202020;
}

.solution-list span {
  display: inline-block;
  margin-bottom: 28px;
  font-weight: 900;
}

.solution-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.factory {
  display: grid;
  grid-template-columns: minmax(300px, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
}

.factory-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.factory-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.factory-page .page-hero {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.3)),
    url("assets/factory-floor.webp") center 56% / cover no-repeat;
  color: var(--white);
}

.factory-page .page-hero .eyebrow {
  color: #ffb078;
}

.factory-page .page-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.8);
}

.factory-gallery-section {
  background: var(--steel);
}

.factory-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.factory-gallery figure {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  background: var(--ink);
}

.factory-gallery img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.factory-gallery figure:hover img {
  transform: scale(1.025);
}

.factory-gallery figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 34px 22px 18px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.82));
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.section-button {
  margin-top: 28px;
}

.feature-list span,
.contact-methods a,
.contact-methods span {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 800;
}

.quality {
  padding: clamp(76px, 8vw, 128px) clamp(20px, 5vw, 72px);
  background: linear-gradient(180deg, var(--orange-soft), var(--white));
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.quality-grid div {
  border-top: 5px solid var(--orange);
  border-radius: 8px;
  background: var(--white);
  padding: 28px;
  box-shadow: 0 10px 28px rgba(21, 21, 21, 0.06);
}

.quality-grid strong {
  display: inline-block;
  margin-bottom: 32px;
  color: var(--orange);
  font-size: 34px;
  line-height: 1;
}

.spec-section,
.process-section,
.contact-details {
  background: var(--white);
}

.spec-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.spec-grid div,
.process-grid div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 26px;
  box-shadow: 0 10px 28px rgba(21, 21, 21, 0.05);
}

.process-grid div {
  border-top: 5px solid var(--orange);
}

.process-grid strong {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--orange);
  font-size: 32px;
  line-height: 1;
}

.spec-grid p,
.process-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.technical-section {
  background: var(--steel);
}

.compact-lead {
  max-width: 820px;
  margin-top: 18px;
}

.table-wrap {
  margin-top: 40px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(21, 21, 21, 0.05);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

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

th {
  width: 28%;
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

td {
  color: var(--muted);
}

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

.faq-section {
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.faq-grid details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--steel);
  padding: 20px 22px;
}

.faq-grid summary {
  color: var(--ink);
  cursor: pointer;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
}

.faq-grid details[open] summary {
  color: var(--orange-dark);
}

.faq-grid p {
  margin: 14px 0 0;
  color: var(--muted);
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(44px, 6vw, 72px) clamp(20px, 5vw, 72px);
  background: var(--orange-soft);
}

.cta-strip h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 54px);
}

.testimonial-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
}

.testimonials {
  display: grid;
  gap: 18px;
}

figure {
  margin: 0;
  border-left: 5px solid var(--orange);
  border-radius: 8px;
  background: var(--steel);
  padding: 28px;
}

blockquote {
  margin: 0 0 20px;
  color: var(--ink);
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.32;
}

figcaption {
  color: var(--muted);
  font-weight: 800;
}

.contact {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(300px, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(76px, 8vw, 124px) clamp(20px, 5vw, 72px);
  background: var(--ink);
  color: var(--white);
}

.contact-page {
  min-height: 680px;
  align-items: center;
  padding-top: 150px;
}

.compact-contact {
  align-items: center;
}

.inquiry-cta {
  border-top: 1px solid var(--line);
  background: var(--white);
}

.inquiry-cta-main {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: clamp(36px, 7vw, 110px);
  align-items: end;
  padding: clamp(72px, 8vw, 112px) clamp(20px, 5vw, 72px);
  background: var(--orange-soft);
}

.inquiry-copy {
  max-width: 850px;
}

.inquiry-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 0.98;
}

.inquiry-copy > p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 21px);
}

.inquiry-action {
  display: grid;
  gap: 18px;
  justify-items: start;
  padding-bottom: 4px;
}

.inquiry-button {
  display: inline-flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  background: var(--ink);
  color: var(--white);
  padding: 16px 22px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 180ms ease, transform 180ms ease;
}

.inquiry-button span {
  color: #ffb078;
  font-size: 24px;
  line-height: 1;
}

.inquiry-button:hover,
.inquiry-button:focus-visible {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.inquiry-action p {
  max-width: 340px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.inquiry-details {
  display: grid;
  grid-template-columns: 0.75fr 1fr 1.35fr;
  padding: 0 clamp(20px, 5vw, 72px);
}

.inquiry-details > * {
  display: grid;
  align-content: center;
  gap: 7px;
  min-height: 116px;
  border-right: 1px solid var(--line);
  padding: 24px clamp(18px, 3vw, 42px);
}

.inquiry-details > *:first-child {
  padding-left: 0;
}

.inquiry-details > *:last-child {
  border-right: 0;
  padding-right: 0;
}

.inquiry-details span {
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.inquiry-details strong {
  color: var(--ink);
  font-size: clamp(15px, 1.4vw, 19px);
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.inquiry-details a:hover strong,
.inquiry-details a:focus-visible strong {
  color: var(--orange-dark);
}

.contact-page h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(44px, 6vw, 82px);
  line-height: 0.98;
  text-transform: uppercase;
}

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

.contact-methods {
  margin-top: 28px;
}

.contact-methods a,
.contact-methods span {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.quote-form {
  display: grid;
  gap: 16px;
  border-radius: 8px;
  background: var(--white);
  padding: clamp(22px, 4vw, 36px);
  color: var(--ink);
}

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

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 13px 12px;
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

.quote-form .button {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

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

.form-note a {
  color: var(--orange-dark);
  font-weight: 800;
  text-decoration: underline;
}

.not-found {
  min-height: calc(100vh - 76px);
  display: grid;
  align-content: center;
  justify-items: start;
  padding: 150px clamp(20px, 7vw, 92px) 90px;
  background: var(--orange-soft);
}

.not-found h1 {
  max-width: 850px;
  margin-bottom: 20px;
  font-size: clamp(56px, 9vw, 120px);
}

.not-found > p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 5vw, 72px);
  background: #0f0f0f;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--white);
  font-weight: 900;
}

@media (max-width: 1100px) {
  .product-grid,
  .quality-grid,
  .spec-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .site-header {
    min-height: 70px;
  }

  .nav-toggle {
    display: block;
    position: absolute;
    top: 13px;
    right: 20px;
    margin-left: auto;
    border-color: var(--orange);
    background: var(--orange);
    color: var(--white);
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--ink);
    padding: 8px 18px;
    box-shadow: var(--shadow);
  }

  .site-header.nav-open .main-nav {
    display: flex;
  }

  .hero {
    min-height: 700px;
    background-position: center;
  }

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

  .intro-section,
  .solution-band,
  .factory,
  .testimonial-section,
  .contact {
    grid-template-columns: 1fr;
  }

  .factory-image {
    order: 2;
  }

  .cta-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .inquiry-cta-main {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .inquiry-details {
    grid-template-columns: 1fr;
  }

  .inquiry-details > * {
    min-height: 96px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-right: 0;
    padding-left: 0;
  }

  .inquiry-details > *:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 620px) {
  .brand small {
    display: none;
  }

  .nav-toggle {
    right: auto;
    left: calc(min(100vw, 390px) - 64px);
  }

  .hero {
    min-height: 660px;
    padding-top: 106px;
    background-position: center, 64% center;
  }

  h1 {
    font-size: 39px;
    line-height: 0.98;
    overflow-wrap: anywhere;
  }

  .hero .eyebrow {
    max-width: 310px;
    font-size: 12px;
    letter-spacing: 0.12em;
  }

  .hero-copy {
    max-width: 318px;
    font-size: 17px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-actions .button,
  .quote-form .button,
  .inquiry-button {
    width: 100%;
  }

  .quick-links a {
    min-height: 76px;
    font-size: 18px;
  }

  .product-grid,
  .quality-grid,
  .solution-list,
  .spec-grid,
  .process-grid,
  .faq-grid,
  .factory-gallery {
    grid-template-columns: 1fr;
  }

  th,
  td {
    min-width: 180px;
    padding: 15px 16px;
  }

  .section,
  .quality,
  .contact,
  .solution-band {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .product-content,
  .solution-list div,
  figure {
    padding: 22px;
  }

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

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

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