:root {
  --green-950: #001b0b;
  --green-900: #052712;
  --green-800: #0c421c;
  --green-700: #17622a;
  --field: #6b941d;
  --jcb-yellow: #f7b500;
  --jcb-yellow-light: #ffd24a;
  --sky: #288cdb;
  --facebook: #1877f2;
  --white: #f8f8f1;
  --soft: rgba(248, 248, 241, 0.78);
  --muted: rgba(248, 248, 241, 0.62);
  --line: rgba(248, 248, 241, 0.16);
  --panel: rgba(0, 27, 11, 0.82);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  --spotlight-x: 50%;
  --spotlight-y: 18%;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--green-950);
  overflow-x: clip;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  background:
    linear-gradient(90deg, rgba(0, 27, 11, 0.98) 0%, rgba(0, 27, 11, 0.83) 45%, rgba(0, 27, 11, 0.24) 100%),
    linear-gradient(180deg, rgba(0, 27, 11, 0.08) 0%, rgba(0, 27, 11, 0.92) 94%),
    url("../../assets/images/field-hero.jpg") center top / cover fixed no-repeat;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at var(--spotlight-x) var(--spotlight-y), rgba(247, 181, 0, 0.16), transparent 24%),
    linear-gradient(120deg, rgba(247, 181, 0, 0.08), transparent 24%),
    repeating-linear-gradient(90deg, rgba(248, 248, 241, 0.035) 0 1px, transparent 1px 96px);
  mix-blend-mode: screen;
  transition: background 220ms ease;
}

body::after {
  position: fixed;
  inset: auto 0 0;
  z-index: -1;
  height: 38vh;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.42));
}

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

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 80;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--jcb-yellow);
  color: #120b00;
  font-weight: 900;
  transform: translateY(-140%);
}

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

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 70;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--jcb-yellow), var(--jcb-yellow-light));
  box-shadow: 0 0 18px rgba(247, 181, 0, 0.45);
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  width: min(1180px, calc(100% - 28px));
  min-height: 74px;
  align-items: center;
  margin: 14px auto 0;
  padding: 10px 12px;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  border: 1px solid rgba(248, 248, 241, 0.14);
  border-radius: 8px;
  background: rgba(0, 27, 11, 0.78);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
}

.site-header::after {
  position: absolute;
  right: 18px;
  bottom: -1px;
  left: 18px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(247, 181, 0, 0.66), transparent);
}

.nav-brand {
  display: flex;
  width: 148px;
  align-items: center;
  padding: 4px;
  border: 1px solid rgba(248, 248, 241, 0.22);
  border-radius: 8px;
  background: rgba(248, 248, 241, 0.96);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.nav-brand img {
  border-radius: 5px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 26px);
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
}

.nav-links::-webkit-scrollbar {
  display: none;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  border: 1px solid rgba(247, 181, 0, 0.44);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(247, 181, 0, 0.18), rgba(0, 27, 11, 0.68)),
    rgba(0, 27, 11, 0.88);
  color: var(--white);
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--jcb-yellow-light);
  transition: transform 220ms ease, opacity 180ms ease;
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-links a,
.nav-call {
  color: rgba(248, 248, 241, 0.82);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.nav-links a:hover {
  color: var(--jcb-yellow-light);
}

.nav-links a.is-active {
  color: var(--jcb-yellow-light);
}

.nav-call {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 10px 13px;
  border-radius: 8px;
  background: var(--jcb-yellow);
  color: #130d00;
}

.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

section[id] {
  scroll-margin-top: 118px;
}

.hero {
  display: grid;
  min-height: calc(100vh - 102px);
  padding: clamp(64px, 8vh, 104px) 0 68px;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: clamp(40px, 6vw, 82px);
  align-items: center;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--jcb-yellow-light);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 42px;
  height: 4px;
  content: "";
  background: var(--jcb-yellow);
  border-radius: 999px;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 26px;
  font-size: clamp(3rem, 7vw, 6.45rem);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.6vw, 4.4rem);
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.hero-text,
.about-copy > p,
.contact-copy > p {
  max-width: 650px;
  color: rgba(248, 248, 241, 0.86);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  font-weight: 700;
  line-height: 1.48;
}

