:root {
  --ink: #15171a;
  --coal: #080909;
  --coal-soft: #111513;
  --slate: #5f6268;
  --muted: #6c7378;
  --line: #dfe5de;
  --paper: #f7f9f4;
  --white: #ffffff;
  --green: #6fb21c;
  --green-dark: #4e8215;
  --blue: #1380b5;
  --orange: #ed6b1d;
  --shadow: 0 22px 60px rgba(6, 10, 8, .18);
  --shadow-strong: 0 32px 90px rgba(0, 0, 0, .32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 0;
  color-scheme: light;
}

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

html,
body,
.intro,
.services-section,
.references-section,
.service-item,
.reference-list span,
.service-note {
  forced-color-adjust: none;
}

@media (prefers-color-scheme: dark) {
  body {
    color: var(--ink);
    background: var(--paper);
  }

  .intro {
    background:
      linear-gradient(135deg, rgba(111, 178, 28, .08), transparent 36%),
      var(--white);
  }

  .services-section {
    background:
      linear-gradient(180deg, #eef3e9, #f8faf6);
  }

  .references-section {
    background:
      radial-gradient(circle at 88% 20%, rgba(19, 128, 181, .09), transparent 28%),
      linear-gradient(90deg, rgba(111, 178, 28, .1), transparent 42%),
      var(--white);
  }

  .service-item {
    color: var(--ink);
    background: var(--white);
  }

  .reference-list span {
    color: #273036;
    background: #f4f8ef;
  }
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 58px);
  background: linear-gradient(90deg, rgba(8, 9, 9, .92), rgba(17, 21, 19, .82));
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .16);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: min(260px, 56vw);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  color: var(--white);
  font-size: 14px;
  font-weight: 750;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  text-decoration: none;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--green);
  transition: transform .2s ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .24);
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero-media,
.hero-media img,
.hero-shade,
.hero-accent,
.hero-content {
  grid-area: 1 / 1;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 92vh;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(1.08) contrast(1.04);
}

.hero-shade {
  background:
    radial-gradient(circle at 18% 46%, rgba(111, 178, 28, .18), transparent 30%),
    linear-gradient(90deg, rgba(8, 9, 9, .96), rgba(8, 9, 9, .66) 42%, rgba(8, 9, 9, .14)),
    linear-gradient(0deg, rgba(8, 9, 9, .78), rgba(8, 9, 9, 0) 56%);
  z-index: 1;
}

.hero-accent {
  z-index: 1;
  align-self: end;
  width: min(1140px, calc(100% - 36px));
  height: 1px;
  margin: 0 auto 58px;
  background: linear-gradient(90deg, var(--green), rgba(111, 178, 28, 0) 62%);
  opacity: .82;
}

.hero-content {
  z-index: 2;
  align-self: end;
  width: min(1140px, calc(100% - 36px));
  margin: 0 auto;
  padding: 132px 0 218px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  width: min(900px, 100%);
  margin-bottom: 22px;
  font-size: clamp(50px, 7.6vw, 98px);
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-copy {
  width: min(690px, 100%);
  color: rgba(255, 255, 255, .9);
  font-size: clamp(18px, 2.2vw, 24px);
  text-shadow: 0 12px 30px rgba(0, 0, 0, .32);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 850;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.button::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  font-size: 16px;
  line-height: 1;
}

.button[data-icon="phone"]::before {
  content: "☎";
}

.button[data-icon="mail"]::before {
  content: "✉";
}

.button[data-icon="map"]::before {
  content: "";
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 5-8 11-8 11S4 15 4 10a8 8 0 0 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 5-8 11-8 11S4 15 4 10a8 8 0 0 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E") center / contain no-repeat;
}

.button.primary {
  color: var(--coal);
  background: var(--green);
  box-shadow: 0 16px 36px rgba(111, 178, 28, .22);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, .45);
  background: rgba(255, 255, 255, .08);
}

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

.button.primary:hover {
  background: #7cc828;
  box-shadow: 0 20px 44px rgba(111, 178, 28, .3);
}

.button.secondary:hover {
  border-color: rgba(255, 255, 255, .7);
  background: rgba(255, 255, 255, .13);
}

.button.secondary.on-dark {
  color: var(--white);
}

.section {
  padding: clamp(68px, 9vw, 118px) clamp(18px, 4vw, 58px);
  scroll-margin-top: 0;
}

.intro {
  background:
    linear-gradient(135deg, rgba(111, 178, 28, .08), transparent 36%),
    var(--white);
}

