:root {
  --green-950: #0f2f1d;
  --green-900: #153b25;
  --green-800: #1d4d31;
  --green-700: #2f6e49;
  --green-600: #43845a;
  --gold-500: #d8aa3e;
  --gold-100: #f7ecd0;
  --cream: #f6f2e9;
  --surface: #fffcf5;
  --surface-soft: #eee7d7;
  --white: #ffffff;
  --ink: #101410;
  --muted: #62685f;
  --line: rgba(16, 20, 16, 0.12);
  --line-strong: rgba(16, 20, 16, 0.18);
  --shadow-soft: 0 20px 60px rgba(8, 24, 15, 0.08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1120px;
  --gutter: clamp(20px, 4vw, 36px);
  --section: 96px;
  --sticky-header-offset: 12px;
  --sticky-header-height: 96px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--sticky-header-height) + var(--sticky-header-offset));
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  overflow-y: visible;
  background: var(--cream);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

@media (pointer: fine) and (min-width: 661px) {
  body {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cpath fill='%23d8aa3e' d='M4 16h15l3 4h4v5H4z'/%3E%3Cpath fill='%23153b25' d='M8 10h9l2 6H6zM20 13h3l3 7h-4z'/%3E%3Ccircle cx='10' cy='25' r='4' fill='%23101410'/%3E%3Ccircle cx='23' cy='25' r='3' fill='%23101410'/%3E%3Ccircle cx='10' cy='25' r='1.5' fill='%23f6f2e9'/%3E%3Ccircle cx='23' cy='25' r='1.2' fill='%23f6f2e9'/%3E%3Cpath fill='%23f6f2e9' d='M9 12h5v4H8z'/%3E%3C/svg%3E") 4 4, auto;
  }

  a,
  button,
  input,
  textarea,
  select,
  label,
  .nav-toggle {
    cursor: pointer;
  }

  input,
  textarea {
    cursor: text;
  }
}

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

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--green-950);
  color: var(--white);
  transition: top 180ms ease;
}

.skip-link:focus {
  top: 16px;
}

.reveal-on-scroll {
  --reveal-delay: 0ms;
}

body.reveal-ready .reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
  transition-delay: var(--reveal-delay);
}

body.reveal-ready .reveal-on-scroll.is-revealing {
  will-change: opacity, transform;
}

body.reveal-ready .reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

body.reveal-ready .reveal-on-scroll.is-visible:not(.is-revealing) {
  transform: none;
}

.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;
}

.site-header,
.final-cta,
.problem-section,
.service-carousel,
.services-section,
.contracting-preview,
.contracting-section,
.parts-preview,
.machinery-section,
.trust-band,
.site-footer,
.stats-row {
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}

.image-banner {
  width: 100%;
  margin-inline: 0;
}

.feature-block {
  width: 100%;
  margin-inline: 0;
}

.site-header {
  position: sticky;
  top: var(--sticky-header-offset);
  z-index: 120;
  width: min(calc(var(--container) + 28px), calc(100% - var(--gutter)));
  min-height: 70px;
  margin-top: 22px;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
  align-items: center;
  gap: 18px;
  padding-block: 10px;
  padding-inline: 14px;
  border-radius: 999px;
  transition: background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(246, 242, 233, 0.94);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  min-height: 44px;
  color: var(--green-950);
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--green-950);
  color: var(--gold-500);
  font-size: 14px;
  line-height: 1;
}

.nav-toggle,
.nav-backdrop,
.drawer-actions {
  display: none;
}

.pill-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-height: 46px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
}

.pill-nav a,
.header-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.pill-nav a {
  padding: 0 15px;
  color: #31382f;
  transition: background 180ms ease, color 180ms ease;
}

.pill-nav a:hover,
.pill-nav a:focus-visible,
.pill-nav a.is-active,
.pill-nav a[aria-current="page"],
.pill-nav a[aria-current="true"] {
  background: var(--green-950);
  color: var(--white);
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-link {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.header-link-secondary {
  color: var(--green-950);
  background: transparent;
}

.header-link-primary {
  color: var(--white);
  background: var(--green-950);
  border-color: var(--green-950);
}

.header-link:hover,
.header-link:focus-visible {
  border-color: var(--green-700);
}

.header-link-primary:hover,
.header-link-primary:focus-visible {
  background: var(--green-700);
}

.header-link-secondary:hover,
.header-link-secondary:focus-visible {
  background: var(--surface);
}

.hero {
  width: min(820px, calc(100% - (var(--gutter) * 2)));
  margin: clamp(42px, 5.5vw, 70px) auto 56px;
  text-align: center;
}

.hero-kicker,
.eyebrow,
.section-marker,
.service-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  color: var(--green-700);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-kicker,
.eyebrow {
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold-500);
}

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

h1,
h2,
h3 {
  color: var(--ink);
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin: 20px auto 20px;
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.01;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.08;
}

h3 {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.hero p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 19px);
  line-height: 1.65;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 142px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button-primary,
.button-dark {
  background: var(--green-950);
  color: var(--white);
}

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

.button-secondary {
  border-color: var(--line-strong);
  background: var(--surface);
  color: var(--green-950);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--green-700);
}

.button-light {
  background: var(--white);
  color: var(--green-950);
}

.machine-scene,
.mini-image,
.service-image,
.machinery-image {
  position: relative;
  overflow: hidden;
  background-color: var(--green-800);
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

.mini-image,
.service-image,
.machinery-card img {
  transition: transform 420ms ease;
}

.machine-scene {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: var(--shadow-soft);
}

.machine-scene::before,
.mini-image::before,
.service-image::before,
.machinery-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
}

.machine-scene::after,
.mini-image::after,
.service-image::after,
.machinery-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.machine-scene::before,
.image-fields::before,
.image-rows::before,
.image-consultancy::before {
  background:
    linear-gradient(165deg, rgba(243, 235, 201, 0.78) 0%, rgba(119, 151, 80, 0.92) 34%, rgba(37, 85, 49, 0.95) 66%, rgba(8, 24, 15, 1) 100%);
}

.machine-scene::after {
  background:
    linear-gradient(180deg, rgba(8, 24, 15, 0.04) 0%, rgba(8, 24, 15, 0.18) 45%, rgba(8, 24, 15, 0.62) 100%),
    repeating-linear-gradient(168deg, rgba(255, 255, 255, 0.13) 0 1px, transparent 1px 34px);
}

