@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Montserrat:wght@400;500;600;700&display=swap');

:root {
  --olive: #687348;
  --olive-dark: #525d37;
  --gold: #bd8d2e;
  --ink: #3d452f;
  --text: #667085;
  --paper: #fff;
  --soft: #f7f7f4;
  --line: #e8e8e1
}

html,
body {
  overflow-x: hidden
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  color: var(--text);
  font: 16px/1.7 Lato, Arial, sans-serif;
  background: #fff
}

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

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

.icon {
  width: 1.15em;
  height: 1.15em;
  display: inline-block;
  vertical-align: -.18em;
  fill: none;
  flex: 0 0 auto
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: auto
}

.topbar {
  background: var(--olive);
  color: #fff;
  font-size: 14px
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 43px
}

.top-meta,
.socials {
  display: flex;
  gap: 28px;
  align-items: center
}

.top-meta span {
  display: flex;
  align-items: center;
  gap: 9px
}

.top-meta span+span {
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, .18)
}

.socials a {
  font-weight: 700
}

.social-icons {
  gap: 15px
}

.social-icons a {
  display: grid;
  place-items: center
}

.social-icons .icon {
  width: 17px;
  height: 17px
}

.site-header {
  height: 86px;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .04)
}

.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.main-nav {
  flex: 1;
  justify-content: center
}

.header-right-logo img { height: 80px; width: auto; object-fit: contain; display: block; flex-shrink: 0 }

.logo img {
  width: 300px;
  max-height: 66px;
  object-fit: contain
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1.6px;
  color: #9c742a
}

.main-nav>a:hover,
.main-nav>a.active {
  color: #77bb70
}

.dropdown {
  position: relative;
  padding: 28px 0
}

.dropdown>a {
  display: flex;
  align-items: center;
  gap: 5px
}

.nav-chevron {
  width: 14px;
  height: 14px
}

.dropdown-menu {
  position: absolute;
  top: 80px;
  left: -18px;
  width: 210px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(0, 0, 0, .15);
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .2s
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: none
}

.dropdown-menu a {
  display: block;
  padding: 9px 12px;
  color: #59613f;
  letter-spacing: .4px
}

.dropdown-menu a:hover {
  background: var(--soft);
  color: var(--gold)
}

.menu-button {
  display: none;
  background: none;
  border: 0;
  color: var(--olive);
  padding: 5px
}

.menu-button .icon {
  width: 29px;
  height: 29px
}

.hero {
  min-height: 540px;
  background: linear-gradient(90deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, .38)), url('images/fdhgy.jpg') center/cover;
  display: flex;
  align-items: center;
  color: #fff;
  position: relative
}

.hero-copy {
  max-width: 570px;
  padding: 75px 0 130px
}

.eyebrow {
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .4px;
  color: var(--gold);
  text-transform: uppercase
}

.hero .eyebrow {
  font-size: 25px;
  color: #fff;
  text-transform: none
}

.gold-rule {
  width: 90px;
  height: 3px;
  background: var(--gold);
  margin: 9px 0 10px
}

.hero h1 {
  font: 700 31px/1.35 Montserrat, sans-serif;
  margin: 0 0 22px;
  max-width: 560px
}

.hero p {
  max-width: 520px;
  font-size: 17px
}

.hero-cards {
  position: absolute;
  right: max(calc((100% - 1160px)/2), 20px);
  bottom: -96px;
  display: grid;
  grid-template-columns: 260px 260px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .12)
}

.hero-card {
  min-height: 240px;
  padding: 45px 39px;
  background: #fff;
  color: var(--olive)
}

.hero-card:first-child {
  background: var(--gold);
  color: #fff
}

.hero-card h3 {
  font: 600 22px/1.4 Montserrat, sans-serif;
  margin: 0 0 8px
}

.hero-card .icon {
  width: 22px;
  height: 22px
}

.contact-strip {
  min-height: 145px;
  padding: 25px 0
}

.contact-strip .container {
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr;
  gap: 30px
}

.contact-item {
  display: flex;
  gap: 20px;
  align-items: center
}

.contact-icon {
  width: 38px;
  height: 38px;
  color: var(--olive)
}

.contact-item h3 {
  margin: 0;
  color: var(--olive);
  font: 500 20px Montserrat
}

.contact-item p {
  margin: 5px 0 0;
  font-size: 14px
}