.hero-actions,
.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button,
.action,
.send {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button {
  padding: 13px 18px;
}

.button:hover,
.action:hover,
.send:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.action:focus-visible,
.send:focus-visible,
.nav-links a:focus-visible,
.nav-call:focus-visible,
.menu-toggle:focus-visible,
.floating-actions a:focus-visible {
  outline: 3px solid rgba(255, 210, 74, 0.9);
  outline-offset: 3px;
}

.button-primary,
.button-ghost:hover,
.send {
  border: 1px solid rgba(247, 181, 0, 0.82);
  background: var(--jcb-yellow);
  color: #140d00;
}

.button-ghost {
  border: 1px solid rgba(248, 248, 241, 0.2);
  background: rgba(0, 27, 11, 0.68);
  color: var(--white);
}

.button-facebook {
  width: 100%;
  margin-top: 16px;
  border: 1px solid rgba(24, 119, 242, 0.76);
  background: var(--facebook);
  color: #fff;
}

.hero-stats {
  display: grid;
  max-width: 680px;
  margin: 34px 0 0;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
}

.hero-stats li,
.feature-grid article,
.service-card,
.testimonial,
.facebook-preview,
.form-panel,
.contact-methods a {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(8, 42, 18, 0.86), rgba(0, 27, 11, 0.76));
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.hero-stats li {
  position: relative;
  min-height: 86px;
  overflow: hidden;
  display: grid;
  align-items: center;
  align-content: center;
  padding: 16px 14px 16px 72px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.hero-stats li:hover {
  border-color: rgba(247, 181, 0, 0.38);
  transform: translateY(-3px);
}

.stat-icon {
  position: absolute;
  top: 50%;
  left: 16px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  margin: 0;
  border: 1px solid rgba(248, 248, 241, 0.18);
  border-radius: 8px;
  color: #fff;
  transform: translateY(-50%);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
}

.stat-icon::after {
  position: absolute;
  inset: -6px;
  content: "";
  border-radius: 12px;
  background: inherit;
  filter: blur(12px);
  opacity: 0.42;
  z-index: -1;
}

.stat-icon svg {
  display: block;
  width: 24px;
  height: 24px;
  margin: 0;
}

.stat-icon svg path {
  fill: currentColor;
}

.stat-icon-experience {
  background: linear-gradient(135deg, var(--jcb-yellow), var(--jcb-yellow-light));
  color: #130d00;
}

.stat-icon-facebook {
  background: #1877f2;
  color: #fff;
}

.stat-icon-google {
  background: rgba(248, 248, 241, 0.96);
}

.stat-icon-google .g-blue {
  fill: #4285f4;
}

.stat-icon-google .g-green {
  fill: #34a853;
}

.stat-icon-google .g-yellow {
  fill: #fbbc05;
}

.stat-icon-google .g-red {
  fill: #ea4335;
}

.hero-stats strong {
  display: block;
  color: var(--jcb-yellow-light);
  font-size: 1.2rem;
  line-height: 1;
  text-transform: uppercase;
}

.hero-stats li > span:not(.stat-icon) {
  display: block;
  margin-top: 8px;
  color: rgba(248, 248, 241, 0.8);
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1.16;
  text-transform: uppercase;
}

.hero-card {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(248, 248, 241, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(150deg, rgba(248, 248, 241, 0.08), transparent 38%),
    rgba(0, 27, 11, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transition: transform 240ms ease, border-color 240ms ease;
}

.hero-card:hover {
  border-color: rgba(247, 181, 0, 0.36);
  transform: translateY(-4px);
}

.hero-card::before {
  position: absolute;
  top: -18px;
  right: 28px;
  width: 112px;
  height: 8px;
  content: "";
  background: var(--jcb-yellow);
  border-radius: 999px;
}

.hero-logo {
  width: min(390px, 100%);
  margin: 0 auto 18px;
  padding: 8px;
  border: 1px solid rgba(248, 248, 241, 0.2);
  border-radius: 8px;
  background: rgba(248, 248, 241, 0.96);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
}

.quick-list {
  display: grid;
  margin-top: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.quick-list span,
.service-strip span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border: 1px solid rgba(248, 248, 241, 0.14);
  border-radius: 8px;
  background: rgba(0, 27, 11, 0.62);
  color: rgba(248, 248, 241, 0.84);
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1.18;
  text-align: center;
  text-transform: uppercase;
}

.service-strip {
  display: flex;
  overflow: hidden;
  max-width: 100vw;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(0, 15, 7, 0.76);
  --ticker-duration: 46s;
}

.service-strip-track {
  display: flex;
  width: max-content;
  animation: service-marquee var(--ticker-duration) linear infinite;
  will-change: transform;
}

.service-strip:hover .service-strip-track {
  animation-play-state: paused;
}

.service-strip-group {
  display: flex;
  flex: 0 0 auto;
  gap: 58px;
  padding: 16px 29px;
}

.service-strip span {
  position: relative;
  flex: 0 0 auto;
}

.service-strip-group span:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -48px;
  width: 40px;
  height: 26px;
  content: "";
  background: url("../../assets/images/equipment/service-strip-digger-transparent.png") center / contain no-repeat;
  filter: saturate(1.12) contrast(1.06) drop-shadow(0 0 10px rgba(247, 181, 0, 0.28));
  transform: translateY(-50%);
}

@keyframes service-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.split-section,
.process-grid,
.contact-section {
  display: grid;
  padding: clamp(72px, 9vw, 122px) 0;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 38px;
}

.feature-grid,
.services-grid {
  display: grid;
  gap: 14px;
}

.feature-grid {
  margin-top: 30px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid article,
.service-card {
  padding: 20px;
}

.feature-grid article,
.why-grid article,
.areas-card,
.service-card,
.equipment-card,
.gallery-slider,
.review-card,
.review-summary,
.facebook-preview,
.form-panel {
  position: relative;
}

.feature-grid article::after,
.why-grid article::after,
.service-card::after,
.equipment-card::after,
.gallery-slider::after,
.review-card::after,
.form-panel::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 28%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.feature-grid article:hover::after,
.why-grid article:hover::after,
.service-card:hover::after,
.equipment-card:hover::after,
.gallery-slider:hover::after,
.review-card:hover::after,
.form-panel:hover::after {
  opacity: 1;
}

.feature-grid span,
.service-card .service-number {
  display: inline-flex;
  color: var(--jcb-yellow-light);
  font-size: 0.78rem;
  font-weight: 900;
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
}

.service-card .service-number {
  min-height: 36px;
  align-items: center;
  padding: 8px 10px;
  border: 1px solid rgba(247, 181, 0, 0.22);
  border-radius: 8px;
  background: rgba(247, 181, 0, 0.1);
}

.service-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(247, 181, 0, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(247, 181, 0, 0.95), rgba(255, 210, 74, 0.78));
  color: #130d00;
  box-shadow: 0 14px 26px rgba(247, 181, 0, 0.15);
}

.service-icon i {
  font-size: 1.34rem;
  line-height: 1;
}

.feature-grid p,
.service-card p,
.testimonial p,
.facebook-preview p {
  color: var(--soft);
  font-weight: 700;
  line-height: 1.45;
}

.why-section {
  padding-bottom: clamp(72px, 9vw, 122px);
}

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

.why-grid article {
  min-height: 230px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(8, 42, 18, 0.88), rgba(0, 27, 11, 0.76));
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22);
}

.why-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 22px;
  border: 1px solid rgba(247, 181, 0, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(247, 181, 0, 0.94), rgba(255, 210, 74, 0.82));
  color: #130d00;
  box-shadow: 0 14px 28px rgba(247, 181, 0, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.why-icon svg {
  width: 25px;
  height: 25px;
}

.why-icon path {
  fill: currentColor;
}

.why-icon-person {
  background: linear-gradient(145deg, rgba(248, 248, 241, 0.96), rgba(255, 210, 74, 0.76));
}

.why-icon-bin {
  background: linear-gradient(145deg, rgba(247, 181, 0, 0.9), rgba(107, 148, 29, 0.82));
}

.why-icon-map {
  background: linear-gradient(145deg, rgba(255, 210, 74, 0.92), rgba(40, 140, 219, 0.72));
}

.why-grid p {
  margin-bottom: 0;
  color: var(--soft);
  font-weight: 700;
  line-height: 1.48;
}

.areas-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(247, 181, 0, 0.12), transparent 44%),
    rgba(0, 15, 7, 0.78);
}