.machine-scene-hero {
  aspect-ratio: 21 / 8;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: clamp(32px, 6vw, 84px);
  border-radius: 0;
  border: 0;
  box-shadow: none;
  background-image:
    linear-gradient(90deg, rgba(8, 24, 15, 0.78) 0%, rgba(8, 24, 15, 0.48) 38%, rgba(8, 24, 15, 0.12) 72%),
    url("https://unsplash.com/photos/PTc0sKV4igo/download?force=true&w=2400");
  background-position: center 58%;
}

.machine-scene-hero::before {
  display: none;
}

.machine-scene-hero::after {
  background:
    linear-gradient(180deg, rgba(246, 242, 233, 0.72) 0%, rgba(246, 242, 233, 0.34) 7%, rgba(246, 242, 233, 0) 18%),
    linear-gradient(180deg, rgba(8, 24, 15, 0.02) 0%, rgba(8, 24, 15, 0.24) 100%);
}

.banner-copy,
.machine-scene-wide > div {
  position: relative;
  z-index: 2;
  max-width: 520px;
  color: var(--white);
}

.banner-copy span,
.machine-scene-wide span,
.machine-scene-cta span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-100);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.banner-copy strong {
  display: block;
  max-width: 500px;
  color: var(--white);
  font-size: clamp(28px, 3.8vw, 42px);
  line-height: 1.08;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 34px;
  padding-block: 10px;
  background: transparent;
}

.stats-row div {
  min-height: 96px;
  padding: 14px 24px;
  border-right: 1px solid var(--line);
}

.stats-row div:last-child {
  border-right: 0;
}

.stats-row strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green-950);
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1;
}

.stats-row span {
  display: block;
  max-width: 150px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.problem-section {
  display: flex;
  justify-content: center;
  padding-block: var(--section) 64px;
  text-align: center;
}

.section-marker {
  align-self: start;
  color: var(--muted);
}

.problem-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 760px;
}

.problem-content h2,
.split-heading h2,
.machinery-section h2,
.machine-scene-wide h2,
.trust-band p,
.final-cta h2 {
  margin-bottom: 0;
}

.problem-content p,
.split-heading p,
.machinery-intro p,
.service-card p,
.machinery-card p,
.mini-card p,
.site-footer p {
  color: var(--muted);
}

.problem-content p,
.split-heading p {
  max-width: 520px;
}

.problem-content h2 {
  margin-top: 18px;
}

.problem-content p {
  margin-top: 22px;
  margin-bottom: 0;
}

.service-carousel {
  position: relative;
  padding-bottom: var(--section);
}

.solution-heading {
  display: flex;
  justify-content: center;
  margin-bottom: 34px;
}

.carousel-viewport {
  overflow-x: hidden;
  overflow-y: hidden;
  scrollbar-width: none;
}

.carousel-viewport::-webkit-scrollbar {
  display: none;
}

.carousel-track {
  display: flex;
  align-items: stretch;
  gap: 22px;
  min-width: max-content;
}

.carousel-track.is-moving {
  will-change: transform;
}

.mini-card,
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 0;
  border-radius: var(--radius-md);
  background: rgba(255, 252, 245, 0.82);
}

.mini-card {
  flex: 0 0 clamp(260px, 25vw, 310px);
  min-height: 330px;
  padding: 0 0 18px;
  background: transparent;
}

.mini-card span:not(.floating-dot) {
  display: block;
  margin: 16px 0 8px;
  color: var(--green-700);
  font-size: 12px;
  font-weight: 900;
}

.mini-card h3,
.mini-card p,
.service-card h3,
.service-card p,
.service-label {
  margin-inline: 0;
}

.mini-card h3,
.service-card h3 {
  margin-bottom: 8px;
  color: var(--green-950);
}

.mini-card p,
.service-card p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.55;
}

.mini-image,
.service-image,
.machinery-image {
  border-radius: 15px;
}

.mini-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 0;
}

.floating-dot {
  display: none;
}

.image-irrigation::before {
  display: none;
}

.image-workshop::before,
.image-assembly::before {
  display: none;
}

.image-diagnostic::before {
  display: none;
}

.image-fields::before,
.image-rows::before,
.image-breakdown::before,
.image-maintenance::before,
.image-consultancy::before {
  display: none;
}

.image-irrigation {
  background-image: url("https://unsplash.com/photos/3CF3FGFqJQ0/download?force=true&w=900");
  background-position: center 58%;
}

.image-workshop {
  background-image: url("https://unsplash.com/photos/PTc0sKV4igo/download?force=true&w=900");
  background-position: center;
}

.image-fields {
  background-image: url("https://unsplash.com/photos/tj1kHwu7teQ/download?force=true&w=900");
  background-position: center 55%;
}

.image-rows {
  background-image: url("https://unsplash.com/photos/M_nJfqq5Jz8/download?force=true&w=900");
  background-position: center;
}

.image-breakdown {
  background-image: url("https://unsplash.com/photos/M_nJfqq5Jz8/download?force=true&w=900");
  background-position: center;
}

.image-maintenance {
  background-image: url("https://unsplash.com/photos/3CF3FGFqJQ0/download?force=true&w=900");
  background-position: center 58%;
}

.image-diagnostic {
  background-image: url("https://unsplash.com/photos/3CF3FGFqJQ0/download?force=true&w=900");
  background-position: center 58%;
}

.image-assembly {
  background-image: url("https://unsplash.com/photos/PTc0sKV4igo/download?force=true&w=900");
  background-position: center;
}

.image-consultancy {
  background-image: url("https://unsplash.com/photos/tj1kHwu7teQ/download?force=true&w=900");
  background-position: center 55%;
}

.mini-image::after,
.service-image::after,
.machinery-image::after {
  background: linear-gradient(180deg, rgba(8, 24, 15, 0.02), rgba(8, 24, 15, 0.24));
}

.feature-block {
  padding-bottom: var(--section);
}

.machine-scene-wide {
  aspect-ratio: 16 / 6.6;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding-block: clamp(42px, 7vw, 88px);
  padding-inline: max(var(--gutter), calc((100vw - var(--container)) / 2));
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
  background-color: var(--green-800);
  background-image: none;
}

.machine-scene-wide::before {
  background-image: url("assets/feature-farmer.png");
  background-position: center 46%;
  background-size: cover;
  transform: scaleX(-1);
}