.section {
  padding: 90px 0
}

.section.soft {
  background: var(--soft)
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center
}

.split img {
  width: 100%;
  min-height: 380px;
  object-fit: cover
}

.section h2,
.page-title {
  color: var(--olive);
  font: 500 31px/1.35 Montserrat, sans-serif;
  margin: 12px 0 22px
}

.section p {
  margin: 0 0 18px
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 30px
}

.stat {
  padding: 24px;
  border-left: 3px solid var(--gold);
  background: #fff
}

.stat strong {
  display: block;
  color: var(--olive);
  font: 700 32px Montserrat
}

.feature-grid,
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px
}

.feature {
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line)
}

.feature h3 {
  font: 600 18px Montserrat;
  color: var(--olive)
}

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

.machine {
  position: relative;
  overflow: hidden;
  background: #111;
  min-height: 330px
}

.machine img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  opacity: .72;
  transition: .35s
}

.machine:hover img {
  transform: scale(1.05);
  opacity: .5
}

.machine h3 {
  position: absolute;
  left: 22px;
  bottom: 20px;
  color: #fff;
  font: 600 17px Montserrat;
  margin: 0
}

.awards {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap
}

.awards img {
  height: 95px;
  width: auto;
  object-fit: contain;
  filter: grayscale(10%)
}

.page-hero {
  min-height: 320px;
  background: linear-gradient(90deg, rgba(0, 0, 0, .7), rgba(0, 0, 0, .32)), url('images/bnr-2.jpg') center/cover;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff
}

.page-hero h1 {
  font: 600 42px Montserrat;
  margin: 0
}

.breadcrumbs {
  font-size: 14px;
  margin-top: 10px;
  color: #eee
}

.product-intro {
  max-width: 920px;
  margin: 0 auto 48px;
  text-align: center
}

.product-intro h2 {
  font-size: 30px
}

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

.product-card {
  background: #fff;
  box-shadow: 0 8px 25px rgba(34, 45, 21, .1);
  overflow: hidden
}

.product-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: .3s
}

.product-card:hover img {
  transform: scale(1.035)
}

.product-card .copy {
  padding: 25px
}

.product-card h3 {
  color: var(--olive);
  font: 600 18px/1.4 Montserrat;
  margin: 0 0 12px;
  text-transform: uppercase
}

.product-card p {
  font-size: 14px;
  white-space: pre-line;
  margin: 0
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px
}

.gallery a {
  overflow: hidden;
  background: #eee
}

.gallery img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: .3s
}

.gallery a:hover img {
  transform: scale(1.05)
}

.product-showcase {
  grid-template-columns: repeat(3, 1fr)
}

.product-showcase a {
  position: relative
}

.product-showcase span {
  position: absolute;
  inset: auto 0 0;
  padding: 45px 20px 18px;
  background: linear-gradient(transparent, rgba(0, 0, 0, .82));
  color: #fff;
  font: 600 17px Montserrat, sans-serif
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px
}

.form {
  display: grid;
  gap: 16px
}

.form input,
.form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #dcded6;
  font: inherit;
  outline: none
}

.form input:focus,
.form textarea:focus {
  border-color: var(--gold)
}

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

.button {
  display: inline-block;
  border: 0;
  background: var(--gold);
  color: #fff;
  font: 600 14px Montserrat;
  letter-spacing: 1px;
  padding: 15px 27px;
  cursor: pointer
}

.info-list {
  display: grid;
  gap: 22px
}

.info-box {
  padding: 22px 25px;
  background: var(--soft);
  border-left: 3px solid var(--gold)
}

.info-box h4 {
  margin: 0 0 5px;
  color: var(--olive);
  font: 600 17px Montserrat
}

.info-box p {
  margin: 0
}

.map {
  width: 100%;
  height: 360px;
  border: 0
}

.site-footer {
  background: #22281c;
  color: #d9ddcf;
  padding: 70px 0 0
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .8fr .9fr 1.1fr;
  gap: 50px
}

.footer-logo {
  width: 250px;
  margin-bottom: 18px
}

.site-footer h4 {
  font: 600 17px Montserrat;
  color: #fff;
  margin: 0 0 18px
}

.site-footer ul {
  padding: 0;
  margin: 0;
  list-style: none
}

.site-footer li {
  margin: 8px 0
}

.site-footer p .icon {
  margin-right: 6px
}

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