.areas-layout {
  display: grid;
  padding: clamp(70px, 8vw, 104px) 0;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.areas-card {
  padding: 24px;
  border: 1px solid rgba(247, 181, 0, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(8, 42, 18, 0.88), rgba(0, 27, 11, 0.76));
  box-shadow: var(--shadow);
}

.areas-card p {
  color: var(--soft);
  font-weight: 700;
  line-height: 1.5;
}

.area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.area-pills span {
  padding: 9px 11px;
  border: 1px solid rgba(248, 248, 241, 0.14);
  border-radius: 999px;
  background: rgba(0, 27, 11, 0.58);
  color: rgba(248, 248, 241, 0.84);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.service-card {
  min-height: 220px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-card:hover {
  border-color: rgba(247, 181, 0, 0.5);
  background:
    linear-gradient(180deg, rgba(15, 70, 30, 0.88), rgba(0, 27, 11, 0.8));
  transform: translateY(-4px);
}

.equipment-band {
  margin-top: clamp(68px, 8vw, 106px);
  padding: clamp(70px, 8vw, 108px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 22% 12%, rgba(247, 181, 0, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(0, 27, 11, 0.94), rgba(5, 39, 18, 0.82));
}

.equipment-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 18px;
  align-items: stretch;
}

.equipment-card {
  overflow: hidden;
  border: 1px solid rgba(248, 248, 241, 0.15);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(8, 42, 18, 0.9), rgba(0, 27, 11, 0.78));
  box-shadow: var(--shadow);
  transition: transform 220ms ease, border-color 220ms ease;
}

.equipment-card:hover {
  border-color: rgba(247, 181, 0, 0.36);
  transform: translateY(-3px);
}

.equipment-card-image {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
}

.equipment-card-wide {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
}

.equipment-card img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  max-height: 520px;
  padding: 12px;
  background:
    linear-gradient(180deg, rgba(248, 248, 241, 0.06), rgba(0, 27, 11, 0.16)),
    rgba(0, 15, 7, 0.28);
  object-fit: contain;
}

.equipment-copy {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  padding: clamp(22px, 3vw, 34px);
}

.equipment-copy span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  padding: 8px 10px;
  border: 1px solid rgba(247, 181, 0, 0.3);
  border-radius: 999px;
  background: rgba(247, 181, 0, 0.12);
  color: var(--jcb-yellow-light);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.equipment-copy h3 {
  margin-bottom: 14px;
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.equipment-copy p {
  color: var(--soft);
  font-weight: 700;
  line-height: 1.48;
}

.equipment-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0 20px;
}

.equipment-tags span {
  display: inline-flex;
  padding: 8px 10px;
  border: 1px solid rgba(248, 248, 241, 0.14);
  border-radius: 999px;
  background: rgba(0, 27, 11, 0.58);
  color: rgba(248, 248, 241, 0.84);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.equipment-copy a {
  display: inline-flex;
  width: fit-content;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 11px 13px;
  border: 1px solid rgba(247, 181, 0, 0.72);
  border-radius: 8px;
  background: var(--jcb-yellow);
  color: #120b00;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.equipment-copy a:hover {
  box-shadow: 0 12px 26px rgba(247, 181, 0, 0.24);
  transform: translateY(-2px);
}

.equipment-card-source {
  display: grid;
  grid-template-rows: minmax(220px, 0.9fr) auto;
}

.equipment-credit {
  margin: 14px 0 0;
  color: rgba(248, 248, 241, 0.64);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.42;
}

.process-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(247, 181, 0, 0.14), transparent 38%),
    rgba(0, 15, 7, 0.78);
}

