:root {
  --yellow: #ffd51d;
  --yellow-dark: #d7a900;
  --black: #080808;
  --ink: #171717;
  --muted: #64666a;
  --line: #dedede;
  --paper: #f7f5f0;
  --white: #ffffff;
  --green: #2f7d5f;
  --radius: 8px;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
  text-decoration: none;
  touch-action: manipulation;
}

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

.address-place {
  white-space: nowrap;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 16px 44px;
  color: var(--white);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(8, 8, 8, 0.94);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.2);
}

.site-header.is-scrolled {
  padding-top: 10px;
  padding-bottom: 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand img {
  width: 82px;
  height: 82px;
  border: 0;
  border-radius: 0;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.36));
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(16px);
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 700;
  transition:
    background 160ms ease,
    color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(255, 213, 29, 0.66);
  border-radius: 999px;
  color: var(--black);
  background: var(--yellow);
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(255, 213, 29, 0.18);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 86vh;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.56) 42%, rgba(0, 0, 0, 0.14) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.64) 0%, rgba(0, 0, 0, 0) 34%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 88px));
  min-height: 86vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 122px 0 64px;
}

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

.section-heading .section-kicker {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  width: fit-content;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 4px;
  background: var(--yellow);
  color: var(--black);
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.12);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 72px;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
  line-height: 1.55;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.1;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 18px 40px rgba(255, 213, 29, 0.22);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #ffe057;
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.15);
}

.btn-secondary {
  background: var(--white);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--black);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(760px, 100%);
  margin-top: 52px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.2);
}

.hero-facts span {
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.42);
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 800;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1180px, calc(100% - 88px));
  margin: -34px auto 0;
  position: relative;
  z-index: 3;
  box-shadow: var(--shadow);
  background: var(--white);
}

.quick-strip div {
  min-height: 116px;
  padding: 24px 28px;
  border-right: 1px solid var(--line);
}

.quick-strip div:last-child {
  border-right: 0;
}

.quick-strip strong {
  display: block;
  margin-bottom: 5px;
  font-size: 28px;
  line-height: 1.1;
  color: var(--black);
}

.quick-strip .quick-address {
  max-width: 360px;
  font-size: 19px;
  line-height: 1.22;
}

.quick-strip span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

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

.section-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(340px, 1fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 44px;
}

.section-heading.compact {
  display: block;
  max-width: 620px;
  margin-bottom: 36px;
}

.section-heading h2,
.split-copy h2,
.contact-copy h2 {
  margin: 0;
  color: var(--black);
  font-size: 46px;
  line-height: 1.04;
  letter-spacing: 0;
}

.section-heading p:not(.section-kicker),
.split-copy p,
.contact-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.service-heading,
.gallery-heading {
  grid-template-columns: minmax(0, 0.98fr) minmax(340px, 0.72fr);
  column-gap: clamp(48px, 7vw, 112px);
  row-gap: 10px;
  align-items: end;
  margin-bottom: 52px;
}

.service-heading .section-kicker,
.gallery-heading .section-kicker {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
}

.service-heading h2,
.gallery-heading h2 {
  grid-column: 1;
  grid-row: 2;
  max-width: 680px;
}

.service-heading p:not(.section-kicker),
.gallery-heading p:not(.section-kicker) {
  grid-column: 2;
  grid-row: 2;
  max-width: 460px;
  padding-bottom: 5px;
  line-height: 1.58;
}

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

.service-card,
.step {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
}

.service-card {
  min-height: 278px;
  padding: 26px;
}

.service-card span,
.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 30px;
  border-radius: 50%;
  background: var(--black);
  color: var(--yellow);
  font-size: 14px;
  font-weight: 900;
}

.service-card h3,
.step h3 {
  margin: 0 0 12px;
  color: var(--black);
  font-size: 22px;
  line-height: 1.16;
}

.service-card p,
.step p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(420px, 1.15fr);
  gap: 54px;
  align-items: center;
  padding: 96px max(44px, calc((100vw - 1180px) / 2));
  background: var(--ink);
  color: var(--white);
}

.split-copy h2,
.contact-copy h2 {
  color: var(--white);
}

.split-copy p,
.contact-copy p {
  color: rgba(255, 255, 255, 0.72);
  margin-top: 22px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 13px;
  height: 3px;
  background: var(--yellow);
}

.fleet-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
}

.fleet-photo img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.steps-section {
  padding-top: 104px;
  padding-bottom: 72px;
}

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

.step {
  min-height: 236px;
  padding: 26px;
}

.step span {
  background: var(--yellow);
  color: var(--black);
}

.gallery-section {
  padding: 72px max(44px, calc((100vw - 1180px) / 2)) 110px;
  background: var(--ink);
  color: var(--white);
}

.gallery-section .section-heading h2 {
  color: var(--white);
}

.gallery-section .section-heading p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.72);
}

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

.gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #101010;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

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

.contact-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(360px, 0.75fr);
  gap: 70px;
  align-items: center;
  padding: 96px max(44px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.94), rgba(8, 8, 8, 0.78)),
    url("./assets/platform-rear-forest.jpg") center / cover;
  color: var(--white);
}