.machine-scene-wide::after {
  background:
    linear-gradient(180deg, rgba(246, 242, 233, 0.74) 0%, rgba(246, 242, 233, 0.36) 7%, rgba(246, 242, 233, 0) 20%),
    linear-gradient(90deg, rgba(8, 24, 15, 0.76) 0%, rgba(8, 24, 15, 0.46) 38%, rgba(8, 24, 15, 0.1) 72%),
    linear-gradient(180deg, rgba(8, 24, 15, 0) 0%, rgba(8, 24, 15, 0.38) 100%);
}

.machine-scene-wide > div {
  max-width: 610px;
}

.machine-scene-wide h2 {
  max-width: 650px;
  color: var(--white);
}

.services-section {
  padding-bottom: var(--section);
}

.contracting-preview {
  padding: 72px 0 96px;
}

.contracting-preview-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
  margin-bottom: 32px;
}

.contracting-preview-copy {
  max-width: 760px;
}

.contracting-preview-copy h2 {
  margin-bottom: 14px;
}

.contracting-preview-copy p {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
}

.contracting-preview-action {
  display: flex;
  justify-content: flex-end;
}

.contracting-preview-grid,
.contracting-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.contracting-card,
.contracting-category-card,
.contracting-list-card {
  border: 1px solid rgba(36, 86, 54, 0.14);
  border-radius: 8px;
  background: rgba(255, 252, 245, 0.76);
  box-shadow: 0 16px 42px rgba(8, 24, 15, 0.04);
}

.contracting-card {
  display: flex;
  flex-direction: column;
  min-height: 210px;
  padding: 22px;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.contracting-card h3,
.contracting-category-card h3 {
  margin-bottom: 10px;
  color: var(--green-950);
}

.contracting-card p,
.contracting-intro p,
.contracting-panel p,
.contracting-category-card li,
.contracting-list-card li {
  color: var(--muted);
}

.contracting-card p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.55;
}

.contracting-card a {
  width: fit-content;
  margin-top: auto;
  padding-top: 18px;
  color: var(--green-700);
  font-size: 13px;
  font-weight: 900;
}

.contracting-card a:hover,
.contracting-card a:focus-visible {
  color: var(--green-950);
}

.contracting-hero {
  margin-bottom: 40px;
}

.contracting-banner {
  width: 100%;
  margin-inline: 0;
}

.machine-scene-contracting {
  background-image:
    linear-gradient(90deg, rgba(8, 24, 15, 0.78) 0%, rgba(8, 24, 15, 0.46) 40%, rgba(8, 24, 15, 0.12) 72%),
    url("https://unsplash.com/photos/jmunq_9UIHA/download?force=true&w=2400");
  background-position: center 54%;
}

.contracting-section {
  padding-block: var(--section);
}

.contracting-intro {
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: 34px;
  text-align: center;
}

.contracting-intro h2,
.contracting-panel h2 {
  margin-top: 18px;
  margin-bottom: 0;
}

.contracting-intro p,
.contracting-panel p {
  max-width: 620px;
  margin-top: 18px;
  margin-inline: auto;
  margin-bottom: 0;
}

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

.contracting-category-card,
.contracting-list-card {
  padding: clamp(22px, 3vw, 30px);
}

.contracting-category-card ul,
.contracting-list-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 18px;
}

.contracting-category-card li,
.contracting-list-card li {
  padding-left: 4px;
  font-size: 15px;
  line-height: 1.5;
}