.process-grid {
  padding-top: 76px;
  padding-bottom: 76px;
}

.process-list {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 12px;
  list-style: none;
  counter-reset: steps;
}

.process-list li {
  display: grid;
  position: relative;
  min-height: 84px;
  align-items: center;
  padding: 18px 18px 18px 72px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 27, 11, 0.66);
}

.process-list li::before {
  position: absolute;
  left: 18px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  counter-increment: steps;
  content: counter(steps);
  border-radius: 999px;
  background: var(--jcb-yellow);
  color: #120b00;
  font-weight: 900;
}

.process-list strong {
  display: block;
  text-transform: uppercase;
}

.process-list span {
  color: var(--soft);
  font-weight: 700;
}

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

.gallery-grid button {
  min-height: 190px;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 27, 11, 0.7);
  cursor: pointer;
}

.gallery-grid button:nth-child(1),
.gallery-grid button:nth-child(4),
.gallery-grid button:nth-child(9) {
  grid-column: span 2;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease, filter 280ms ease;
}

.gallery-grid button:hover img {
  filter: saturate(1.12);
  transform: scale(1.04);
}

.service-galleries {
  display: grid;
  gap: 18px;
}

.gallery-slider {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(8, 42, 18, 0.82), rgba(0, 27, 11, 0.74));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.slider-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  border-bottom: 1px solid rgba(248, 248, 241, 0.12);
}