.intro > .section-kicker {
  width: min(1140px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(300px, .9fr);
  gap: clamp(28px, 7vw, 96px);
  width: min(1140px, 100%);
  margin: 0 auto;
}

.intro h2,
.section-head h2,
.fleet-copy h2,
.contact-panel h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
  letter-spacing: 0;
}

.lead-stack {
  color: #41474b;
  font-size: clamp(18px, 2vw, 22px);
}

.services-section {
  background:
    linear-gradient(180deg, #eef3e9, #f8faf6);
}

.section-head {
  width: min(1140px, 100%);
  margin: 0 auto 40px;
}

.section-head h2 {
  width: min(780px, 100%);
}

.section-head.compact {
  margin-bottom: 28px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(1140px, 100%);
  margin: 0 auto;
  background: var(--line);
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(18, 29, 19, .08);
}

.service-item {
  min-height: 270px;
  padding: 26px;
  background: var(--white);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.service-item:hover {
  position: relative;
  z-index: 1;
  transform: translateY(-4px);
  background: #fbfdf8;
  box-shadow: var(--shadow);
}

.service-index {
  display: inline-block;
  margin-bottom: 38px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.service-item h3 {
  margin-bottom: 14px;
  font-size: 22px;
  line-height: 1.08;
  text-wrap: balance;
}

.service-item p {
  color: var(--muted);
}

.service-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1140px, 100%);
  margin: 18px auto 0;
  padding: 18px 22px;
  border: 1px solid rgba(111, 178, 28, .24);
  border-radius: 6px;
  background: rgba(255, 255, 255, .72);
  color: #344035;
}

.service-note strong {
  color: var(--coal);
}

.service-note span {
  color: var(--muted);
}

.fleet-section {
  display: grid;
  grid-template-columns: minmax(300px, .46fr) minmax(0, 1fr);
  gap: clamp(34px, 5.4vw, 86px);
  align-items: start;
  background:
    radial-gradient(circle at 16% 22%, rgba(111, 178, 28, .1), transparent 28%),
    linear-gradient(180deg, #070808, #101410);
  color: var(--white);
}

.fleet-copy {
  position: sticky;
  top: 110px;
  max-width: 500px;
  padding-top: 8px;
}

.fleet-copy p:not(.section-kicker) {
  max-width: 440px;
  margin-top: 22px;
  color: rgba(255, 255, 255, .72);
  font-size: 17px;
  line-height: 1.65;
}

.fleet-copy h2 {
  max-width: 500px;
  font-size: clamp(38px, 4.2vw, 64px);
  line-height: .98;
  text-wrap: balance;
}

.fleet-gallery {
  overflow: hidden;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .035));
  box-shadow: var(--shadow-strong);
}

.gallery-feature,
.gallery-thumb,
.gallery-video-card {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: #151815;
  cursor: zoom-in;
}

.gallery-feature {
  aspect-ratio: 16 / 9;
}

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

.gallery-thumb {
  grid-column: span 3;
  min-height: 0;
  aspect-ratio: 5 / 4;
}

.gallery-thumb:nth-child(n+5) {
  grid-column: span 4;
}

.gallery-video-card {
  position: relative;
  align-self: stretch;
  color: var(--white);
}

.gallery-feature img,
.gallery-thumb img,
.gallery-video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.gallery-feature img {
  object-position: center 50%;
}

@media (min-width: 981px) {
  .gallery-feature img {
    object-position: center 42%;
  }
}

.gallery-thumb img {
  object-position: center;
}

.gallery-thumb:nth-child(1) img,
.gallery-thumb:nth-child(2) img {
  object-position: center 50%;
}

.gallery-thumb:nth-child(4) img {
  object-position: 58% center;
}

.gallery-thumb:nth-child(6) img {
  object-position: center 42%;
}

.gallery-video-card video {
  pointer-events: none;
  filter: saturate(1.06) contrast(1.03) brightness(.86);
  object-position: center 46%;
}

.gallery-video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 9, 9, .64), rgba(8, 9, 9, .08)),
    linear-gradient(0deg, rgba(8, 9, 9, .56), rgba(8, 9, 9, 0) 62%);
}

.video-play {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: var(--green);
  box-shadow: 0 16px 36px rgba(0, 0, 0, .28);
}

.video-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  width: 0;
  height: 0;
  transform: translate(-50%, -50%);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid var(--coal);
}

.gallery-feature:hover img,
.gallery-thumb:hover img,
.gallery-video-card:hover video {
  transform: scale(1.045);
}

.references-section {
  background:
    radial-gradient(circle at 88% 20%, rgba(19, 128, 181, .09), transparent 28%),
    linear-gradient(90deg, rgba(111, 178, 28, .1), transparent 42%),
    var(--white);
}