.contracting-service-button {
  appearance: none;
  display: inline;
  width: fit-content;
  margin: -3px 0;
  padding: 3px 6px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: inherit;
  font: inherit;
  line-height: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.contracting-service-button:hover,
.contracting-service-button:focus-visible {
  background: rgba(198, 148, 54, 0.12);
  color: var(--green-950);
}

.contracting-service-button:focus-visible {
  outline: 2px solid rgba(198, 148, 54, 0.72);
  outline-offset: 2px;
}

.contracting-split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.contracting-equipment-section {
  display: grid;
  gap: 34px;
}

.contracting-equipment-intro {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.contracting-equipment-intro .eyebrow {
  margin-inline: auto;
}

.contracting-equipment-intro p {
  margin-inline: auto;
}

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

.contracting-equipment-card {
  display: grid;
  place-items: center;
  min-height: 78px;
  padding: 18px;
  border: 1px solid rgba(36, 86, 54, 0.14);
  border-radius: 8px;
  background: rgba(255, 252, 245, 0.76);
  box-shadow: 0 16px 42px rgba(8, 24, 15, 0.04);
}

.contracting-equipment-card h3 {
  margin: 0;
  color: var(--green-950);
  font-size: 16px;
  line-height: 1.25;
  text-align: center;
}

.contracting-list-card {
  background: var(--surface);
}

.contracting-list-card li {
  color: var(--green-950);
  font-weight: 800;
}

.contracting-sector-section .contracting-intro {
  margin-bottom: 30px;
}

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

.contracting-sector-card {
  padding: clamp(22px, 3vw, 28px);
  border: 1px solid rgba(36, 86, 54, 0.14);
  border-radius: 8px;
  background: rgba(255, 252, 245, 0.76);
  box-shadow: 0 16px 42px rgba(8, 24, 15, 0.04);
}

.contracting-sector-card h3 {
  margin-bottom: 10px;
  color: var(--green-950);
  font-size: 20px;
}

.contracting-sector-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.machine-scene-contracting-cta {
  background-image: url("https://unsplash.com/photos/jmunq_9UIHA/download?force=true&w=1800");
  background-position: center 52%;
}

.contracting-service-modal,
.contracting-service-modal-backdrop {
  position: fixed;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.contracting-service-modal {
  z-index: 210;
  display: grid;
  place-items: center;
  padding: 24px;
}

.contracting-service-modal-backdrop {
  z-index: 200;
  background: rgba(8, 24, 15, 0.56);
}

.contracting-modal-open {
  overflow: hidden;
}

.contracting-modal-open .contracting-service-modal,
.contracting-modal-open .contracting-service-modal-backdrop {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.contracting-service-modal-panel {
  position: relative;
  width: min(560px, 100%);
  max-height: min(640px, calc(100vh - 48px));
  overflow: auto;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(36, 86, 54, 0.18);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 30px 80px rgba(8, 24, 15, 0.24);
}

.contracting-service-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--green-950);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: background 160ms ease;
}

.contracting-service-modal-close:hover,
.contracting-service-modal-close:focus-visible {
  background: rgba(198, 148, 54, 0.12);
}

.contracting-service-modal-close:focus-visible {
  outline: 2px solid rgba(198, 148, 54, 0.72);
  outline-offset: 2px;
}

.contracting-service-modal-content {
  display: grid;
  gap: 16px;
  padding-right: 34px;
}

.contracting-service-modal-category {
  width: fit-content;
  color: var(--green-700);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contracting-service-modal-content h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.08;
}

.contracting-service-modal-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.contracting-service-modal-best {
  display: grid;
  gap: 8px;
  padding: 14px 16px;
  border: 1px solid rgba(36, 86, 54, 0.14);
  border-radius: 14px;
  background: rgba(255, 252, 245, 0.76);
}

.contracting-service-modal-best[hidden] {
  display: none;
}

.contracting-service-modal-best span {
  color: var(--green-950);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contracting-service-modal-content .button {
  justify-self: center;
  margin-top: 4px;
}

.contracting-page .site-footer {
  border-top: 0;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: end;
  margin-bottom: 32px;
}

.split-heading h2 {
  max-width: 680px;
}

.split-heading p {
  margin-bottom: 6px;
}

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

.service-card {
  min-height: 100%;
  padding: 14px 14px 24px;
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.service-image {
  aspect-ratio: 4 / 3;
  margin-bottom: 20px;
}

.service-label {
  margin-bottom: 12px;
  color: var(--gold-500);
}

.service-card h3 {
  margin-bottom: 10px;
}

.machinery-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 34px;
  padding-block: 72px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.machinery-intro {
  max-width: 680px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.machinery-intro h2 {
  margin-top: 18px;
}

.machinery-intro p {
  max-width: 620px;
  margin-top: 18px;
  margin-bottom: 0;
}

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

.machinery-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 170px;
  padding: 12px 12px 24px;
  border: 1px solid rgba(36, 86, 54, 0.14);
  border-radius: 8px;
  background: rgba(255, 252, 245, 0.72);
  text-align: center;
  overflow: hidden;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.machinery-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  margin-bottom: 18px;
  border-radius: 6px;
  object-fit: cover;
}

.machinery-card h3 {
  margin-bottom: 10px;
  color: var(--green-950);
}

.machinery-card p {
  max-width: 260px;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.55;
}

@media (hover: hover) and (pointer: fine) {
  .service-card:hover,
  .contracting-card:hover,
  .machinery-card:hover {
    border-color: rgba(36, 86, 54, 0.26);
    box-shadow: 0 18px 44px rgba(8, 24, 15, 0.08);
    transform: translateY(-3px);
  }

  .mini-card:hover .mini-image,
  .service-card:hover .service-image,
  .machinery-card:hover img {
    transform: scale(1.025);
  }
}

.parts-preview {
  padding: 72px 0 96px;
  margin-bottom: 0;
}

.parts-preview > .eyebrow {
  margin-bottom: 28px;
}

.parts-preview-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.86fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  margin-bottom: 30px;
}

.parts-preview-heading h2 {
  max-width: 650px;
  margin: 0;
}

.parts-preview-heading p {
  margin-bottom: 0;
  color: var(--muted);
}

.parts-preview-heading .support-copy {
  margin-top: 16px;
  color: var(--green-950);
  font-weight: 800;
}

.parts-preview-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

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

.parts-preview-card {
  display: flex;
  flex-direction: column;
  min-height: 220px;
  padding: 20px;
  border: 1px solid rgba(36, 86, 54, 0.14);
  border-radius: 14px;
  background: rgba(255, 252, 245, 0.84);
  transition: border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.parts-preview-card span,
.cart-product-meta,
.empty-state,
.shop-note,
.filter-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
}

.parts-preview-card span {
  color: var(--gold-500);
}

.parts-preview-card h3 {
  margin: 0 0 14px;
  color: var(--green-950);
}

.parts-logo-frame {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  min-height: 0;
  margin-bottom: 18px;
  padding: clamp(22px, 4vw, 38px);
  border-radius: 10px;
  background: var(--white);
  overflow: hidden;
}

.parts-logo {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

.parts-logo-john-deere {
  max-width: 84%;
  max-height: 86%;
}

.parts-preview-card p {
  min-height: 48px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.parts-preview-card a {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 38px;
  margin-top: auto;
  color: var(--green-950);
  font-size: 13px;
  font-weight: 900;
}

@media (hover: hover) and (pointer: fine) {
  .parts-preview-card:hover {
    border-color: rgba(36, 86, 54, 0.28);
    box-shadow: 0 18px 44px rgba(8, 24, 15, 0.08);
    transform: translateY(-3px);
  }
}

.shop-page {
  background:
    linear-gradient(180deg, rgba(255, 252, 245, 0.82), rgba(246, 242, 233, 0) 360px),
    var(--cream);
}

.shop-shell {
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  max-width: 100%;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 44px) 0 var(--section);
}

.shop-search-form,
.shop-toolbar {
  display: grid;
  gap: 12px;
}

.shop-search-form label,
.shop-filter-group legend {
  color: var(--green-950);
  font-size: 13px;
  font-weight: 900;
}

.shop-search-form input,
.shop-search-inline input {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: var(--white);
  color: var(--green-950);
  font: inherit;
  font-size: 15px;
  padding: 0 16px;
}

.shop-search-form input::placeholder,
.shop-search-inline input::placeholder {
  color: rgba(15, 47, 29, 0.54);
}

.shop-search-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.shop-cart-button {
  position: fixed;
  right: max(18px, calc((100vw - var(--container)) / 2));
  bottom: 20px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid rgba(216, 170, 62, 0.42);
  border-radius: 999px;
  background: var(--green-950);
  color: var(--white);
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 18px 44px rgba(8, 24, 15, 0.18);
  transform-origin: 50% 100%;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.shop-cart-button.has-items {
  border-color: rgba(216, 170, 62, 0.74);
  box-shadow: 0 20px 48px rgba(8, 24, 15, 0.22);
}

.shop-cart-button.is-shaking {
  animation: cartShake 420ms ease both;
}

.cart-button-icon {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.cart-button-label {
  line-height: 1;
}

.cart-count {
  display: inline-grid;
  place-items: center;
  min-width: 26px;
  height: 26px;
  padding-inline: 7px;
  border-radius: 999px;
  background: var(--gold-500);
  color: var(--green-950);
  font-size: 12px;
  font-weight: 900;
}

@keyframes cartShake {
  0%,
  100% {
    transform: translateX(0) rotate(0deg);
  }

  18% {
    transform: translateX(-3px) rotate(-2deg);
  }

  36% {
    transform: translateX(3px) rotate(2deg);
  }

  54% {
    transform: translateX(-2px) rotate(-1deg);
  }

  72% {
    transform: translateX(2px) rotate(1deg);
  }
}

.shop-controls {
  display: grid;
  gap: 18px;
  width: 100%;
  max-width: 100%;
  margin: 18px 0 38px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 252, 245, 0.78);
}

.shop-search-inline label {
  display: block;
  margin-bottom: 8px;
  color: var(--green-950);
  font-size: 13px;
  font-weight: 900;
}

.shop-search-inline .shop-search-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}

.shop-search-inline .button {
  min-height: 52px;
  white-space: nowrap;
}

.mobile-filter-toggle,
.filter-drawer-header {
  display: none;
}

.filter-overlay {
  position: fixed;
  inset: 0;
  z-index: 124;
  background: rgba(8, 24, 15, 0.48);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.filter-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
}

.shop-filter-group {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.filter-pill {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--surface);
  color: var(--green-950);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.filter-pill[aria-pressed="true"] {
  border-color: var(--green-950);
  background: var(--green-950);
  color: var(--white);
}

.filter-pill:disabled,
.shop-search-inline .button:disabled,
.mobile-filter-toggle:disabled {
  cursor: wait;
  opacity: 0.56;
}

.shop-section {
  padding: 44px 0;
  border-top: 1px solid var(--line);
}

.search-results-section {
  animation: searchResultsFade 180ms ease both;
}

@keyframes searchResultsFade {
  from {
    opacity: 0.35;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.shop-section:first-of-type {
  border-top: 0;
}

.shop-section-heading {
  display: block;
  margin-bottom: 24px;
}

.shop-section-heading .eyebrow {
  margin-bottom: 14px;
}

.shop-section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 3vw, 40px);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  max-width: 100%;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 100%;
  border: 1px solid rgba(36, 86, 54, 0.14);
  border-radius: 12px;
  background: rgba(255, 252, 245, 0.92);
  overflow: hidden;
  transition: border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.product-card-skeleton {
  pointer-events: none;
}

.skeleton-block {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(36, 86, 54, 0.1);
}

.skeleton-block::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 252, 245, 0.72), transparent);
  content: "";
  transform: translateX(-100%);
  animation: skeletonShimmer 1400ms ease-in-out infinite;
}

.skeleton-image {
  width: 100%;
  height: 100%;
  min-height: 132px;
  background: rgba(36, 86, 54, 0.08);
}

.skeleton-title {
  width: 82%;
  height: 18px;
}

.skeleton-line {
  width: 100%;
  height: 12px;
}

.skeleton-line-short {
  width: 64%;
}

.skeleton-button {
  width: 100%;
  min-height: 38px;
  border-radius: 999px;
}

@keyframes skeletonShimmer {
  to {
    transform: translateX(100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .skeleton-block::after {
    animation: none;
  }
}

.product-image-box {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  padding: 12px;
  border-bottom: 1px solid rgba(36, 86, 54, 0.1);
  background: var(--white);
}

.product-image-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-image-box span {
  max-width: 220px;
  color: var(--green-950);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.3;
  text-align: center;
}

.product-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: 12px;
}

.product-card h3 {
  margin: 0;
  color: var(--green-950);
  font-size: 15px;
  line-height: 1.2;
}

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

.product-summary {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}

.product-actions .button {
  min-width: 0;
  min-height: 38px;
  padding: 0 10px;
  font-size: 12px;
}

.section-more-actions {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.section-more-actions .button {
  min-width: 140px;
}

.section-more-actions-floating {
  position: sticky;
  top: 84px;
  z-index: 20;
  justify-content: flex-end;
  margin: -8px 0 14px;
  pointer-events: none;
}

.section-more-actions-floating .button {
  min-width: 116px;
  min-height: 36px;
  padding: 0 14px;
  border-color: rgba(36, 86, 54, 0.22);
  background: rgba(255, 252, 245, 0.96);
  box-shadow: 0 12px 30px rgba(8, 24, 15, 0.13);
  pointer-events: auto;
}

@media (hover: hover) and (pointer: fine) {
  .product-card:hover {
    border-color: rgba(36, 86, 54, 0.28);
    box-shadow: 0 18px 44px rgba(8, 24, 15, 0.08);
    transform: translateY(-3px);
  }
}

.shop-empty {
  display: none;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.shop-empty.is-visible {
  display: block;
}

.shop-empty h2 {
  margin-bottom: 10px;
  font-size: 26px;
}

.shop-empty p {
  margin-bottom: 18px;
  color: var(--muted);
}

.part-request-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 36px;
  padding: clamp(24px, 4vw, 42px);
  border-radius: var(--radius-md);
  background: var(--green-950);
  color: var(--white);
}

.part-request-band h2 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(28px, 3.4vw, 42px);
}

.part-request-band p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.part-request-band .button {
  white-space: nowrap;
}

.product-modal,
.product-modal-backdrop {
  position: fixed;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.product-modal {
  z-index: 190;
  display: grid;
  place-items: center;
  padding: 24px;
}

.product-modal-backdrop {
  z-index: 180;
  background: rgba(8, 24, 15, 0.5);
}

.product-modal-open {
  overflow: hidden;
}

.product-modal-open .product-modal,
.product-modal-open .product-modal-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.product-modal-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 44px);
  width: min(940px, 100%);
  max-height: min(720px, calc(100vh - 48px));
  overflow: auto;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(36, 86, 54, 0.18);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 30px 80px rgba(8, 24, 15, 0.22);
}

.product-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--green-950);
  font: inherit;
  font-weight: 900;
}

.product-modal-image {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  align-self: start;
  padding: 24px;
  border: 1px solid rgba(36, 86, 54, 0.12);
  border-radius: 14px;
  background: var(--white);
}

.product-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-modal-image span {
  color: var(--green-950);
  font-weight: 900;
  text-align: center;
}

.product-modal-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 34px;
}