.slider-heading span {
  display: inline-flex;
  margin-bottom: 7px;
  color: var(--jcb-yellow-light);
  font-size: 0.75rem;
  font-weight: 900;
}

.slider-heading h3 {
  margin-bottom: 0;
  text-transform: uppercase;
}

.slider-controls {
  display: flex;
  gap: 8px;
}

.slider-controls button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(247, 181, 0, 0.42);
  border-radius: 8px;
  background: rgba(0, 27, 11, 0.72);
  color: var(--jcb-yellow-light);
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
}

.slider-controls button:hover {
  background: var(--jcb-yellow);
  color: #120b00;
}

.slider-track {
  display: grid;
  overflow-x: auto;
  padding: 14px;
  grid-auto-columns: minmax(240px, 32%);
  grid-auto-flow: column;
  gap: 12px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.slider-track button {
  min-height: 230px;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(248, 248, 241, 0.14);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.24);
  cursor: pointer;
  scroll-snap-align: start;
}

.slider-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.slider-track button:hover img {
  filter: saturate(1.12);
  transform: scale(1.04);
}

.reviews-section {
  padding-top: clamp(72px, 9vw, 122px);
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: start;
}

.testimonial-stack,
.review-card-stack {
  display: grid;
  gap: 14px;
}

.testimonial {
  padding: 22px;
}

.stars {
  margin-bottom: 12px;
  color: var(--jcb-yellow-light);
  letter-spacing: 0;
}

.testimonial span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.review-summary,
.review-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(8, 42, 18, 0.86), rgba(0, 27, 11, 0.78));
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.review-summary {
  display: grid;
  min-height: 112px;
  align-content: center;
  padding: 18px 22px;
  border-color: rgba(247, 181, 0, 0.36);
}

.review-summary strong {
  color: var(--jcb-yellow-light);
  font-size: 2.15rem;
  line-height: 1;
}

.review-summary span,
.review-summary small {
  font-weight: 900;
  text-transform: uppercase;
}

.review-summary span {
  margin-top: 5px;
}

.review-summary small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.75rem;
}

.review-card {
  padding: 18px;
}

.review-head {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 12px;
}

.review-head strong,
.review-head span {
  display: block;
}

.review-head strong {
  color: var(--white);
  font-size: 0.95rem;
}

.review-head span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 900;
}

.user-icon {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(247, 181, 0, 0.42);
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(247, 181, 0, 0.98), rgba(255, 210, 74, 0.88));
  color: #0d1a0d;
  font-size: 1.15rem;
  box-shadow: 0 10px 24px rgba(247, 181, 0, 0.2);
}

.review-head .user-icon {
  color: #0d1a0d;
}

.user-icon > .fa-user {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  line-height: 1;
  transform: translate(-50%, -50%);
}

.review-badge {
  position: absolute;
  right: -3px;
  bottom: -2px;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 2px solid rgba(0, 27, 11, 0.96);
  border-radius: 999px;
  background: #0d1a0d;
  color: var(--jcb-yellow-light);
  font-size: 0.56rem;
  font-weight: 900;
}

.review-head .review-badge {
  color: var(--jcb-yellow-light);
}

.review-card .stars {
  margin-bottom: 10px;
  color: var(--jcb-yellow-light);
  font-size: 1.04rem;
  letter-spacing: 0;
}

.review-card p {
  margin-bottom: 0;
  color: var(--soft);
  font-weight: 700;
  line-height: 1.46;
}

.facebook-preview {
  padding: 18px;
}

.facebook-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.facebook-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 8px;
  background: var(--facebook);
  font-size: 2rem;
  font-weight: 900;
}

.facebook-top h3 {
  margin-bottom: 3px;
}

.facebook-top p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.facebook-frame {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
}

.facebook-frame iframe {
  display: block;
  width: 100%;
  max-width: 100%;
}

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

.faq-section {
  padding-bottom: clamp(72px, 9vw, 122px);
}

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

.faq-grid details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(8, 42, 18, 0.86), rgba(0, 27, 11, 0.76));
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.faq-grid summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  cursor: pointer;
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
}

.faq-grid summary::after {
  content: "+";
  color: var(--jcb-yellow-light);
  font-size: 1.4rem;
}

.faq-grid details[open] summary::after {
  content: "-";
}