.contact-panel {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.big-phone {
  display: block;
  color: var(--yellow);
  font-size: 40px;
  line-height: 1.05;
  font-weight: 950;
}

.contact-panel p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px max(44px, calc((100vw - 1180px) / 2));
  background: var(--black);
  color: rgba(255, 255, 255, 0.72);
}

.site-footer p {
  margin: 0;
  color: var(--white);
  font-weight: 900;
}

.site-footer a {
  color: var(--yellow);
  font-weight: 900;
}

.mobile-call {
  display: none;
}

@media (max-width: 1080px) {
  .site-header {
    gap: 18px;
    padding-left: 28px;
    padding-right: 28px;
  }

  .brand span {
    display: none;
  }

  .hero h1 {
    font-size: 58px;
  }

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

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

  .section-heading {
    gap: 18px;
    align-items: start;
  }

  .service-heading,
  .gallery-heading {
    grid-template-columns: 1fr;
    row-gap: 14px;
    margin-bottom: 38px;
  }

  .service-heading .section-kicker,
  .service-heading h2,
  .service-heading p:not(.section-kicker),
  .gallery-heading .section-kicker,
  .gallery-heading h2,
  .gallery-heading p:not(.section-kicker) {
    grid-column: auto;
    grid-row: auto;
    max-width: 680px;
    padding-bottom: 0;
  }

  .split-section,
  .contact-section {
    gap: 38px;
  }

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

@media (max-width: 760px) {
  body {
    padding-bottom: 72px;
  }

  .site-header {
    grid-template-columns: auto auto;
    padding: 12px 18px;
  }

  .address-place {
    display: block;
    margin-top: 2px;
  }

  .brand img {
    width: 74px;
    height: 74px;
  }

  .menu-toggle {
    justify-self: end;
    display: inline-flex;
    width: 46px;
    height: 46px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.34);
    color: var(--white);
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    transition:
      transform 160ms ease,
      opacity 160ms ease;
  }

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

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

  .site-nav {
    position: absolute;
    top: 100%;
    left: -18px;
    right: -18px;
    width: auto;
    max-width: none;
    transform: translateY(-1px);
    margin: 0;
    display: none;
    grid-column: 1 / -1;
    justify-self: stretch;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 12px 18px 16px;
    border-radius: 0;
    background: rgba(8, 8, 8, 0.72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.34);
  }

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

  .site-nav a {
    min-height: 54px;
    justify-content: center;
    border-radius: 6px;
    font-size: 17px;
  }

  .header-call {
    display: none;
  }

  .hero,
  .hero-inner {
    min-height: 82vh;
  }

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

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.48)),
      linear-gradient(0deg, rgba(0, 0, 0, 0.74) 0%, rgba(0, 0, 0, 0.12) 44%);
  }

  .hero-inner {
    width: calc(100% - 36px);
    padding: 116px 0 40px;
  }

  .hero h1 {
    max-width: 430px;
    font-size: 42px;
    line-height: 1;
  }

  .hero-lead {
    max-width: 510px;
    font-size: 17px;
    line-height: 1.5;
  }

  .hero-actions {
    width: 100%;
    margin-top: 26px;
  }

  .btn {
    width: 100%;
    min-width: 0;
    min-height: 52px;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .hero-facts span {
    min-height: 54px;
    padding: 14px 16px;
  }

  .quick-strip {
    grid-template-columns: 1fr;
    width: calc(100% - 36px);
    margin-top: 0;
  }

  .quick-strip div {
    min-height: 86px;
    padding: 18px 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-strip div:last-child {
    border-bottom: 0;
  }

  .quick-strip strong {
    font-size: 22px;
  }

  .quick-strip .quick-address {
    max-width: none;
    font-size: 19px;
  }

  .section,
  .split-section,
  .gallery-section,
  .contact-section {
    width: auto;
    padding-left: 18px;
    padding-right: 18px;
  }

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

  .section-heading h2,
  .split-copy h2,
  .contact-copy h2 {
    font-size: 34px;
    line-height: 1.08;
  }

  .section-heading p:not(.section-kicker),
  .split-copy p,
  .contact-copy p {
    font-size: 16px;
  }

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

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

  .split-section,
  .contact-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .fleet-photo {
    border-radius: 0;
    margin-left: -18px;
    margin-right: -18px;
  }

  .fleet-photo img {
    aspect-ratio: 4 / 3;
  }

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

  .gallery-section {
    padding-top: 66px;
    padding-bottom: 76px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 245px;
  }

  .gallery-item.wide {
    grid-column: auto;
  }

  .contact-panel {
    padding: 24px;
  }

  .big-phone {
    font-size: 30px;
  }

  .contact-actions {
    margin-top: 26px;
  }

  .mobile-call {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    border-radius: var(--radius);
    background: var(--yellow);
    color: var(--black);
    font-weight: 950;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 18px;
  }
}

@media (max-width: 410px) {
  .hero h1 {
    font-size: 37px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .section-heading h2,
  .split-copy h2,
  .contact-copy h2 {
    font-size: 31px;
  }

  .big-phone {
    font-size: 27px;
  }
}

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