.product-modal-brand {
  margin-bottom: 12px;
  color: var(--green-700);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-modal-content h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.06;
}

.product-modal-content p {
  color: var(--muted);
}

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(8, 24, 15, 0.48);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 130;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: min(92vw, 440px);
  height: 100dvh;
  max-height: 100dvh;
  min-height: 0;
  overflow: hidden;
  background: var(--surface);
  box-shadow: -24px 0 60px rgba(8, 24, 15, 0.18);
  transform: translateX(104%);
  visibility: hidden;
  transition: transform 260ms ease, visibility 260ms ease;
}

body.cart-open {
  overflow: hidden;
}

body.filter-open {
  overflow: hidden;
}

body.cart-open .cart-overlay {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

body.filter-open .filter-overlay {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

body.cart-open .cart-drawer {
  transform: translateX(0);
  visibility: visible;
}

.cart-header,
.cart-footer {
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.cart-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.cart-header h2 {
  margin-bottom: 0;
  font-size: 24px;
}

.cart-close,
.quantity-button,
.remove-item {
  border: 1px solid var(--line-strong);
  background: var(--surface);
  color: var(--green-950);
  font: inherit;
  font-weight: 900;
}

.cart-close {
  width: 44px;
  height: 44px;
  border-radius: 999px;
}

.cart-items {
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 8px 18px 18px;
}

.cart-item {
  display: grid;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item h3 {
  margin-bottom: 4px;
  font-size: 16px;
}

.cart-product-meta {
  color: var(--green-700);
}

.cart-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.quantity-control {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.quantity-button {
  width: 38px;
  height: 38px;
  border-radius: 999px;
}

.quantity-control span {
  min-width: 28px;
  color: var(--green-950);
  font-weight: 900;
  text-align: center;
}

.remove-item {
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
}

.cart-empty {
  padding: 24px 0;
  color: var(--muted);
}

.cart-footer {
  position: sticky;
  bottom: 0;
  z-index: 1;
  display: grid;
  gap: 10px;
  border-top: 1px solid var(--line);
  border-bottom: 0;
  background: var(--surface);
  padding-bottom: calc(18px + env(safe-area-inset-bottom));
}

.cart-footer .button {
  width: 100%;
}

.cart-footer .button[disabled] {
  opacity: 0.5;
  pointer-events: none;
}

.trust-band {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
  padding-block: var(--section);
}

.trust-band > span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold-500);
  color: var(--green-700);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.trust-band div {
  display: grid;
}

.trust-band p {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--green-950);
  font-size: clamp(26px, 3.4vw, 42px);
}

.trust-band p:first-child {
  padding-top: 0;
}

.final-cta {
  padding-bottom: 0;
}

.machine-scene-cta {
  min-height: 0;
  display: grid;
  place-items: center;
  padding: clamp(34px, 5vw, 64px);
  border: 0;
  border-radius: 24px;
  background-image: url("https://unsplash.com/photos/PTc0sKV4igo/download?force=true&w=1800");
  background-position: center 58%;
  background-size: cover;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.machine-scene-cta::after {
  display: block;
  background:
    linear-gradient(180deg, rgba(8, 24, 15, 0.44), rgba(8, 24, 15, 0.74)),
    linear-gradient(90deg, rgba(8, 24, 15, 0.24), rgba(8, 24, 15, 0.08), rgba(8, 24, 15, 0.24));
}

.machine-scene-cta > * {
  position: relative;
  z-index: 2;
}

.machine-scene-cta span {
  color: var(--gold-100);
}

.machine-scene-cta h2 {
  max-width: 680px;
  color: var(--white);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

.machine-scene-cta p {
  max-width: 560px;
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.65;
}

.signup-form {
  display: grid;
  grid-template-columns: minmax(170px, 1fr) minmax(210px, 1.1fr) auto;
  gap: 8px;
  width: min(700px, 100%);
  margin: 30px auto 0;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 252, 245, 0.12);
  backdrop-filter: blur(10px);
}

.signup-form input,
.signup-form button {
  min-height: 52px;
  border-radius: 8px;
  font: inherit;
  font-size: 14px;
}

.signup-form input {
  width: 100%;
  border: 1px solid var(--line-strong);
  background: var(--white);
  color: var(--green-950);
  padding: 0 18px;
}

.signup-form input::placeholder {
  color: rgba(15, 47, 29, 0.62);
}

.signup-form button {
  border: 0;
  background: var(--white);
  color: var(--green-950);
  cursor: pointer;
  font-weight: 800;
  padding: 0 24px;
  white-space: nowrap;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.signup-form button:hover,
.signup-form button:focus-visible {
  background: var(--gold-100);
  transform: translateY(-1px);
}

.legal-page {
  width: min(840px, calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 92px) 0 var(--section);
}

.legal-page h1 {
  margin-top: 18px;
  margin-bottom: 24px;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 0.98;
}

.legal-page h2 {
  margin-top: 34px;
  margin-bottom: 10px;
  font-size: clamp(22px, 3vw, 30px);
}

.legal-page p {
  max-width: 760px;
  color: var(--muted);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) minmax(170px, 0.7fr) minmax(150px, 0.55fr) minmax(150px, 0.55fr);
  gap: clamp(24px, 4vw, 46px);
  align-items: start;
  padding-block: 56px 30px;
  border-top: 1px solid var(--line);
}

.footer-brand {
  margin-bottom: 14px;
}

.footer-main {
  display: grid;
  gap: 18px;
}

.site-footer p {
  max-width: 390px;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.65;
}

.footer-column {
  display: grid;
  gap: 10px;
}

.footer-column span,
.footer-note span {
  display: block;
  margin-bottom: 2px;
  color: var(--green-950);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-column a,
.footer-bottom a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.footer-column a:hover,
.footer-column a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--green-700);
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 252, 245, 0.72);
  color: var(--green-950);
  font-size: 13px;
  font-weight: 900;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  border-color: rgba(216, 170, 62, 0.6);
  background: var(--surface);
  transform: translateY(-1px);
}

.footer-socials svg {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  padding: 5px;
  border-radius: 999px;
  background: var(--green-950);
  color: var(--gold-500);
  fill: currentColor;
  flex: 0 0 auto;
}

.footer-note {
  color: var(--muted);
  font-weight: 700;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 18px;
  margin-top: 10px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  max-width: none;
  color: var(--muted);
}

:focus-visible {
  outline: 3px solid rgba(216, 170, 62, 0.78);
  outline-offset: 4px;
}

@media (max-width: 980px) {
  :root {
    --section: 72px;
  }

  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
  }

  .header-actions {
    justify-self: center;
  }

  .hero {
    margin-top: 46px;
  }

  .machine-scene-hero,
  .machine-scene-wide {
    aspect-ratio: auto;
    min-height: 430px;
  }

  .stats-row,
  .service-grid,
  .contracting-preview-grid,
  .parts-preview-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-row div:nth-child(2) {
    border-right: 0;
  }

  .stats-row div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .problem-section,
  .problem-content,
  .split-heading,
  .contracting-preview-heading,
  .contracting-split-section,
  .parts-preview-heading,
  .filter-grid,
  .machinery-section,
  .trust-band,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .mini-card {
    flex-basis: clamp(260px, 42vw, 300px);
  }

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

  .contracting-category-grid {
    grid-template-columns: 1fr;
  }

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

  .machinery-section {
    padding-block: 64px;
  }

  .part-request-band {
    grid-template-columns: 1fr;
  }

  .part-request-band .button {
    width: fit-content;
  }
}

@media (max-width: 660px) {
  :root {
    --gutter: 18px;
    --section: 52px;
  }

  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overflow-x: clip;
  }

  body {
    line-height: 1.6;
  }

  body.nav-open,
  body.filter-open,
  body.cart-open,
  body.contracting-modal-open {
    overflow: hidden;
  }

  .site-header {
    min-height: auto;
    margin-top: 16px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    padding-inline: 10px;
  }

  .brand {
    justify-self: start;
    width: 100%;
    font-size: 15px;
  }

  .nav-toggle {
    position: relative;
    z-index: 110;
    display: inline-grid;
    place-items: center;
    justify-self: end;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    background: var(--surface);
    cursor: pointer;
  }

  .nav-toggle span {
    position: absolute;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--green-950);
    transition: transform 220ms ease, opacity 180ms ease;
  }

  .nav-toggle span:nth-child(1) {
    transform: translateY(-6px);
  }

  .nav-toggle span:nth-child(3) {
    transform: translateY(6px);
  }

  .nav-open .nav-toggle span:nth-child(1) {
    transform: rotate(45deg);
  }

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

  .nav-open .nav-toggle span:nth-child(3) {
    transform: rotate(-45deg);
  }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    width: 100vw;
    max-width: 100vw;
    z-index: 80;
    display: block;
    background: rgba(8, 24, 15, 0.42);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 220ms ease, visibility 220ms ease;
  }

  .nav-open .nav-backdrop {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .pill-nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    width: min(82vw, 320px);
    max-width: 100vw;
    height: 100dvh;
    max-height: 100dvh;
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px;
    padding: 88px 18px 22px;
    border: 0;
    border-left: 1px solid var(--line);
    border-radius: 0;
    background: var(--surface);
    box-shadow: -24px 0 60px rgba(8, 24, 15, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translateX(104%);
    visibility: hidden;
    transition: transform 260ms ease, opacity 220ms ease, visibility 260ms ease;
  }

  .nav-open .pill-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
    visibility: visible;
  }

  .pill-nav a {
    justify-content: flex-start;
    min-height: 52px;
    width: 100%;
    padding: 0 16px;
    border-radius: 12px;
    color: var(--green-950);
    font-size: 15px;
    background: transparent;
  }

  .header-actions {
    display: none;
  }

  .drawer-actions {
    display: grid;
    gap: 10px;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--line);
  }

  .drawer-actions .header-link {
    justify-content: center;
    width: 100%;
    min-height: 52px;
    border-radius: 12px;
    font-size: 14px;
  }

  .hero {
    width: min(100% - (var(--gutter) * 2), 820px);
    margin-top: 34px;
    margin-bottom: 36px;
  }

  h1 {
    font-size: clamp(36px, 10.8vw, 50px);
  }

  h2 {
    font-size: clamp(28px, 8.2vw, 38px);
  }

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

  .hero-actions,
  .cta-actions {
    align-items: stretch;
  }

  .button {
    flex: 1 1 100%;
    min-height: 50px;
  }

  .contracting-service-modal {
    align-items: end;
    padding: 14px;
  }

  .contracting-service-modal-panel {
    width: 100%;
    max-height: calc(100dvh - 28px);
    padding: 22px 18px 18px;
    border-radius: 18px;
  }

  .contracting-service-modal-content {
    padding-right: 0;
  }

  .contracting-service-modal-content h2 {
    padding-right: 42px;
  }

  .contracting-service-modal-content .button {
    justify-self: center;
  }

  .machine-scene-hero,
  .machine-scene-wide {
    min-height: 360px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-end;
    padding: 20px;
  }

  .banner-copy strong {
    font-size: clamp(25px, 8vw, 34px);
  }

  .stats-row,
  .service-grid,
  .contracting-preview-grid,
  .parts-preview-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .stats-row div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stats-row div:last-child {
    border-bottom: 0;
  }

  .problem-section {
    padding-block: 54px 34px;
  }

  .problem-content h2 {
    margin-top: 16px;
  }

  .problem-content p,
  .split-heading p,
  .machinery-intro p {
    font-size: 15px;
    line-height: 1.62;
  }

  .solution-heading {
    margin-bottom: 24px;
  }

  .machinery-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .machinery-card {
    min-height: auto;
    padding: 10px 10px 20px;
  }

  .machinery-card img {
    aspect-ratio: 16 / 9;
    margin-bottom: 16px;
  }

  .machinery-card p {
    max-width: 300px;
  }

  .mini-image {
    aspect-ratio: 16 / 11;
  }

  .mini-card {
    flex-basis: min(82vw, 292px);
    min-height: 310px;
  }

  .service-image,
  .machinery-image {
    aspect-ratio: 16 / 11;
  }

  .machinery-section {
    padding-block: 48px;
  }

  .contracting-preview,
  .contracting-section {
    padding-block: 48px;
  }

  .contracting-preview-heading {
    gap: 18px;
  }

  .contracting-preview-action {
    justify-content: stretch;
  }

  .contracting-card,
  .contracting-category-card,
  .contracting-list-card {
    padding: 20px;
  }

  .contracting-card {
    min-height: auto;
  }

  .contracting-equipment-grid {
    grid-template-columns: 1fr;
  }

  .contracting-sector-grid {
    grid-template-columns: 1fr;
  }

  .contracting-sector-card {
    padding: 20px;
  }

  .parts-preview {
    padding: 48px 0;
  }

  .parts-logo-frame {
    padding: 22px;
  }

  .parts-logo {
    max-width: 88%;
    max-height: 82%;
  }

  .parts-logo-john-deere {
    max-width: 76%;
    max-height: 92%;
  }

  .parts-preview-actions,
  .shop-search-actions,
  .product-actions {
    grid-template-columns: 1fr;
  }

  .parts-preview-actions,
  .shop-search-actions {
    display: grid;
  }

  .parts-preview-card {
    min-height: auto;
  }

  .shop-shell {
    width: calc(100% - (var(--gutter) * 2));
    max-width: 100%;
    padding-top: 22px;
  }

  .shop-controls {
    width: 100%;
    max-width: 100%;
    padding: 14px;
    border-radius: 16px;
  }

  .shop-search-inline,
  .shop-search-inline .shop-search-actions,
  .shop-search-inline input,
  .shop-search-inline .button,
  .mobile-filter-toggle,
  .shop-section,
  .product-grid,
  .product-card {
    width: 100%;
    max-width: 100%;
  }

  .shop-search-inline .shop-search-actions {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .mobile-filter-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    width: 100%;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    background: var(--surface);
    color: var(--green-950);
    font: inherit;
    font-weight: 900;
  }

  .mobile-filter-toggle svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 2;
  }

  .filter-drawer-header {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
  }

  .filter-drawer-header h2 {
    margin-bottom: 0;
    font-size: 24px;
  }

  .filter-grid {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 132;
    display: grid;
    grid-template-columns: 1fr;
    align-content: start;
    width: min(100vw, 390px);
    max-width: 100vw;
    height: 100dvh;
    max-height: 100dvh;
    min-height: 0;
    overflow-y: auto;
    gap: 18px;
    padding: 18px 18px calc(22px + env(safe-area-inset-bottom));
    background: var(--surface);
    box-shadow: -24px 0 60px rgba(8, 24, 15, 0.18);
    transform: translateX(104%);
    visibility: hidden;
    overscroll-behavior: contain;
    transition: transform 240ms ease, visibility 240ms ease;
  }

  body.filter-open .filter-grid {
    transform: translateX(0);
    visibility: visible;
  }

  .filter-pills {
    flex-wrap: wrap;
    overflow-x: visible;
    padding-bottom: 0;
  }

  .filter-pill {
    flex: 0 0 auto;
  }

  .shop-section {
    padding: 34px 0;
  }

  .shop-section-heading {
    margin-bottom: 18px;
  }

  .shop-page .product-grid {
    gap: 10px;
  }

  .shop-page .product-card {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    min-height: 0;
    border-radius: 10px;
  }

  .shop-page .product-image-box {
    aspect-ratio: auto;
    min-height: 100%;
    padding: 8px;
    border-right: 1px solid rgba(36, 86, 54, 0.1);
    border-bottom: 0;
  }

  .shop-page .skeleton-image {
    min-height: 88px;
  }

  .shop-page .product-card-body {
    min-width: 0;
    gap: 8px;
    padding: 10px;
  }

  .shop-page .product-card h3 {
    display: -webkit-box;
    overflow: hidden;
    font-size: 14px;
    line-height: 1.18;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .shop-page .product-card p {
    font-size: 12px;
    line-height: 1.35;
  }

  .shop-page .product-summary {
    -webkit-line-clamp: 2;
  }

  .shop-page .product-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .shop-page .product-actions .button {
    min-height: 34px;
    padding: 0 8px;
    font-size: 11px;
  }

  .part-request-band {
    padding: 28px 18px;
  }

  .product-modal {
    padding: 14px;
  }

  .product-modal-panel {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 28px);
    gap: 18px;
    padding: 16px;
    border-radius: 16px;
  }

  .product-modal-content {
    padding-right: 0;
  }

  .product-modal-close {
    top: 10px;
    right: 10px;
  }

  .part-request-band .button {
    width: 100%;
  }

  .shop-cart-button {
    right: 14px;
    bottom: 14px;
  }

  .cart-drawer {
    width: min(100vw, 440px);
    max-width: 100vw;
    height: 100dvh;
    max-height: 100dvh;
  }

  .trust-band p {
    padding: 15px 0;
    font-size: clamp(22px, 6.8vw, 30px);
    line-height: 1.14;
  }

  .trust-band > span {
    margin-bottom: 4px;
  }

  .machine-scene-cta {
    aspect-ratio: auto;
    min-height: 0;
    padding: 32px 16px;
    border-radius: 18px;
    background-position: center;
  }

  .machine-scene-cta h2 {
    font-size: clamp(28px, 8.4vw, 40px);
  }

  .machine-scene-cta p {
    font-size: 15px;
    line-height: 1.58;
  }

  .signup-form {
    grid-template-columns: 1fr;
    margin-top: 24px;
    padding: 7px;
    border-radius: 14px;
  }

  .signup-form input,
  .signup-form button {
    width: 100%;
    min-height: 50px;
  }

  .site-footer {
    padding-block: 44px 48px;
    gap: 24px;
  }

  .footer-socials {
    gap: 8px;
  }

  .footer-socials a {
    flex: 1 1 150px;
    justify-content: center;
  }

  .footer-bottom {
    display: grid;
    gap: 8px;
  }
}

@media (max-width: 420px) {
  :root {
    --gutter: 14px;
  }

  .header-actions {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    margin-top: 30px;
  }

  h1 {
    font-size: clamp(34px, 11.8vw, 44px);
  }

  .machine-scene-hero,
  .machine-scene-wide {
    min-height: 320px;
  }

  .stats-row div {
    padding: 14px 16px;
  }

  .service-card {
    padding: 12px 12px 20px;
  }

  .trust-band {
    gap: 22px;
  }
}

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

  body.reveal-ready .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .service-card:hover,
  .machinery-card:hover,
  .mini-card:hover .mini-image,
  .service-card:hover .service-image,
  .machinery-card:hover img {
    transform: none !important;
  }
}
