:root {
  --transport-green: #31512c;
  --transport-green-dark: #243d20;
  --transport-lime: #81bc3c;
  --transport-ink: #273723;
  --transport-text: #555b53;
  --transport-soft: #f4f5ef;
}

body {
  color: var(--transport-text);
  background: #fff;
}

main {
  overflow: hidden;
}

.navbar {
  top: 0;
}

.toggle-button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.transport-container {
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
}

.transport-hero {
  min-height: 650px;
  margin-top: 85px;
  background: url("/images/transport/transport-image-1.webp") 60% center / cover no-repeat;
}

.transport-hero__overlay {
  min-height: inherit;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, rgba(15, 28, 17, .88) 0%, rgba(15, 28, 17, .62) 47%, rgba(15, 28, 17, .18) 100%);
}

.transport-hero__content {
  padding-block: 72px;
  color: #fff;
}

.transport-label {
  display: inline-flex;
  margin: 0 0 16px;
  padding: 8px 14px;
  border-radius: 2px;
  color: #fff;
  background: var(--transport-lime);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.transport-kicker {
  margin: 0 0 2px;
  color: var(--transport-lime);
  font-family: "Handlee", cursive;
  font-size: 1.45rem;
  font-weight: 600;
}

.transport-hero h1 {
  max-width: 680px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.6rem, 5.2vw, 4.5rem);
  line-height: .98;
  letter-spacing: -.035em;
}

.transport-hero__intro {
  max-width: 600px;
  margin: 24px 0 0;
  font-size: 1.05rem;
  line-height: 1.7;
}

.transport-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.transport-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 4px;
  color: #fff;
  font-size: .92rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

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

.transport-button--primary {
  background: var(--transport-lime);
}

.transport-button--primary:hover,
.transport-button--primary:focus-visible {
  background: #6da632;
}

.transport-button--ghost {
  border-color: rgba(255, 255, 255, .55);
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(4px);
}

.transport-button--ghost:hover,
.transport-button--ghost:focus-visible {
  border-color: #fff;
  background: rgba(255, 255, 255, .2);
}

.transport-stats {
  color: #fff;
  background: var(--transport-green);
}

.transport-stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-block: 26px;
}

.transport-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  text-align: center;
}

.transport-stat + .transport-stat {
  border-left: 1px solid rgba(255, 255, 255, .22);
}

.transport-stat strong {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.1;
}

.transport-stat strong span {
  color: #9bd05b;
}

.transport-stat small {
  margin-top: 4px;
  color: rgba(255, 255, 255, .78);
  font-size: .75rem;
}

.transport-section {
  padding-block: 76px;
}

.transport-heading {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.transport-heading h2,
.transport-cta h2 {
  margin: 0;
  color: var(--transport-ink);
  font-size: clamp(1.8rem, 3.6vw, 2.65rem);
  line-height: 1.14;
  letter-spacing: -.025em;
}

.transport-heading > p:last-child {
  margin: 20px auto 0;
  line-height: 1.75;
}

.transport-heading--compact {
  margin-bottom: 36px;
}

.transport-subtitle {
  position: relative;
  margin: 0 0 42px;
  padding-bottom: 18px;
  color: var(--transport-ink);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  text-align: center;
}

.transport-subtitle::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 44px;
  height: 3px;
  background: var(--transport-lime);
  content: "";
  transform: translateX(-50%);
}

.transport-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.transport-card {
  overflow: hidden;
  border: 1px solid #e5e8e2;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(27, 45, 25, .08);
}

.transport-card > img {
  display: block;
  height: 230px;
  object-fit: cover;
}

.transport-card__title {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 10px 18px;
  color: #fff;
  background: var(--transport-green);
}

.transport-card__title svg {
  flex: 0 0 22px;
  width: 22px;
  fill: var(--transport-lime);
}

.transport-card h4 {
  margin: 0;
  font-size: .96rem;
}

.transport-card > p {
  margin: 0;
  padding: 18px;
  font-size: .84rem;
  line-height: 1.65;
}

.transport-gallery {
  background: var(--transport-soft);
}

.transport-gallery__grid {
  display: grid;
  grid-template-columns: 1.05fr .52fr .52fr;
  grid-template-rows: 230px 230px 170px;
  gap: 12px;
}

.transport-gallery__item {
  overflow: hidden;
  margin: 0;
  border-radius: 7px;
}