.copyright {
  border-top: 1px solid rgba(255, 255, 255, .12);
  margin-top: 55px;
  padding: 20px 0;
  text-align: center;
  font-size: 14px
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .92);
  display: none;
  place-items: center;
  z-index: 100
}

.lightbox.open {
  display: grid
}

.lightbox img {
  max-width: 90vw;
  max-height: 88vh
}

.lightbox button {
  position: absolute;
  top: 20px;
  right: 25px;
  background: none;
  border: 0;
  color: #fff;
  font-size: 38px
}

.logo-section {
  overflow: hidden
}

.logo-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 16px 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent)
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 72px;
  width: max-content;
  animation: logoScroll 26s linear infinite;
  will-change: transform
}

.logo-marquee.reverse .logo-track {
  animation-direction: reverse;
  animation-duration: 34s
}

.logo-track img {
  width: 250px;
  height: 105px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: grayscale(8%);
  transition: filter .3s, transform .3s
}

.logo-track img:hover {
  filter: none;
  transform: scale(1.04)
}

@keyframes logoScroll {
  to {
    transform: translateX(calc(-50% - 36px))
  }
}

.contact-cta {
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, .57), rgba(0, 0, 0, .57)), url('images/sewing-machines-nobody-cloth-industry.jpg') 0 35%/cover no-repeat;
  color: #fff;
  padding: 140px 0;
  background-attachment: fixed
}

.contact-cta h2,
.contact-cta p {
  color: #fff
}

.contact-cta .eyebrow {
  color: #e0b04c
}

.contact-cta .form input,
.contact-cta .form textarea {
  background: rgba(255, 255, 255, .96);
  border-color: rgba(255, 255, 255, .35)
}

.contact-cta .button {
  width: 100%;
  transition: background .25s, transform .25s
}

.contact-cta .button:hover {
  background: var(--olive);
  transform: translateY(-2px)
}

.js .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .8s cubic-bezier(.22, 1, .36, 1), transform .8s cubic-bezier(.22, 1, .36, 1);
  transition-delay: var(--reveal-delay, 0ms)
}

.js .reveal.reveal-left {
  transform: translateX(-38px)
}

.js .reveal.reveal-right {
  transform: translateX(38px)
}

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

@media(max-width:900px) {
  .topbar .container {
    justify-content: center
  }

  .top-meta span:first-child,
  .socials {
    display: none
  }

  .menu-button {
    display: block
  }

  .header-right-logo {
    display: none
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 86px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 22px;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    box-shadow: 0 12px 20px rgba(0, 0, 0, .12)
  }

  .main-nav.open {
    display: flex
  }

  .dropdown {
    padding: 8px 0
  }

  .dropdown-menu {
    position: static;
    display: block;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 4px 12px
  }

  .hero-cards {
    position: static;
    margin: 0 20px -75px;
    grid-template-columns: 1fr 1fr
  }

  .hero {
    display: block;
    padding-top: 1px
  }

  .hero-copy {
    padding: 80px 0 45px
  }

  .contact-strip {
    padding-top: 105px
  }

  .contact-strip .container,
  .split,
  .contact-layout {
    grid-template-columns: 1fr
  }

  .feature-grid,
  .product-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .machine-grid,
  .gallery {
    grid-template-columns: repeat(2, 1fr)
  }

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

  .contact-cta {
    background-attachment: scroll
  }

  .logo-track {
    gap: 45px
  }

  .logo-track img {
    width: 210px
  }
}

@media(max-width:560px) {
  .container {
    width: min(100% - 28px, 1160px)
  }

  .logo img {
    width: 230px
  }

  .hero h1 {
    font-size: 27px
  }

  .hero-cards {
    grid-template-columns: 1fr
  }

  .contact-strip .container {
    grid-template-columns: 1fr
  }

  .split {
    gap: 35px
  }

  .section {
    padding: 65px 0
  }

  .feature-grid,
  .product-grid,
  .machine-grid,
  .gallery,
  .footer-grid {
    grid-template-columns: 1fr
  }

  .product-card img,
  .gallery img {
    height: 300px
  }

  .page-hero h1 {
    font-size: 34px
  }

  .top-meta span+span {
    border: 0;
    padding: 0
  }

  .top-meta {
    gap: 0
  }
}

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

  .logo-track {
    animation-play-state: paused
  }

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