.faq-grid p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--soft);
  font-weight: 700;
  line-height: 1.5;
}

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

.contact-methods a {
  padding: 16px;
}

.contact-methods strong,
.contact-methods span {
  display: block;
}

.contact-methods strong {
  color: var(--jcb-yellow-light);
  text-transform: uppercase;
}

.contact-methods span {
  margin-top: 5px;
  color: var(--soft);
  font-size: 0.9rem;
  font-weight: 800;
}

.form-panel {
  padding: clamp(22px, 3vw, 28px);
  border-radius: 8px;
  backdrop-filter: blur(16px);
}

.form-panel h2 {
  margin-bottom: 10px;
  font-size: 1.55rem;
}

.form-panel p {
  margin-bottom: 22px;
  color: var(--soft);
  font-weight: 700;
  line-height: 1.45;
}

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 15px;
}

label {
  color: rgba(248, 248, 241, 0.78);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  border: 1px solid rgba(248, 248, 241, 0.2);
  border-radius: 6px;
  outline: none;
  background: rgba(248, 248, 241, 0.96);
  color: #081209;
}

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

input:focus,
select:focus,
textarea:focus {
  border-color: var(--jcb-yellow);
  box-shadow: 0 0 0 3px rgba(247, 181, 0, 0.22);
}

.send {
  width: 100%;
  margin-top: 8px;
  border: 0;
  cursor: pointer;
}

.note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
}

