:root {
  --green-950: #0b2119;
  --green-850: #123528;
  --green-700: #245b34;
  --green-500: #3f8d12;
  --amber: #e9a227;
  --ink: #111816;
  --muted: #596862;
  --line: rgba(255, 255, 255, 0.22);
  --surface: rgba(255, 255, 255, 0.76);
  --surface-strong: #f7f8f5;
  --shadow: 0 24px 70px rgba(9, 25, 19, 0.22);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 20;
  width: min(calc(100% - 32px), var(--max));
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  backdrop-filter: blur(26px) saturate(170%);
  transform: translateX(-50%);
  transition: all 0.5s ease;
}

.site-header.nav-dark {
  border-color: rgba(255, 255, 255, 0.22);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05)),
    rgba(7, 22, 17, 0.58);
  box-shadow: 0 22px 64px rgba(2, 12, 8, 0.34);
}

.site-header.nav-dark.is-scrolled {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06)),
    rgba(7, 22, 17, 0.72);
  box-shadow: 0 18px 50px rgba(2, 12, 8, 0.34);
}

.site-header.nav-light {
  border-color: rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.48)),
    rgba(248, 250, 247, 0.62);
  box-shadow: 0 22px 64px rgba(9, 25, 19, 0.18);
}

.site-header.nav-light.is-scrolled {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.56)),
    rgba(248, 250, 247, 0.72);
  box-shadow: 0 18px 50px rgba(9, 25, 19, 0.16);
}

.brand img {
  width: 168px;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
  transition: all 0.5s ease;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  padding: 10px 12px;
  border-radius: 4px;
  font-size: 0.95rem;
  transition: all 0.5s ease;
}

.site-header.nav-dark .main-nav a {
  color: rgba(255, 255, 255, 0.86);
}

.site-header.nav-light .main-nav a {
  color: rgba(17, 24, 22, 0.78);
}

.site-header.nav-dark .main-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.site-header.nav-light .main-nav a:hover {
  background: rgba(36, 91, 52, 0.09);
  color: var(--green-950);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-link {
  font-weight: 650;
}

.site-header.nav-dark .header-link {
  color: #fff;
}

.site-header.nav-light .header-link {
  color: var(--green-950);
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 750;
  letter-spacing: 0;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--green-500), #117860);
  box-shadow: 0 14px 28px rgba(36, 91, 52, 0.25);
}

.site-header.nav-light .button-primary {
  box-shadow: 0 14px 28px rgba(36, 91, 52, 0.2);
}

.button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(14px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.13);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

.site-header.nav-light .menu-toggle {
  background: rgba(13, 43, 31, 0.08);
}

.site-header.nav-light .menu-toggle span {
  background: var(--green-950);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 148px 24px 52px;
  color: #fff;
  background: var(--green-950);
}

.video-wall,
.hero-fallback,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.video-wall {
  display: grid;
  grid-template-columns: 1fr 1fr;
  opacity: 0.42;
  filter: saturate(1.02) contrast(1.08);
}

.video-frame {
  position: relative;
  overflow: hidden;
  background: transparent;
}

.video-frame::after {
  position: absolute;
  inset: -1px;
  z-index: 2;
  content: "";
  background: rgba(7, 22, 17, 0.34);
  pointer-events: none;
}

.video-player,
.video-player iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 110vh;
  height: 196vh;
  min-width: 100%;
  min-height: 100%;
  border: 0;
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 360ms ease;
}

.video-frame.is-ready .video-player,
.video-frame.is-ready .video-player iframe {
  opacity: 1;
}

.hero-fallback {
  background: url("Assets/4-1920w.webp") center / cover no-repeat;
  opacity: 0.48;
  mix-blend-mode: normal;
}