/* Refined responsive system */
@media(max-width:900px) {
  body.menu-open {
    overflow: hidden
  }

  .topbar .container {
    min-height: 38px
  }

  .topbar .socials {
    display: none
  }

  .topbar .top-meta {
    font-size: 13px
  }

  .topbar .top-meta span:first-child {
    display: none
  }

  .topbar .top-meta span+span {
    padding: 0;
    border: 0
  }

  .site-header {
    height: 74px
  }

  .logo img {
    width: 255px;
    max-height: 56px
  }

  .nav-wrap {
    position: relative
  }

  .menu-button {
    display: grid;
    place-items: center;
    min-width: 44px;
    min-height: 44px;
    border-radius: 6px;
    transition: background .2s, color .2s
  }

  .menu-button:hover,
  .menu-button[aria-expanded="true"] {
    background: var(--soft);
    color: var(--gold)
  }

  .main-nav {
    display: flex;
    position: absolute;
    top: 74px;
    left: -20px;
    right: -20px;
    max-height: calc(100vh - 74px);
    overflow: auto;
    background: #fff;
    padding: 18px 20px 26px;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    box-shadow: 0 20px 35px rgba(24, 31, 17, .2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .25s, transform .25s, visibility .25s;
    z-index: 62
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
    transform: none
  }

  .main-nav>a,
  .dropdown>a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    border-bottom: 1px solid var(--line);
    font-size: 13px
  }

  .dropdown {
    padding: 0
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 10px 4px 12px;
    background: var(--soft)
  }

  .dropdown-menu a {
    padding: 9px 10px;
    border-radius: 4px;
    font-size: 13px
  }

  .nav-chevron {
    margin-left: auto
  }

  .nav-scrim {
    position: fixed;
    inset: 112px 0 0;
    background: rgba(23, 29, 16, .48);
    opacity: 0;
    visibility: hidden;
    transition: .25s;
    z-index: 45
  }

  .nav-scrim.open {
    opacity: 1;
    visibility: visible
  }

  .hero {
    min-height: auto;
    background-position: 58% center
  }

  .hero-copy {
    max-width: 620px;
    padding: 64px 0 56px
  }

  .hero h1 {
    font-size: clamp(28px, 5vw, 36px)
  }

  .hero p {
    font-size: 16px;
    line-height: 1.75
  }

  .hero-cards {
    position: relative;
    right: auto;
    bottom: auto;
    margin: 0 auto -76px;
    width: min(720px, calc(100% - 40px));
    grid-template-columns: 1fr 1fr
  }

  .hero-card {
    min-height: 190px;
    padding: 30px
  }

  .contact-strip {
    padding: 112px 0 34px
  }

  .contact-strip .container {
    grid-template-columns: 1fr 1fr;
    gap: 22px
  }

  .contact-item {
    align-items: flex-start
  }

  .section {
    padding: 72px 0
  }

  .section h2,
  .page-title {
    font-size: clamp(27px, 4.5vw, 32px)
  }

  .split {
    gap: 40px
  }

  .split img {
    min-height: 0;
    height: clamp(280px, 48vw, 390px)
  }

  .stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px
  }

  .stat {
    padding: 18px
  }

  .stat strong {
    font-size: 25px
  }

  .feature-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px
  }

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

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

  .gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px
  }

  .gallery img {
    height: 230px
  }

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

  .product-card img {
    height: 320px
  }

  .product-card .copy {
    padding: 22px
  }

  .product-card h3 {
    font-size: 17px
  }

  .page-hero {
    min-height: 255px
  }

  .page-hero h1 {
    font-size: 36px
  }

  .product-intro {
    margin-bottom: 35px
  }

  .contact-layout {
    gap: 36px
  }

  .contact-cta {
    padding: 90px 0
  }

  .form input,
  .form textarea {
    font-size: 16px
  }

  .button {
    min-height: 48px
  }

  .info-list {
    gap: 14px
  }

  .info-box {
    padding: 20px
  }

  .footer-grid {
    grid-template-columns: 1.25fr 1fr;
    gap: 38px 50px
  }

  .site-footer {
    padding-top: 55px
  }

  .site-footer .socials {
    display: flex
  }

  .copyright {
    margin-top: 40px;
    padding: 18px 20px
  }

  .logo-track img {
    width: 190px;
    height: 90px
  }

  .logo-track {
    gap: 42px
  }
}