.reference-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  width: min(1140px, 100%);
  margin: 0 auto;
}

.reference-list span {
  display: flex;
  align-items: center;
  min-height: 112px;
  padding: 20px;
  border-left: 4px solid var(--green);
  background: #f4f8ef;
  color: #273036;
  font-weight: 750;
  line-height: 1.35;
  box-shadow: inset 0 0 0 1px rgba(111, 178, 28, .06);
}

@media (max-width: 1180px) {
  .reference-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.contact-section {
  min-height: calc(100vh - 78px);
  padding: clamp(96px, 12vw, 170px) clamp(18px, 4vw, 58px) clamp(74px, 9vw, 118px);
  background:
    radial-gradient(circle at 74% 24%, rgba(111, 178, 28, .18), transparent 30%),
    linear-gradient(135deg, rgba(8, 9, 9, .93), rgba(8, 9, 9, .7)),
    url("../img/abstract-footer-v3.png") center / cover;
  color: var(--white);
}

.contact-panel {
  width: min(1140px, 100%);
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 38px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.contact-grid > div {
  min-height: 190px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .028));
  box-shadow: 0 22px 60px rgba(0, 0, 0, .18);
  backdrop-filter: blur(8px);
}

.contact-grid h3 {
  margin-bottom: 16px;
  color: var(--green);
}

.contact-grid p {
  color: rgba(255, 255, 255, .82);
}

.contact-grid a {
  text-decoration-color: rgba(111, 178, 28, .7);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0;
  padding: 34px clamp(18px, 4vw, 58px);
  background:
    linear-gradient(180deg, rgba(8, 9, 9, .9), rgba(8, 9, 9, .96)),
    url("../img/abstract-footer-v3.png") center bottom / cover;
  color: rgba(255, 255, 255, .66);
}

.site-footer p {
  margin: 0;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
}

.site-credit {
  color: rgba(255, 255, 255, .42);
  font-size: 12px;
  font-weight: 650;
}

.site-footer a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.site-footer a:hover {
  transform: translateY(-2px);
  color: var(--green);
}

.site-footer .site-credit a {
  display: inline;
  min-height: 0;
  color: rgba(255, 255, 255, .58);
  text-transform: none;
}

.site-footer .site-credit a:hover {
  color: #ff4a4a;
  transform: none;
}

.lightbox {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(0, 0, 0, .86);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-height: 88vh;
  border-radius: 6px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, .42);
}

.lightbox video {
  width: auto;
  max-width: min(430px, 100%);
  max-height: 88vh;
  border-radius: 6px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, .42);
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  color: var(--white);
  background: rgba(0, 0, 0, .34);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 980px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 18px 18px;
    background: rgba(8, 9, 9, .96);
  }

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

  .main-nav a {
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
  }

  .nav-toggle {
    display: block;
  }

  .intro-grid,
  .fleet-section,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .fleet-copy {
    position: static;
    max-width: 680px;
  }

  .fleet-copy p:not(.section-kicker) {
    max-width: 620px;
  }

  .service-note {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 68px;
  }

  .brand {
    width: min(210px, 62vw);
  }

  .hero-content {
    padding-top: 120px;
    padding-bottom: 138px;
  }

  h1 {
    font-size: 44px;
    line-height: 1.06;
  }

  .hero-media img {
    object-position: 66% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(8, 9, 9, .96), rgba(8, 9, 9, .78)),
      linear-gradient(0deg, rgba(8, 9, 9, .82), rgba(8, 9, 9, .08));
  }

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

  .contact-section {
    min-height: calc(100vh - 68px);
    padding-top: 84px;
    padding-bottom: 74px;
  }

  .service-grid,
  .reference-list {
    grid-template-columns: 1fr;
  }

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

  .service-index {
    margin-bottom: 24px;
  }

  .fleet-gallery {
    padding: 8px;
  }

  .gallery-feature {
    aspect-ratio: 4 / 3;
  }

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

  .gallery-thumb,
  .gallery-thumb:nth-child(n+5) {
    grid-column: auto;
  }

  .gallery-strip .gallery-video-card {
    grid-column: 1 / -1;
    width: 100%;
    aspect-ratio: 16 / 9;
  }

  .gallery-strip .gallery-video-card video {
    object-position: center 42%;
  }

  .video-play {
    width: 42px;
    height: 42px;
  }

  .fleet-copy h2 {
    font-size: 40px;
  }

  .fleet-copy p:not(.section-kicker) {
    font-size: 16px;
    line-height: 1.58;
    margin-top: 18px;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-right {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}
