:root {
  --service-ink: #153040;
  --service-deep: #102c3a;
  --service-teal: #176c6d;
  --service-yellow: #efc44f;
  --service-coral: #c96652;
  --service-paper: #f3f7f5;
  --service-white: #ffffff;
  --service-line: rgba(21, 48, 64, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--service-ink);
  background: var(--service-paper);
  letter-spacing: 0;
}

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

img {
  max-width: 100%;
}

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

.service-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 72px;
  align-items: center;
  gap: 28px;
  padding: 10px 5%;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--service-line);
  backdrop-filter: blur(16px);
}

.service-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  justify-self: start;
  color: var(--service-deep);
  font-size: 18px;
  font-weight: 850;
}

.service-brand-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--service-white);
  background: var(--service-teal);
  border-radius: 4px;
}

.service-brand-icon svg,
.service-promise svg,
.service-route-track svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-brand-icon svg {
  width: 25px;
  height: 25px;
}

.service-nav {
  display: flex;
  gap: 30px;
  justify-self: center;
  color: rgba(21, 48, 64, 0.64);
  font-size: 14px;
  font-weight: 650;
}

.service-nav a,
.service-header-action {
  transition: color 180ms ease, background 180ms ease;
}

.service-nav a:hover,
.service-nav a:focus-visible {
  color: var(--service-teal);
}

.service-header-action {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-self: end;
  padding: 0 15px;
  color: var(--service-white);
  background: var(--service-deep);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
}

.service-header-action:hover,
.service-header-action:focus-visible {
  background: var(--service-teal);
}

.service-hero {
  position: relative;
  display: grid;
  height: calc(82svh - 72px);
  min-height: 640px;
  max-height: 800px;
  align-items: center;
  overflow: hidden;
  color: var(--service-white);
  background: var(--service-deep);
}

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

.service-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 44, 58, 0.96) 0%, rgba(16, 44, 58, 0.8) 44%, rgba(16, 44, 58, 0.14) 76%),
    linear-gradient(0deg, rgba(16, 44, 58, 0.42), transparent 46%);
}

.service-hero-copy {
  position: relative;
  z-index: 2;
  width: min(780px, 72%);
  padding: 64px 6%;
}

.service-kicker,
.service-job-label {
  margin-bottom: 14px;
  color: var(--service-coral);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.service-hero .service-kicker {
  color: var(--service-yellow);
}

.service-hero-copy h1 {
  max-width: 760px;
  margin-bottom: 23px;
  font-size: 76px;
  line-height: 0.98;
}

.service-hero-copy > p:not(.service-kicker) {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  line-height: 1.56;
}

.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.service-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 800;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.service-button-primary {
  color: var(--service-deep);
  background: var(--service-yellow);
}

.service-button-primary:hover,
.service-button-primary:focus-visible {
  background: #ffda76;
}

.service-button-outline {
  color: var(--service-white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.5);
}

.service-button-outline:hover,
.service-button-outline:focus-visible {
  color: var(--service-deep);
  background: var(--service-white);
}

.service-button-dark {
  color: var(--service-white);
  background: var(--service-deep);
}

.service-button-dark:hover,
.service-button-dark:focus-visible {
  background: var(--service-teal);
}

.service-hero-note {
  position: absolute;
  right: 5%;
  bottom: 28px;
  z-index: 2;
  margin-bottom: 0;
  padding-top: 10px;
  color: rgba(255, 255, 255, 0.76);
  border-top: 1px solid rgba(255, 255, 255, 0.46);
  font-size: 13px;
}

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

.service-promise article {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 18px;
  min-height: 190px;
  align-content: center;
  padding: 34px 3.7vw;
  color: var(--service-white);
  background: var(--service-teal);
}

.service-promise article:nth-child(2) {
  color: var(--service-deep);
  background: var(--service-yellow);
}

.service-promise article:nth-child(3) {
  background: var(--service-coral);
}

.service-promise svg {
  width: 40px;
  height: 40px;
}

.service-promise h2 {
  margin-bottom: 7px;
  font-size: 22px;
  line-height: 1.18;
}

.service-promise p {
  margin-bottom: 0;
  color: currentColor;
  opacity: 0.76;
  line-height: 1.5;
}

.service-jobs,
.service-route {
  padding: 96px 6%;
}

.service-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.55fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 44px;
}

.service-section-heading h2,
.service-preparation h2,
.service-request h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: 54px;
  line-height: 1.04;
}

.service-section-heading > p {
  max-width: 470px;
  margin-bottom: 0;
  color: rgba(21, 48, 64, 0.62);
  line-height: 1.62;
}

.service-job-list {
  border-top: 1px solid var(--service-line);
}

.service-job {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(400px, 1.08fr);
  gap: 64px;
  align-items: center;
  padding: 36px 0;
  border-bottom: 1px solid var(--service-line);
}

.service-job:nth-child(even) {
  grid-template-columns: minmax(400px, 1.08fr) minmax(0, 0.92fr);
}

.service-job:nth-child(even) img {
  order: 2;
}

.service-job > img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 4px;
}

.service-job-copy {
  padding: 28px 4vw;
}

.service-job-copy h3 {
  max-width: 620px;
  margin-bottom: 17px;
  font-size: 40px;
  line-height: 1.06;
}