@media(max-width:600px) {
  .container {
    width: calc(100% - 30px)
  }

  .topbar .container {
    width: calc(100% - 24px)
  }

  .site-header {
    height: 68px
  }

  .logo img {
    width: 220px;
    max-height: 50px
  }

  .main-nav {
    top: 68px;
    left: -15px;
    right: -15px;
    max-height: calc(100vh - 106px);
    padding-inline: 15px
  }

  .nav-scrim {
    inset: 106px 0 0
  }

  .dropdown-menu {
    grid-template-columns: 1fr
  }

  .hero {
    background-position: 60% center
  }

  .hero-copy {
    padding: 52px 0 45px
  }

  .hero .eyebrow {
    font-size: 20px
  }

  .hero h1 {
    font-size: 29px;
    line-height: 1.28;
    margin-bottom: 18px
  }

  .hero p {
    font-size: 15px;
    line-height: 1.7
  }

  .gold-rule {
    width: 68px
  }

  .hero-cards {
    width: calc(100% - 30px);
    margin-bottom: -60px;
    grid-template-columns: 1fr
  }

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

  .hero-card h3 {
    font-size: 19px
  }

  .hero-card+.hero-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3px 14px;
    align-items: center
  }

  .hero-card+.hero-card h3 {
    grid-column: 1/-1
  }

  .hero-card+.hero-card p {
    margin: 0
  }

  .contact-strip {
    padding-top: 90px
  }

  .contact-strip .container {
    grid-template-columns: 1fr;
    gap: 18px
  }

  .contact-item {
    padding: 16px;
    background: var(--soft);
    border-radius: 6px
  }

  .contact-icon {
    width: 30px;
    height: 30px
  }

  .contact-item h3 {
    font-size: 17px
  }

  .section {
    padding: 56px 0
  }

  .section h2,
  .page-title {
    font-size: 27px;
    line-height: 1.3
  }

  .section p {
    line-height: 1.72
  }

  .eyebrow {
    font-size: 12px
  }

  .split {
    gap: 28px
  }

  .split img {
    height: 250px
  }

  .split>img:first-child {
    order: 0
  }

  .stats {
    grid-template-columns: 1fr
  }

  .stat {
    padding: 16px 18px
  }

  .stat strong {
    display: inline-block;
    margin-right: 8px;
    font-size: 22px
  }

  .feature-grid,
  .product-grid {
    grid-template-columns: 1fr;
    gap: 18px
  }

  .feature {
    padding: 22px
  }

  .feature img {
    width: 100%;
    height: 210px;
    object-fit: cover
  }

  .machine-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px
  }

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

  .machine h3 {
    left: 14px;
    bottom: 14px;
    font-size: 13px
  }

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

  .gallery img,
  .product-card img {
    height: 190px
  }

  .product-showcase {
    grid-template-columns: 1fr 1fr
  }

  .product-showcase span {
    padding: 32px 12px 10px;
    font-size: 13px
  }

  .product-card .copy {
    padding: 20px
  }

  .product-card h3 {
    font-size: 16px
  }

  .product-card p {
    font-size: 14px
  }

  .product-intro {
    margin-bottom: 28px
  }

  .product-intro h2 {
    font-size: 26px
  }

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

  .page-hero h1 {
    font-size: 30px
  }

  .breadcrumbs {
    font-size: 12px
  }

  .contact-layout {
    gap: 28px
  }

  .contact-cta {
    padding: 70px 0;
    background-position: center
  }

  .contact-cta .contact-layout>div {
    text-align: center
  }

  .form {
    gap: 12px
  }

  .form input,
  .form textarea {
    padding: 13px 14px
  }

  .form textarea {
    min-height: 130px
  }

  .info-box {
    padding: 18px
  }

  .info-box h4 {
    font-size: 16px
  }

  .logo-section {
    padding-block: 48px
  }

  .logo-section .product-intro {
    margin-bottom: 16px
  }

  .logo-track {
    gap: 30px
  }

  .logo-track img {
    width: 145px;
    height: 72px
  }

  .logo-marquee {
    mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent)
  }

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

  .site-footer {
    padding-top: 45px
  }

  .footer-logo {
    width: 220px
  }

  .site-footer h4 {
    margin-bottom: 12px
  }

  .site-footer li {
    margin: 5px 0
  }

  .site-footer .social-icons {
    margin-top: 18px
  }

  .copyright {
    margin-top: 32px;
    font-size: 12px;
    line-height: 1.6
  }

  .lightbox {
    padding: 18px
  }

  .lightbox button {
    top: 12px;
    right: 12px
  }

  .lightbox img {
    max-width: 100%;
    max-height: 82vh
  }

  .js .reveal.reveal-left,
  .js .reveal.reveal-right {
    transform: translateY(25px)
  }
}

