:root {
  --navy: #173247;
  --ink: #243746;
  --muted: #66727d;
  --terracotta: #bf5841;
  --terracotta-hover: #a94732;
  --warm-white: #fffdf8;
  --soft-gray: #f1f3f4;
  --product-gray: #f7f9fa;
  --line: #e4e4e7;
  --white: #fff;
  --shell: 1280px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 78px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

h1,
h2,
h3 {
  font-family: "Manrope", system-ui, sans-serif;
}

:focus-visible {
  outline: 3px solid rgb(191 88 65 / 42%);
  outline-offset: 3px;
  border-radius: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.65rem;
  left: 0.65rem;
  padding: 0.65rem 0.9rem;
  color: white;
  background: var(--navy);
  transform: translateY(-180%);
  transition: transform 150ms ease;
}

.skip-link:focus {
  transform: none;
}

.shell {
  width: min(calc(100% - 120px), var(--shell));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  width: 100%;
  background: linear-gradient(0deg, rgb(0 0 0 / 3%) 0%, rgb(0 0 0 / 3%) 100%), #fffdf8;
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(12px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: transparent;
  box-shadow: none;
}

.header-inner {
  display: grid;
  min-height: 76px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 0.9rem 3rem;
}

.brand {
  width: 170px;
}

.brand img {
  width: 100%;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
}

.primary-nav a {
  position: relative;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.38rem;
  left: 0;
  height: 2px;
  background: var(--terracotta);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

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

.primary-nav__lydus {
  color: #34558b !important;
  font-weight: 800 !important;
}

.mobile-store-link {
  display: none;
}

.store-link,
.button {
  display: inline-flex;
  min-height: 43px;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-family: "Manrope", sans-serif;
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.2;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.icon {
  display: block;
  flex: 0 0 auto;
  color: currentColor;
}

.icon--message {
  transform: translateY(1px);
}

.store-link,
.button--primary {
  color: #fafafa;
  background: var(--terracotta);
}

.store-link {
  min-height: 38px;
  gap: 0.4rem;
  padding: 0.5rem 0.8rem;
  font-size: 0.82rem;
}

.store-link:hover,
.button--primary:hover {
  background: var(--terracotta-hover);
}

.button--primary:hover {
  transform: translateY(-1px);
}

.button--secondary {
  color: #2d2d2d;
  background: var(--white);
  border-color: rgb(0 0 0 / 10%);
}

.button--secondary:hover {
  background: #f7f7f7;
  transform: translateY(-1px);
}

.button--soft {
  color: var(--terracotta);
  background: #fbf2f0;
}

.button--soft:hover {
  background: #f5e0db;
}

.menu-toggle {
  display: none;
}

.hero {
  overflow: hidden;
  padding: 3.25rem 1.25rem 4.5rem;
  background: var(--warm-white);
}

.hero-inner {
  display: flex;
  width: min(100%, 1024px);
  margin-inline: auto;
  align-items: center;
  flex-direction: column;
  gap: 2.25rem;
  text-align: center;
}

.truck-stage {
  position: relative;
  width: min(100%, 660px);
  padding-bottom: 0.55rem;
  isolation: isolate;
}

.truck {
  position: relative;
  z-index: 3;
  width: 100%;
  transform-origin: 58% 100%;
}

.truck.is-arriving {
  animation: truck-arrive 1050ms cubic-bezier(0.22, 0.82, 0.27, 1) both;
}

.truck__image {
  width: 100%;
  height: auto;
}

.truck-shadow {
  position: absolute;
  z-index: 1;
  right: 2%;
  bottom: 1%;
  left: 5%;
  height: 7%;
  border-radius: 50%;
  background: rgb(16 37 51 / 15%);
  filter: blur(8px);
  animation: shadow-arrive 1050ms ease-out both;
}

.road-line {
  position: absolute;
  z-index: 0;
  bottom: -2px;
  width: 12%;
  height: 2px;
  border-radius: 999px;
  background: rgb(23 50 71 / 12%);
  opacity: 0;
  animation: road-pass 1050ms ease-out both;
}

.road-line--one { left: 13%; }
.road-line--two { left: 48%; animation-delay: 80ms; }

.hero-copy {
  display: flex;
  max-width: 820px;
  align-items: center;
  flex-direction: column;
  gap: 1.1rem;
}

.hero h1 {
  color: #2d2d2d;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.2;
  text-wrap: balance;
}

.hero-copy p {
  max-width: 720px;
  color: #2d2d2d;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1rem, 2vw, 1.22rem);
  font-weight: 500;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
}

.hero-actions .button {
  min-height: 53px;
  padding-inline: 1.3rem;
  font-size: 1.05rem;
}

.section {
  padding: 3.75rem 0;
}

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

.section--products,
.contact {
  background: var(--product-gray);
}

.section-heading {
  margin-bottom: 2rem;
}

.eyebrow {
  margin-bottom: 0.55rem;
  color: var(--terracotta-hover);
  font-family: "Manrope", sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-heading h2,
.about-copy h2,
.partnership h2,
.contact-copy h2 {
  color: var(--navy);
  font-size: clamp(1.75rem, 3vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.section-heading > p:not(.eyebrow) {
  margin-top: 0.6rem;
  color: var(--muted);
  font-family: "Manrope", sans-serif;
  font-weight: 500;
}

.section-heading h2 span {
  color: #34558b;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  min-height: 245px;
  padding: 1.75rem;
  background: var(--white);
  border: 1px solid #f3f4f6;
  border-radius: 10px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  box-shadow: 0 12px 30px rgb(23 50 71 / 7%);
  transform: translateY(-2px);
}

.service-card:nth-child(2) {
  position: relative;
  isolation: isolate;
}

.service-card:nth-child(2) .service-icon {
  background: linear-gradient(
    to top,
    var(--terracotta) 0 var(--service-fill, 0%),
    rgb(201 95 69 / 8%) var(--service-fill, 0%) 100%
  );
  transition: color 160ms ease;
}

.service-card:nth-child(2) .service-icon.is-filled {
  color: var(--white);
}

.service-card:nth-child(2)::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  padding: 2px;
  border-radius: inherit;
  background: conic-gradient(
    from -45deg,
    rgb(191 88 65 / 52%) 0deg var(--service-border-angle, 0deg),
    transparent var(--service-border-angle, 0deg) 360deg
  );
  content: "";
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.service-icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.3rem;
  color: var(--terracotta-hover);
  background: rgb(201 95 69 / 8%);
  border-radius: 9px;
  font-family: "Manrope", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
}

.service-card h3,
.product-card h3,
.industry-card h3 {
  color: var(--navy);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.4;
}

.service-card p,
.product-card p,
.industry-card p,
.about-copy p,
.partnership p,
.contact-copy > p {
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.about {
  display: grid;
  width: min(100%, var(--shell));
  margin-inline: auto;
  grid-template-columns: 350px 1fr;
  background: var(--white);
}

.about-image {
  min-height: 430px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-copy {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 4rem 3rem 2.5rem;
}

.about-copy p {
  max-width: 760px;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 450;
}

.about-copy .eyebrow {
  margin-bottom: 0.55rem;
  color: var(--terracotta-hover);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.65;
  text-transform: uppercase;
}

.about-copy .button {
  margin-top: 1.5rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.product-card {
  display: flex;
  overflow: hidden;
  min-width: 0;
  flex-direction: column;
  background: var(--white);
  border: 1px solid #f3f4f6;
  border-radius: 10px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  box-shadow: 0 12px 28px rgb(23 50 71 / 7%);
  transform: translateY(-2px);
}

.product-card > img {
  width: 100%;
  height: 192px;
  object-fit: cover;
  background: var(--soft-gray);
}

.product-card > div {
  display: flex;
  min-height: 220px;
  align-items: flex-start;
  flex-direction: column;
  padding: 1.5rem;
}

.product-card a,
.text-link {
  margin-top: auto;
  padding-top: 0.75rem;
  color: var(--terracotta-hover);
  font-size: 0.85rem;
  font-weight: 650;
}

.product-card a:hover,
.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.text-link {
  display: inline-block;
  margin-top: 1.5rem;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

.industry-card {
  --card-delay: 0ms;
  --industry-fill: 0%;
  position: relative;
  isolation: isolate;
  min-height: 175px;
  padding: 1.25rem;
  background: #f9f9f9;
  border-radius: 10px;
  transition: transform 220ms cubic-bezier(0.2, 0.75, 0.25, 1), box-shadow 220ms ease;
}

.industry-card.reveal {
  transition: transform 220ms cubic-bezier(0.2, 0.75, 0.25, 1), box-shadow 220ms ease;
}

.industry-card.reveal.is-visible {
  animation: industry-card-enter 900ms cubic-bezier(0.22, 1, 0.36, 1) var(--card-delay) backwards;
}

.industry-card:nth-child(2) { --card-delay: 70ms; }
.industry-card:nth-child(3) { --card-delay: 140ms; }
.industry-card:nth-child(4) { --card-delay: 210ms; }
.industry-card:nth-child(5) { --card-delay: 280ms; }
.industry-card:nth-child(6) { --card-delay: 350ms; }

.industry-card.reveal.is-visible:hover,
.industry-card.reveal.is-visible:focus-within {
  box-shadow: 0 10px 26px rgb(23 50 71 / 8%);
  transform: translateY(-2px);
}

.industry-card > span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
  color: var(--terracotta);
  background: linear-gradient(
    45deg,
    var(--terracotta) 0 var(--industry-fill),
    rgb(201 95 69 / 10%) var(--industry-fill) 100%
  );
  border-radius: 8px;
  transition: color 160ms ease, transform 220ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.industry-card .industry-icon.is-filled {
  color: var(--white);
}

.industry-card:hover .industry-icon,
.industry-card:focus-within .industry-icon {
  color: #fff;
  background: var(--terracotta);
  transform: translateY(-1px) scale(1.04);
}

.industry-icon::before {
  width: 22px;
  height: 22px;
  background: currentColor;
  content: "";
  mask: var(--industry-icon) center / contain no-repeat;
  -webkit-mask: var(--industry-icon) center / contain no-repeat;
}

.industry-icon--healthcare { --industry-icon: url("../img/icon-medical.svg"); }
.industry-icon--food { --industry-icon: url("../img/icon-food.svg"); }
.industry-icon--industrial { --industry-icon: url("../img/icon-industrial.svg"); }
.industry-icon--cleaning { --industry-icon: url("../img/icon-cleaning.svg"); }
.industry-icon--government { --industry-icon: url("../img/icon-government.svg"); }
.industry-icon--local { --industry-icon: url("../img/icon-local-business.svg"); }

.industry-card p {
  font-family: "Manrope", sans-serif;
  font-size: 0.87rem;
  line-height: 1.55;
}

.partnership {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.partnership::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: url("../img/about-port.webp") center 58% / cover no-repeat;
  content: "";
  opacity: 0.05;
  pointer-events: none;
}

.partnership-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 1.5rem;
}

.partnership-inner > div {
  max-width: 780px;
}

.partnership p:not(.eyebrow) {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
}

.partnership .button {
  flex: 0 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 2.5rem;
}

.contact-copy address {
  display: grid;
  margin-top: 1.75rem;
  gap: 0.08rem;
  font-style: normal;
}

.contact-copy address strong {
  margin-top: 0.7rem;
  color: var(--navy);
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
}

.contact-copy address a {
  width: fit-content;
  justify-self: start;
  color: var(--muted);
}

.inquiry-form {
  display: grid;
  gap: 1rem;
}

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

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

.inquiry-form label,
.inquiry-form .form-field__label {
  display: block;
  color: var(--navy);
  font-family: "Manrope", sans-serif;
  font-size: 0.875rem;
  font-weight: 650;
}

.inquiry-form label > span,
.inquiry-form .form-field__label > span {
  display: inline;
  color: var(--terracotta-hover);
}

.inquiry-form small {
  color: var(--muted);
  font-weight: 400;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  display: block;
  width: 100%;
  min-width: 0;
  margin-top: 0.35rem;
  padding: 0.66rem 0.85rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 7px;
  font-family: "Manrope", sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.inquiry-form input,
.inquiry-form select,
.custom-select__trigger {
  height: 2.875rem;
}

.custom-select {
  position: relative;
  margin-top: 0.35rem;
}

.custom-select__trigger,
.custom-select__options {
  display: none;
}

.custom-select.is-enhanced .custom-select__native {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  opacity: 0;
}

.custom-select.is-enhanced .custom-select__trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0 0.875rem 0 0.85rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 7px;
  font-family: "Manrope", sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1;
  text-align: left;
  cursor: pointer;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.custom-select__trigger svg {
  flex: 0 0 1rem;
  transition: transform 150ms ease;
}

.custom-select.is-open .custom-select__trigger svg {
  transform: rotate(180deg);
}

.custom-select.is-enhanced .custom-select__trigger:focus-visible,
.custom-select.is-enhanced .custom-select__trigger[aria-invalid="true"] {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgb(191 88 65 / 12%);
  outline: none;
}

.custom-select.is-enhanced .custom-select__options {
  position: absolute;
  z-index: 20;
  top: calc(100% + 0.4rem);
  left: 0;
  right: 0;
  max-height: 15rem;
  overflow-y: auto;
  padding: 0.35rem;
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 7px;
  box-shadow: 0 14px 36px rgb(24 43 64 / 14%);
}

.custom-select.is-enhanced .custom-select__options:not([hidden]) {
  display: grid;
  gap: 0.15rem;
}

.custom-select__option {
  padding: 0.65rem 0.75rem;
  color: var(--ink);
  border-radius: 5px;
  font-family: "Manrope", sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.3;
  cursor: pointer;
}

.custom-select__option:hover,
.custom-select__option.is-active {
  background: #f4f6f8;
}

.custom-select__option[aria-selected="true"] {
  color: var(--navy);
  background: rgb(191 88 65 / 10%);
  font-weight: 650;
}

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

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgb(191 88 65 / 12%);
  outline: none;
}

.inquiry-form .button {
  justify-self: start;
  padding-inline: 1.25rem;
}

.site-footer {
  background: var(--white);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 1fr;
  gap: 4rem;
  padding-block: 3.75rem 2.25rem;
}

.footer-brand {
  min-width: 0;
  align-self: start;
}

.footer-brand .footer-logo {
  width: min(220px, 100%);
  height: auto !important;
  aspect-ratio: 1028 / 219;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 1.5rem;
}

.footer-brand p {
  max-width: 310px;
  color: #52525b;
  font-family: "Manrope", sans-serif;
  font-size: 0.98rem;
}

.footer-brand .footer-address {
  margin-top: 0.75rem;
  color: #71717a;
  font-size: 0.9rem;
  line-height: 1.55;
}

.footer-column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.2rem;
}

.footer-column h2 {
  margin-bottom: 1rem;
  color: var(--terracotta);
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-column strong {
  margin-top: 0.55rem;
  color: var(--navy);
  font-family: "Manrope", sans-serif;
  font-size: 0.96rem;
}

.footer-column a,
.footer-column span {
  color: var(--muted);
  font-size: 0.9rem;
}

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

.footer-bottom {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: #52525b;
  font-size: 0.86rem;
}

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

.reveal {
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 900ms cubic-bezier(0.4, 0, 0.2, 1),
    transform 1000ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes truck-arrive {
  0% { opacity: 0; transform: translateX(-15%) translateY(-2px); }
  100% { opacity: 1; transform: none; }
}

@keyframes shadow-arrive {
  from { opacity: 0; transform: translateX(-10%) scaleX(0.88); }
  to { opacity: 1; transform: none; }
}

@keyframes road-pass {
  0%, 15% { opacity: 0; transform: translateX(90%); }
  40% { opacity: 0.65; }
  100% { opacity: 0; transform: translateX(-260%); }
}

@keyframes industry-card-enter {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1050px) {
  .shell {
    width: min(calc(100% - 64px), var(--shell));
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
    padding-inline: 2rem;
  }

  .primary-nav {
    position: fixed;
    inset: 76px 0 auto;
    display: flex;
    max-height: calc(100dvh - 76px);
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 1.1rem 2rem 1.5rem;
    background: var(--warm-white);
    border-top: 1px solid var(--line);
    box-shadow: 0 18px 30px rgb(23 50 71 / 10%);
    opacity: 0;
    overflow-y: auto;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 170ms ease, transform 170ms ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .primary-nav a {
    padding: 0.75rem 0;
  }

  .primary-nav a::after {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    grid-column: 3;
    align-content: center;
    justify-items: stretch;
    gap: 5px;
    padding: 10px;
    color: var(--ink);
    background: transparent;
    border: 0;
    cursor: pointer;
  }

  .menu-toggle > span:not(.sr-only) {
    width: 100%;
    height: 2px;
    background: currentColor;
    border-radius: 99px;
    transition: opacity 170ms ease, transform 170ms ease;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-of-type(2) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-of-type(3) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-of-type(4) { transform: translateY(-7px) rotate(-45deg); }

  .store-link {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    margin-right: 0.4rem;
  }

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

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

  .about {
    grid-template-columns: 34% 1fr;
  }

  .about-copy {
    padding-right: 2rem;
  }

  .contact-grid {
    grid-template-columns: 300px 1fr;
  }
}

@media (max-width: 740px) {
  .shell {
    width: min(calc(100% - 40px), var(--shell));
  }

  .site-header,
  .header-inner {
    min-height: 68px;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    padding: 0.75rem 1.25rem;
  }

  .brand {
    width: 155px;
  }

  .store-link {
    display: none;
  }

  .menu-toggle {
    grid-column: 2;
  }

  .primary-nav {
    inset-block-start: 68px;
    max-height: calc(100dvh - 68px);
    padding-inline: 1.25rem;
  }

  .primary-nav .mobile-store-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.7rem;
    padding: 0.75rem 1rem;
    color: white;
    background: var(--terracotta);
    border-radius: 6px;
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    text-align: center;
  }

  .hero {
    padding-block: 2.75rem 3.75rem;
  }

  .hero-inner {
    gap: 1.8rem;
  }

  .truck-stage {
    width: 110%;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .service-grid,
  .product-grid,
  .industry-grid,
  .about,
  .contact-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .about-image {
    height: 270px;
    min-height: 0;
  }

  .about-copy {
    padding: 2.5rem 1.25rem 3rem;
  }

  .product-card > div {
    min-height: 200px;
  }

  .partnership-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.5rem;
  }

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

  .footer-top {
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .brand {
    width: 146px;
  }

  .truck-stage {
    width: 118%;
  }

  .hero h1 {
    font-size: 1.85rem;
  }

  .section {
    padding-block: 3.25rem;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 0.3rem;
    padding-block: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .road-line { display: none; }
  .industry-card.reveal { transition-delay: 0ms; }
  .industry-card.reveal.is-visible { animation: none; }
  .industry-card.reveal.is-visible:hover,
  .industry-card.reveal.is-visible:focus-within {
    transform: none;
  }
  .service-card:nth-child(2).reveal.is-visible::after {
    animation: none;
  }
}