.hero-overlay {
  background:
    radial-gradient(circle at 74% 18%, rgba(233, 162, 39, 0.14), transparent 30%),
    linear-gradient(90deg, rgba(5, 18, 13, 0.96) 0%, rgba(5, 18, 13, 0.78) 48%, rgba(5, 18, 13, 0.62) 100%),
    linear-gradient(0deg, rgba(5, 18, 13, 0.96) 0%, rgba(5, 18, 13, 0.18) 52%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  max-width: 850px;
  font-size: clamp(2.45rem, 7vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

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

.hero-metrics {
  width: min(100%, 780px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 54px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px) saturate(150%);
}

.hero-metrics div {
  padding: 20px;
  background: rgba(255, 255, 255, 0.09);
}

.hero-metrics strong,
.hero-metrics span {
  display: block;
}

.hero-metrics strong {
  font-size: clamp(1.35rem, 3vw, 2.1rem);
}

.hero-metrics span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.section {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 104px 0;
}

.split,
.fleet-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 58px;
  align-items: center;
}

.section h2 {
  color: var(--green-950);
  font-size: clamp(2rem, 4.8vw, 4rem);
}

.section p {
  color: var(--muted);
  font-size: 1.04rem;
}

.copy-stack > p {
  max-width: 620px;
  margin: 22px 0 0;
}

.feature-list {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.feature-list article,
.glass-card,
.contact-panel {
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 8px;
  background: var(--surface);
  backdrop-filter: blur(18px) saturate(145%);
  box-shadow: var(--shadow);
}

.feature-list article {
  padding: 22px;
}

.feature-list span,
.card-icon {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 4px;
  color: #fff;
  background: var(--green-700);
  font-weight: 800;
}

.feature-list h3,
.glass-card h3 {
  margin: 16px 0 8px;
  color: var(--green-950);
  font-size: 1.2rem;
}

.feature-list p,
.glass-card p {
  margin: 0;
}

.image-panel {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
}

.services-section {
  width: 100%;
  max-width: none;
  padding: 104px max(20px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(rgba(11, 33, 25, 0.88), rgba(11, 33, 25, 0.88)),
    url("Assets/8-1920w.webp") center / cover fixed;
}

.services-section .section-kicker,
.services-section h2,
.services-section .section-heading p {
  color: #fff;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 48px;
  align-items: end;
}

.section-heading p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 46px;
}

.glass-card {
  min-height: 300px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.84);
}

.fleet-section {
  padding-bottom: 70px;
}

.fleet-layout {
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--green-700);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.gallery {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 14px;
}

.gallery-item {
  overflow: hidden;
  min-height: 220px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: #d9ddd5;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(9, 25, 19, 0.14);
}

.gallery-item.is-large {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.contact-section {
  padding-top: 40px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 34px;
  padding: clamp(24px, 5vw, 46px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.64)),
    radial-gradient(circle at 90% 0%, rgba(233, 162, 39, 0.18), transparent 35%);
}

.contact-panel h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
}

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

.contact-grid a,
.contact-grid address {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(11, 33, 25, 0.1);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--green-950);
  font-style: normal;
  font-weight: 700;
}

.contact-grid address {
  grid-column: 1 / -1;
  color: var(--muted);
  font-weight: 600;
}

.site-footer {
  display: flex;
  min-height: 140px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px max(20px, calc((100vw - var(--max)) / 2));
  color: rgba(255, 255, 255, 0.74);
  background: var(--green-950);
}

.site-footer img {
  width: 190px;
  max-height: 64px;
}

.quick-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 18;
  display: grid;
  gap: 10px;
}

.quick-actions a {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--green-700);
  box-shadow: 0 16px 34px rgba(9, 25, 19, 0.28);
  font-size: 0.86rem;
  font-weight: 900;
}

.quick-actions img {
  width: 27px;
  height: 27px;
  object-fit: contain;
}

.quick-actions a:last-child {
  background: #168a76;
}

.lightbox {
  width: min(92vw, 980px);
  padding: 12px;
  border: 0;
  border-radius: 8px;
  background: #101411;
}

.lightbox::backdrop {
  background: rgba(7, 15, 12, 0.72);
  backdrop-filter: blur(8px);
}

.lightbox:not([open]) img {
  display: none;
}

.lightbox button {
  float: right;
  margin-bottom: 10px;
  border: 0;
  border-radius: 4px;
  padding: 10px 14px;
  color: #fff;
  background: var(--green-700);
  cursor: pointer;
}

.lightbox img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 4px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

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

  .main-nav,
  .header-actions {
    display: none;
  }

  .site-header.is-open .main-nav,
  .site-header.is-open .header-actions {
    grid-column: 1 / -1;
    display: grid;
    justify-items: stretch;
    width: 100%;
  }

  .site-header.is-open .main-nav a,
  .site-header.is-open .header-actions a {
    justify-content: center;
    text-align: center;
  }

  .video-wall {
    grid-template-columns: 1fr;
  }

  .video-frame-secondary {
    display: none;
  }

  .split,
  .fleet-layout,
  .section-heading,
  .contact-panel {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .site-header {
    top: 10px;
    width: min(calc(100% - 20px), var(--max));
    min-height: 64px;
  }

  .brand img {
    width: 136px;
  }

  .hero {
    min-height: 94svh;
    padding: 124px 18px 34px;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 13vw, 3.7rem);
  }

  .hero-metrics {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }

  .section {
    width: min(calc(100% - 28px), var(--max));
    padding: 72px 0;
  }

  .services-section {
    width: 100%;
    padding: 72px 14px;
    background-attachment: scroll;
  }

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

  .gallery-item.is-large {
    grid-row: auto;
  }

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

  .site-footer {
    display: grid;
    justify-items: start;
  }

  .quick-actions {
    right: 12px;
    bottom: 12px;
  }
}