@media(max-width:360px) {
  .logo img {
    width: 195px
  }

  .hero h1 {
    font-size: 26px
  }

  .machine-grid,
  .product-showcase {
    grid-template-columns: 1fr
  }

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

  .gallery img {
    height: 165px
  }
}

.logo-track {
  --logo-gap: 72px;
  gap: var(--logo-gap)
}

@keyframes logoScroll {
  to {
    transform: translateX(calc(-50% - (var(--logo-gap) / 2)))
  }
}

@media(max-width:900px) {
  .logo-track {
    --logo-gap: 42px
  }
}

@media(max-width:600px) {
  .logo-track {
    --logo-gap: 30px
  }
}

@media(max-width:900px) {
  .nav-scrim {
    inset: 0
  }
}

/* Layered scroll motion */
.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  height: 3px;
  z-index: 100;
  pointer-events: none
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), #e5bd63, var(--olive));
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform
}

.site-header {
  transition: height .3s ease, box-shadow .3s ease, background-color .3s ease
}

.site-header.scrolled {
  box-shadow: 0 10px 28px rgba(35, 45, 24, .12);
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(12px)
}

.js .reveal {
  filter: blur(0);
  will-change: opacity, transform, filter
}

.js .reveal.reveal-scale {
  transform: translateY(24px) scale(.94)
}

.js .reveal.reveal-image {
  transform: scale(1.055);
  filter: blur(4px);
  clip-path: inset(0 0 14% 0 round 3px);
  transition-duration: 1s
}

.js .reveal.reveal-heading {
  transform: translateY(22px);
  letter-spacing: .012em
}

.js .reveal.is-visible.reveal-scale,
.js .reveal.is-visible.reveal-image,
.js .reveal.is-visible.reveal-heading {
  transform: translate(0, 0) scale(1);
  filter: blur(0);
  clip-path: inset(0 0 0 0 round 3px);
  letter-spacing: normal
}

.section h2.reveal-heading::after {
  content: "";
  display: block;
  width: 58px;
  height: 2px;
  margin-top: 14px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .7s cubic-bezier(.22, 1, .36, 1) .28s
}

.section h2.reveal-heading.is-visible::after {
  transform: scaleX(1)
}

.product-intro h2.reveal-heading::after {
  margin-left: auto;
  margin-right: auto
}

.contact-cta h2.reveal-heading::after {
  background: #e5bd63
}

.product-card,
.feature,
.stat,
.info-box,
.machine {
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease
}

.product-card:hover,
.feature:hover,
.info-box:hover {
  transform: translateY(-7px);
  box-shadow: 0 16px 36px rgba(34, 45, 21, .13)
}

.stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(34, 45, 21, .1)
}

@media(min-width:901px) {
  .hero {
    background-position: center calc(50% + var(--hero-shift, 0px))
  }

  .contact-cta {
    background-position: 0 calc(35% + var(--contact-shift, 0px))
  }
}

@media(max-width:600px) {
  .scroll-progress {
    height: 2px
  }

  .js .reveal.reveal-scale {
    transform: translateY(20px) scale(.97)
  }

  .js .reveal.reveal-image {
    transform: translateY(18px) scale(1.025);
    filter: blur(2px);
    clip-path: inset(0 0 8% 0 round 3px)
  }
}

@media(prefers-reduced-motion:reduce) {
  .scroll-progress {
    display: none
  }

  .site-header {
    transition: none
  }

  .js .reveal,
  .js .reveal.reveal-scale,
  .js .reveal.reveal-image,
  .js .reveal.reveal-heading {
    opacity: 1;
    transform: none;
    filter: none;
    clip-path: none;
    letter-spacing: normal
  }

  .section h2.reveal-heading::after {
    transform: scaleX(1);
    transition: none
  }
}

.js .reveal {
  transition-property: opacity, transform, filter, clip-path, letter-spacing
}