:root {
  --green-950: #10231d;
  --green-900: #18372f;
  --green-800: #22483f;
  --green-700: #2f6457;
  --soil: #8a5f2e;
  --clay: #c8752d;
  --orange: #f28c28;
  --yellow: #f2c744;
  --concrete: #e7e3dc;
  --stone: #f5f2ec;
  --white: #ffffff;
  --ink: #141714;
  --muted: #67716d;
  --line: rgba(20, 23, 20, 0.12);
  --shadow: 0 22px 60px rgba(16, 35, 29, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

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

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 14px clamp(20px, 4vw, 48px);
  background: rgba(16, 35, 29, 0.92);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: var(--yellow);
  overflow: hidden;
}

.brand-mark img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.brand strong {
  display: block;
  font-size: 1rem;
}

.brand em {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.94rem;
  font-weight: 750;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.82);
}

.site-nav a:hover {
  color: var(--white);
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--orange);
  color: var(--green-950) !important;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

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

.hero {
  position: relative;
  min-height: 780px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(16, 35, 29, 0.95) 0%, rgba(16, 35, 29, 0.72) 42%, rgba(16, 35, 29, 0.22) 100%),
    linear-gradient(0deg, rgba(16, 35, 29, 0.88) 0%, rgba(16, 35, 29, 0.08) 56%);
}

.hero-content {
  position: relative;
  padding: 110px 0 54px;
}

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

.eyebrow::before {
  content: "";
  width: 32px;
  height: 3px;
  background: currentColor;
}

.eyebrow.dark {
  color: var(--green-700);
}

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

h1 {
  max-width: 920px;
  margin-bottom: 22px;
  font-size: clamp(3.2rem, 8vw, 7.4rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

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

.hero-copy {
  max-width: 790px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 46px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 14px 20px;
  border: 0;
  border-radius: 8px;
  font-weight: 850;
  cursor: pointer;
}

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

.button.secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.trust-grid span {
  display: grid;
  align-items: center;
  min-height: 88px;
  padding: 18px;
  background: rgba(16, 35, 29, 0.72);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 750;
}

.section {
  padding: 96px 0;
}

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

.intro-grid,
.seo-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: start;
}

.intro-copy p,
.section-heading p,
.split-copy p,
.capability-grid p,
.about-grid p,
.seo-grid p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.services-section {
  background: var(--stone);
}

.section-heading {
  max-width: 800px;
  margin-bottom: 34px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

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

.service-card {
  overflow: hidden;
  min-height: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(16, 35, 29, 0.08);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-card div {
  padding: 22px;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.equipment-section {
  background: var(--green-950);
  color: var(--white);
}

.split-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 44px;
  align-items: center;
}

.split-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.equipment-images {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  grid-template-rows: 250px 250px;
  gap: 14px;
}

.equipment-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.equipment-images .image-tall {
  grid-row: span 2;
}

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

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

.capability-grid article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--stone);
}

.capability-media {
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 8px;
}

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

.about-section {
  background: var(--concrete);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: center;
}

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

.about-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li,
.why-grid span {
  position: relative;
  padding: 14px 16px 14px 42px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(16, 35, 29, 0.1);
  border-radius: 8px;
  font-weight: 760;
}

.check-list li::before,
.why-grid span::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 18px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
}

.why-section {
  background: var(--stone);
}

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

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

.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.filter-button {
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--stone);
  color: var(--green-900);
  font-size: 0.9rem;
  font-weight: 820;
  cursor: pointer;
}

.filter-button.active,
.filter-button:hover {
  background: var(--green-900);
  color: var(--white);
}

.gallery-grid {
  columns: 3 280px;
  column-gap: 16px;
}

.gallery-grid figure {
  display: inline-block;
  width: 100%;
  margin: 0 0 16px;
  break-inside: avoid;
  overflow: hidden;
  border-radius: 8px;
  background: var(--green-950);
  color: var(--white);
  box-shadow: 0 12px 32px rgba(16, 35, 29, 0.12);
}

.gallery-grid figure.is-hidden {
  display: none;
}

.gallery-grid img {
  width: 100%;
  object-fit: cover;
}

.gallery-grid figcaption {
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  font-weight: 760;
}

.seo-section {
  background: var(--concrete);
  padding: 56px 0;
}

.contact-section {
  background:
    linear-gradient(90deg, rgba(16, 35, 29, 0.96), rgba(24, 55, 47, 0.9)),
    url("img12.jpg") center / cover;
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  align-items: start;
}

.contact-copy h2 {
  font-size: clamp(2rem, 4.8vw, 4.4rem);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-cards {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.contact-cards article {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.contact-cards span {
  display: block;
  color: var(--yellow);
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-cards a {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 760;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.quote-form h2,
.quote-form .full {
  grid-column: 1 / -1;
}

.quote-form h2 {
  margin-bottom: 4px;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: var(--green-900);
  font-size: 0.84rem;
  font-weight: 850;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--stone);
  color: var(--ink);
}

.quote-form textarea {
  resize: vertical;
}

.site-footer {
  background: #0b1512;
  color: var(--white);
  padding: 58px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr;
  gap: 36px;
}

.footer-grid p,
.footer-grid a,
.footer-bottom {
  color: rgba(255, 255, 255, 0.68);
}

.footer-grid a {
  display: block;
  margin-top: 8px;
}

.footer-grid h2 {
  margin-bottom: 14px;
  font-size: 1rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

.footer-bottom a {
  color: var(--yellow);
  font-weight: 850;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 82px 14px auto 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 12px;
    color: var(--ink);
  }

  .nav-cta {
    text-align: center;
  }

  .hero {
    min-height: 720px;
  }

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

  .intro-grid,
  .split-grid,
  .about-grid,
  .contact-grid,
  .seo-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 680px) {
  .shell {
    width: min(100% - 28px, 1160px);
  }

  .site-header {
    min-height: 76px;
    padding: 12px 14px;
  }

  .brand em {
    display: none;
  }

  .hero {
    min-height: 820px;
  }

  .hero-content {
    padding: 92px 0 34px;
  }

  .hero-actions,
  .footer-bottom {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .trust-grid,
  .service-grid,
  .why-grid,
  .check-list,
  .quote-form,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 68px 0;
  }

  .equipment-images {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .equipment-images .image-tall {
    grid-row: auto;
  }

  .equipment-images img,
  .about-image img {
    aspect-ratio: 4 / 3;
  }

  .gallery-grid {
    columns: 1;
  }
}