.transport-gallery__item--main {
  grid-row: span 2;
}

.transport-gallery__item--wide {
  grid-column: 2 / 4;
}

.transport-gallery__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.transport-gallery__item:hover img {
  transform: scale(1.035);
}

.transport-process__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.transport-process__list li {
  text-align: center;
}

.transport-process__list span {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--transport-green);
  background: #edf3e6;
  font-weight: 700;
}

.transport-process__list h3 {
  margin: 16px 0 7px;
  color: var(--transport-ink);
  font-size: .94rem;
}

.transport-process__list p {
  margin: 0;
  font-size: .8rem;
  line-height: 1.55;
}

.transport-cta {
  min-height: 430px;
  color: #fff;
  background: url("/images/transport/transport-image-11.webp") center 60% / cover no-repeat;
}

.transport-cta__overlay {
  min-height: inherit;
  display: flex;
  align-items: center;
  background: rgba(20, 28, 20, .78);
}

.transport-cta__content {
  max-width: 800px;
  padding-block: 65px;
  text-align: center;
}

.transport-cta h2 {
  color: #fff;
}

.transport-cta__content > p:not(.transport-kicker) {
  max-width: 650px;
  margin: 18px auto 0;
  line-height: 1.65;
}

.transport-actions--center {
  justify-content: center;
}

.transport-button svg {
  width: 18px;
  fill: currentColor;
}

footer img {
  display: block;
}

@media (max-width: 1300px) {
  .transport-hero h1 {
    max-width: 620px;
  }
}

@media (max-width: 900px) {
  .transport-hero {
    min-height: 620px;
    background-position: 66% center;
  }

  .transport-hero__overlay {
    background: linear-gradient(90deg, rgba(15, 28, 17, .88), rgba(15, 28, 17, .42));
  }

  .transport-cards {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin-inline: auto;
  }

  .transport-card {
    display: grid;
    grid-template-columns: 210px 1fr;
  }

  .transport-card > img {
    grid-row: span 2;
    height: 100%;
    min-height: 220px;
  }

  .transport-gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 340px 210px 210px;
  }

  .transport-gallery__item--main {
    grid-row: auto;
  }

  .transport-gallery__item--wide {
    grid-column: span 2;
  }

  .transport-process__list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .transport-container {
    width: min(100% - 32px, 1120px);
  }

  .transport-hero {
    min-height: 610px;
    background-position: 72% center;
  }

  .transport-hero__overlay {
    align-items: flex-end;
    background: linear-gradient(0deg, rgba(15, 28, 17, .94), rgba(15, 28, 17, .35));
  }

  .transport-hero__content {
    padding-block: 54px;
  }

  .transport-label {
    margin-bottom: 12px;
  }

  .transport-kicker {
    font-size: 1.25rem;
  }

  .transport-hero h1 {
    font-size: clamp(2.25rem, 11vw, 3.35rem);
  }

  .transport-hero__intro {
    margin-top: 18px;
    font-size: .93rem;
    line-height: 1.55;
  }

  .transport-actions,
  .transport-button {
    width: 100%;
  }

  .transport-stats__grid {
    grid-template-columns: 1fr;
    padding-block: 10px;
  }

  .transport-stat {
    min-height: 82px;
  }

  .transport-stat + .transport-stat {
    border-top: 1px solid rgba(255, 255, 255, .22);
    border-left: 0;
  }

  .transport-section {
    padding-block: 58px;
  }

  .transport-heading {
    margin-bottom: 40px;
  }

  .transport-heading > p:last-child {
    font-size: .92rem;
    line-height: 1.65;
  }

  .transport-subtitle {
    margin-bottom: 30px;
  }

  .transport-card {
    display: block;
  }

  .transport-card > img {
    height: 250px;
    min-height: 0;
  }

  .transport-gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 290px 165px 165px;
    gap: 8px;
  }

  .transport-gallery__item--main,
  .transport-gallery__item--wide {
    grid-column: span 2;
  }

  .transport-gallery__item:nth-last-child(-n + 2) {
    display: none;
  }

  .transport-process__list {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .transport-process__list p {
    max-width: 320px;
    margin-inline: auto;
  }

  .transport-cta {
    min-height: 500px;
  }

  footer .main-container {
    width: calc(100% - 32px);
  }

  footer .millieu {
    padding-inline: 0;
  }

  .pub {
    flex-direction: column;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