.site-footer {
  border-top: 1px solid rgba(247, 181, 0, 0.22);
  background:
    linear-gradient(135deg, rgba(247, 181, 0, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(0, 27, 11, 0.98), #000 82%);
}

.footer-shell {
  display: grid;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(46px, 7vw, 74px) 0 34px;
  grid-template-columns: minmax(240px, 1.15fr) minmax(150px, 0.7fr) minmax(220px, 0.95fr) minmax(260px, 1fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: start;
}

.footer-brand img {
  width: min(250px, 80vw);
  padding: 6px;
  border: 1px solid rgba(248, 248, 241, 0.22);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.footer-brand p {
  max-width: 350px;
  margin: 18px 0 18px;
  color: var(--soft);
  font-weight: 700;
  line-height: 1.45;
}

.footer-social {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  border: 1px solid rgba(24, 119, 242, 0.7);
  border-radius: 8px;
  background: var(--facebook);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-social svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.footer-column h2 {
  margin: 0 0 18px;
  color: var(--jcb-yellow-light);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.footer-column address {
  font-style: normal;
}

.footer-column a,
.footer-column address span {
  color: rgba(248, 248, 241, 0.76);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.38;
}

.footer-column a:hover {
  color: var(--jcb-yellow-light);
}

.footer-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-pills a {
  padding: 8px 10px;
  border: 1px solid rgba(248, 248, 241, 0.14);
  border-radius: 999px;
  background: rgba(0, 27, 11, 0.58);
  color: rgba(248, 248, 241, 0.82);
  font-size: 0.73rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-pills a:hover {
  border-color: rgba(247, 181, 0, 0.56);
  background: rgba(247, 181, 0, 0.12);
}

.footer-bottom {
  display: flex;
  width: min(1180px, calc(100% - 40px));
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 auto;
  padding: 16px 0 22px;
  border-top: 1px solid rgba(248, 248, 241, 0.12);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-bottom a {
  color: var(--jcb-yellow-light);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.84);
}

.lightbox.is-open {
  display: grid;
}

.lightbox img {
  max-height: 86vh;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 20px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 27, 11, 0.9);
  color: var(--white);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: flex;
  gap: 10px;
  padding: 0;
}

.floating-actions a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border: 1px solid rgba(247, 181, 0, 0.72);
  border-radius: 8px;
  background: rgba(0, 27, 11, 0.86);
  color: var(--white);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.floating-actions a:last-child {
  background: var(--jcb-yellow);
  color: #120b00;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@media (max-width: 980px) {
  body {
    background:
      linear-gradient(180deg, rgba(0, 27, 11, 0.94) 0%, rgba(0, 27, 11, 0.82) 48%, rgba(0, 27, 11, 0.96) 100%),
      url("../../assets/images/field-hero.jpg") center top / cover no-repeat;
  }

  .site-header {
    position: sticky;
    grid-template-columns: auto 1fr auto;
    gap: 14px;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    z-index: 25;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    order: 3;
    gap: 8px;
    overflow: hidden;
    max-height: 0;
    padding: 0 12px;
    border: 1px solid rgba(247, 181, 0, 0);
    border-radius: 8px;
    background:
      linear-gradient(145deg, rgba(0, 27, 11, 0.98), rgba(5, 39, 18, 0.94)),
      rgba(0, 27, 11, 0.96);
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.38);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: max-height 280ms ease, padding 280ms ease, opacity 200ms ease, transform 220ms ease, border-color 220ms ease;
  }

  .site-header.is-menu-open .nav-links {
    max-height: 360px;
    padding: 12px;
    border-color: rgba(247, 181, 0, 0.34);
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    min-height: 44px;
    display: grid;
    place-items: center;
    padding: 10px 9px;
    border: 1px solid rgba(248, 248, 241, 0.12);
    border-radius: 7px;
    background: rgba(248, 248, 241, 0.04);
    line-height: 1;
    text-align: center;
  }

  .nav-links a:hover,
  .nav-links a.is-active {
    border-color: rgba(247, 181, 0, 0.5);
    background: rgba(247, 181, 0, 0.12);
  }

  .nav-call {
    justify-self: end;
  }

  .hero,
  .split-section,
  .process-grid,
  .reviews-layout,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 52px;
    padding-bottom: 58px;
  }

  .hero-card {
    max-width: 560px;
  }

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

  .areas-layout {
    grid-template-columns: 1fr;
  }

  .equipment-grid,
  .equipment-card-image,
  .equipment-card-wide {
    grid-template-columns: 1fr;
  }

  .equipment-card img {
    min-height: 300px;
    max-height: 420px;
  }

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

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

  .slider-track {
    grid-auto-columns: minmax(260px, 48%);
  }

  .gallery-grid button:nth-child(1),
  .gallery-grid button:nth-child(4),
  .gallery-grid button:nth-child(9) {
    grid-column: span 1;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 70px;
  }

  .section-shell {
    width: min(100% - 24px, 1180px);
  }

  .site-header {
    width: min(100% - 20px, 1180px);
    margin-top: 10px;
    padding: 9px;
    border-radius: 8px;
  }

  .nav-brand {
    width: 116px;
  }

  .nav-call {
    min-height: 40px;
    padding: 9px 10px;
    font-size: 0.76rem;
  }

  .nav-links a {
    font-size: clamp(0.62rem, 2.65vw, 0.72rem);
  }

  h1 {
    font-size: clamp(2.25rem, 13vw, 3.55rem);
    line-height: 0.94;
  }

  h2 {
    font-size: clamp(1.85rem, 10.5vw, 2.75rem);
    line-height: 1;
  }

  h3 {
    font-size: 1.08rem;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-text,
  .about-copy > p,
  .contact-copy > p {
    font-size: 1rem;
  }

  .hero-stats li {
    min-height: 72px;
  }

  .hero-stats,
  .services-grid,
  .feature-grid,
  .why-grid,
  .contact-methods,
  .gallery-grid,
  .quick-list,
  .equipment-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-logo {
    width: min(310px, 100%);
  }

  .service-strip {
    --ticker-duration: 34s;
  }

  .split-section,
  .process-grid,
  .contact-section {
    padding: 60px 0;
  }

  .areas-layout {
    padding: 58px 0;
  }

  .why-section {
    padding-bottom: 58px;
  }

  .service-card,
  .why-grid article {
    min-height: auto;
  }

  .gallery-grid button {
    min-height: 220px;
  }

  .equipment-band {
    margin-top: 56px;
    padding: 58px 0;
  }

  .equipment-card img {
    min-height: 230px;
    max-height: 310px;
    padding: 8px;
  }

  .equipment-copy {
    padding: 20px;
  }

  .equipment-copy h3 {
    font-size: 1.9rem;
  }

  .equipment-copy a {
    width: 100%;
  }

  .floating-actions {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .floating-actions a {
    flex: 1;
  }

  .slider-heading {
    align-items: flex-start;
  }

  .slider-track {
    grid-auto-columns: minmax(78vw, 1fr);
    padding: 12px;
  }

  .slider-track button {
    min-height: 240px;
  }

  .facebook-frame iframe {
    height: 360px;
  }

  .review-card,
  .review-summary {
    padding: 16px;
  }

  .footer-shell {
    width: min(100% - 24px, 1180px);
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    width: min(100% - 24px, 1180px);
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::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;
  }
}