.service-job-copy > p:not(.service-job-label) {
  max-width: 620px;
  color: rgba(21, 48, 64, 0.64);
  line-height: 1.62;
}

.service-job-copy ul,
.service-preparation-copy ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.service-job-copy li,
.service-preparation-copy li {
  position: relative;
  padding-left: 22px;
  font-weight: 680;
}

.service-job-copy li::before,
.service-preparation-copy li::before {
  content: "";
  position: absolute;
  top: 0.64em;
  left: 0;
  width: 10px;
  height: 2px;
  background: var(--service-coral);
}

.service-preparation {
  display: grid;
  grid-template-columns: minmax(380px, 0.86fr) minmax(0, 1.14fr);
  align-items: stretch;
  color: var(--service-white);
  background: var(--service-deep);
}

.service-preparation-copy {
  align-self: center;
  padding: 74px 7%;
}

.service-preparation-copy > p:not(.service-kicker) {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.62;
}

.service-preparation-copy li {
  color: rgba(255, 255, 255, 0.86);
}

.service-preparation-copy li::before {
  background: var(--service-yellow);
}

.service-preparation > img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 580px;
  object-fit: cover;
}

.service-route {
  background: var(--service-white);
}

.service-route-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--service-line);
  border-left: 1px solid var(--service-line);
}

.service-route-track article {
  min-height: 280px;
  padding: 27px;
  border-right: 1px solid var(--service-line);
  border-bottom: 1px solid var(--service-line);
}

.service-route-mark {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 46px;
}

.service-route-mark span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--service-deep);
  background: var(--service-yellow);
  border-radius: 50%;
  font-weight: 850;
}

.service-route-track svg {
  width: 36px;
  height: 36px;
  color: var(--service-teal);
}

.service-route-track article:nth-child(2) svg {
  color: #9b7118;
}

.service-route-track article:nth-child(3) svg {
  color: var(--service-coral);
}

.service-route-track h3 {
  margin-bottom: 10px;
  font-size: 23px;
  line-height: 1.16;
}

.service-route-track p {
  margin-bottom: 0;
  color: rgba(21, 48, 64, 0.6);
  line-height: 1.56;
}

.service-request {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  padding: 86px 6%;
  color: var(--service-deep);
  background: var(--service-yellow);
}

.service-request > div {
  max-width: 860px;
}

.service-request .service-kicker {
  color: #8b4e1c;
}

.service-request > div > p:last-child {
  max-width: 650px;
  margin: 20px 0 0;
  color: rgba(16, 44, 58, 0.68);
  line-height: 1.62;
}

.service-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 23px 6%;
  color: rgba(255, 255, 255, 0.62);
  background: var(--service-deep);
  font-size: 13px;
}

@media (max-width: 1060px) {
  .service-hero-copy h1 {
    font-size: 62px;
  }

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

  .service-job,
  .service-job:nth-child(even) {
    gap: 34px;
  }

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

@media (max-width: 820px) {
  .service-header {
    grid-template-columns: 1fr auto;
  }

  .service-nav {
    display: none;
  }

  .service-hero-copy {
    width: 86%;
  }

  .service-hero-note {
    display: none;
  }

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

  .service-promise article {
    grid-template-columns: 46px minmax(0, 1fr);
    min-height: 0;
  }

  .service-section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .service-job,
  .service-job:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .service-job:nth-child(even) img {
    order: 0;
  }

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

  .service-preparation > img {
    min-height: 430px;
  }

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

@media (max-width: 560px) {
  .service-header {
    min-height: 64px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .service-header-action {
    min-height: 38px;
    padding: 0 12px;
    font-size: 12px;
  }

  .service-brand > span:last-child {
    display: none;
  }

  .service-hero {
    height: calc(84svh - 64px);
    min-height: 640px;
  }

  .service-hero > img {
    object-position: 68% center;
  }

  .service-hero-shade {
    background:
      linear-gradient(90deg, rgba(16, 44, 58, 0.96), rgba(16, 44, 58, 0.64) 80%, rgba(16, 44, 58, 0.3)),
      linear-gradient(0deg, rgba(16, 44, 58, 0.56), transparent 50%);
  }

  .service-hero-copy {
    width: 100%;
    padding: 52px 20px;
  }

  .service-hero-copy h1 {
    font-size: 44px;
    line-height: 1;
  }

  .service-hero-copy > p:not(.service-kicker) {
    font-size: 17px;
  }

  .service-actions {
    display: grid;
  }

  .service-button {
    width: 100%;
  }

  .service-promise article {
    padding: 27px 20px;
  }

  .service-jobs,
  .service-route,
  .service-request {
    padding-right: 20px;
    padding-left: 20px;
  }

  .service-jobs,
  .service-route {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .service-section-heading h2,
  .service-preparation h2,
  .service-request h2 {
    font-size: 39px;
  }

  .service-job-copy {
    padding: 25px 0;
  }

  .service-job-copy h3 {
    font-size: 31px;
  }

  .service-preparation-copy {
    padding: 64px 20px;
  }

  .service-preparation > img {
    min-height: 320px;
  }

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

  .service-route-track article {
    min-height: 0;
  }

  .service-route-mark {
    margin-bottom: 28px;
  }

  .service-request {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .service-footer {
    flex-direction: column;
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
