.page {
  width: 100%;
  overflow-x: hidden;
}

.wrap {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 4rem);
}

.section {
  width: 100%;
  padding-block: clamp(5rem, 10vw, 9rem);
}
.section--sunken {
  background: #0D0C0B;
}
.section--tight {
  padding-block: clamp(3rem, 6vw, 4.5rem);
}

.section-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
.section-head .section-head__role {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  font-size: 0.8125rem;
  font-weight: 400;
  color: #A8A29A;
}
.section-head .section-head__role::before {
  content: "";
  width: 34px;
  height: 1px;
  background: #B2A050;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
.section-head .section-head__body {
  max-width: 640px;
}
.section-head .section-head__body h1,
.section-head .section-head__body h2 {
  margin-bottom: 16px;
}
.section-head .section-head__lead {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #A8A29A;
}

.service-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.service-list .service-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  padding: 26px 0;
  border-top: 1px solid rgba(245, 244, 241, 0.1);
  color: rgb(245, 244, 241);
  -webkit-transition: border-color 0.2s;
  transition: border-color 0.2s;
}
.service-list .service-row:last-child {
  border-bottom: 1px solid rgba(245, 244, 241, 0.1);
}
.service-list .service-row .service-row__name {
  display: inline-block;
  font-family: "Spectral", Georgia, serif;
  font-weight: 500;
  font-size: 1.35rem;
  line-height: 1.2;
  color: rgb(245, 244, 241);
  -webkit-transition: color 0.2s, -webkit-transform 0.2s;
  transition: color 0.2s, -webkit-transform 0.2s;
  transition: transform 0.2s, color 0.2s;
  transition: transform 0.2s, color 0.2s, -webkit-transform 0.2s;
}
.service-list .service-row .service-row__summary {
  max-width: 60ch;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #A8A29A;
}
.service-list .service-row:hover, .service-list .service-row:focus-visible {
  border-top-color: rgba(178, 160, 80, 0.28);
  color: rgb(245, 244, 241);
}
.service-list .service-row:hover .service-row__name, .service-list .service-row:focus-visible .service-row__name {
  color: #C9B36A;
  -webkit-transform: translateX(6px);
          transform: translateX(6px);
}

.vehicle-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 1px solid rgba(245, 244, 241, 0.1);
  border-radius: 6px;
  overflow: hidden;
  background: #1A1815;
  -webkit-transition: border-color 0.25s;
  transition: border-color 0.25s;
}
.vehicle-card .vehicle-card__media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.vehicle-card .vehicle-card__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: brightness(88%);
          filter: brightness(88%);
}
.vehicle-card .vehicle-card__media.js-crossfade img {
  position: absolute;
  inset: 0;
  opacity: 0;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
}
.vehicle-card .vehicle-card__media.js-crossfade img.is-active {
  opacity: 1;
}
.vehicle-card .vehicle-card__media--empty {
  background: #0D0C0B;
}
.vehicle-card .vehicle-card__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  padding: 22px 22px 24px;
}
.vehicle-card .vehicle-card__cat {
  font-size: 0.8125rem;
  color: #A8A29A;
}
.vehicle-card .vehicle-card__spec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  margin-top: 2px;
  font-size: 0.8125rem;
  color: #A8A29A;
}
.vehicle-card .vehicle-card__spec::before {
  content: "";
  width: 24px;
  height: 1px;
  background: rgba(178, 160, 80, 0.28);
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
.vehicle-card .vehicle-card__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px 20px;
  margin-top: 14px;
}
.vehicle-card:hover, .vehicle-card:focus-within {
  border-color: rgba(178, 160, 80, 0.28);
}

.field {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 30px;
}
.field .input,
.field .textarea,
.field .select {
  width: 100%;
  padding: 22px 0 8px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  color: rgb(245, 244, 241);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(245, 244, 241, 0.1);
  border-radius: 0;
  -webkit-transition: border-color 0.2s;
  transition: border-color 0.2s;
}
.field .input:focus,
.field .textarea:focus,
.field .select:focus {
  outline: none;
  border-bottom-color: #B2A050;
}
.field .textarea {
  min-height: 120px;
  resize: vertical;
}
.field .user-label {
  position: absolute;
  left: 0;
  top: 20px;
  font-size: 1rem;
  color: #A8A29A;
  pointer-events: none;
  -webkit-transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.field .input:not(:-moz-placeholder) ~ .user-label, .field .textarea:not(:-moz-placeholder) ~ .user-label {
  top: 0;
  font-size: 0.75rem;
  color: #A8A29A;
}
.field .input:not(:-ms-input-placeholder) ~ .user-label, .field .textarea:not(:-ms-input-placeholder) ~ .user-label {
  top: 0;
  font-size: 0.75rem;
  color: #A8A29A;
}
.field .input:focus ~ .user-label,
.field .input:not(:placeholder-shown) ~ .user-label,
.field .textarea:focus ~ .user-label,
.field .textarea:not(:placeholder-shown) ~ .user-label,
.field .select:focus ~ .user-label,
.field .select:valid ~ .user-label {
  top: 0;
  font-size: 0.75rem;
  color: #A8A29A;
}
.field .input:focus ~ .user-label,
.field .textarea:focus ~ .user-label,
.field .select:focus ~ .user-label {
  color: rgb(245, 244, 241);
}

.field-error {
  display: block;
  margin-top: 8px;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: #C98A5A;
}

.cta-band {
  width: 100%;
  padding-block: clamp(4rem, 9vw, 7rem);
  background: #0D0C0B;
  border-top: 1px solid rgba(245, 244, 241, 0.1);
}
.cta-band .cta-band__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 28px;
}
.cta-band h2 {
  max-width: 20ch;
}
.cta-band p {
  max-width: 54ch;
  color: #A8A29A;
}

.faq {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.faq .faq-item {
  border-top: 1px solid rgba(245, 244, 241, 0.1);
}
.faq .faq-item:last-child {
  border-bottom: 1px solid rgba(245, 244, 241, 0.1);
}
.faq .faq-q {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 24px 0;
  text-align: left;
  font-family: "Spectral", Georgia, serif;
  font-size: 1.125rem;
  line-height: 1.35;
  color: rgb(245, 244, 241);
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.faq .faq-q:hover, .faq .faq-q:focus-visible {
  color: #C9B36A;
}
.faq .faq-q .faq-marker {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 1.1em;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: #B2A050;
  text-align: center;
}
.faq .faq-a {
  display: none;
  padding: 0 0 26px;
  max-width: 62ch;
}
.faq .faq-a p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #A8A29A;
}

.error-page {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 78vh;
  padding-block: clamp(6rem, 15vw, 10rem);
  overflow: hidden;
  background: #121110;
}
.error-page .error-page__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}
.error-page .error-page__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: -webkit-gradient(linear, left top, right top, from(rgba(18, 17, 16, 0.92)), color-stop(55%, rgba(18, 17, 16, 0.55)), to(rgba(18, 17, 16, 0.35))), -webkit-gradient(linear, left top, left bottom, from(rgba(18, 17, 16, 0.35)), color-stop(70%, rgba(18, 17, 16, 0.55)), to(rgba(18, 17, 16, 0.95)));
  background: linear-gradient(90deg, rgba(18, 17, 16, 0.92) 0%, rgba(18, 17, 16, 0.55) 55%, rgba(18, 17, 16, 0.35) 100%), linear-gradient(180deg, rgba(18, 17, 16, 0.35) 0%, rgba(18, 17, 16, 0.55) 70%, rgba(18, 17, 16, 0.95) 100%);
}
.error-page .wrap {
  position: relative;
  z-index: 2;
}
.error-page .error-page__code {
  font-family: "Spectral", Georgia, serif;
  font-weight: 300;
  font-size: clamp(3.5rem, 14vw, 7rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: #B2A050;
  margin-bottom: 18px;
}
.error-page .error-page__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px;
  max-width: 640px;
}
.error-page .error-page__lead {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgb(245, 244, 241);
  max-width: 54ch;
}
.error-page .error-page__lead a {
  color: #B2A050;
  border-bottom: 1px solid rgba(178, 160, 80, 0.28);
}
.error-page .error-page__lead a:hover {
  border-bottom-color: #B2A050;
}
.error-page .error-page__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px 20px;
  margin-top: 8px;
}
.error-page .error-page__meta {
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #A8A29A;
}
.error-page .error-page__meta a {
  color: rgb(245, 244, 241);
  border-bottom: 1px solid rgba(245, 244, 241, 0.1);
}
.error-page .error-page__meta a:hover {
  color: #B2A050;
}

.media-band {
  position: relative;
  width: 100%;
  min-height: clamp(320px, 44vh, 520px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  overflow: hidden;
}
.media-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}
.media-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: -webkit-gradient(linear, left top, right top, from(rgba(18, 17, 16, 0.85)), color-stop(55%, rgba(18, 17, 16, 0.4)), to(transparent)), -webkit-gradient(linear, left bottom, left top, from(rgba(13, 12, 11, 0.85)), color-stop(55%, transparent));
  background: linear-gradient(90deg, rgba(18, 17, 16, 0.85) 0%, rgba(18, 17, 16, 0.4) 55%, transparent 100%), linear-gradient(0deg, rgba(13, 12, 11, 0.85) 0%, transparent 55%);
}
.media-band .media-band__caption {
  position: relative;
  z-index: 2;
  padding-block: clamp(2.5rem, 6vw, 4rem);
}
.media-band .media-band__caption p {
  max-width: 30ch;
  font-family: "Spectral", Georgia, serif;
  font-size: clamp(1.4rem, 3.4vw, 2.1rem);
  line-height: 1.2;
  color: rgb(245, 244, 241);
}
.media-band .media-band__caption .media-band__note {
  margin-top: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  color: #A8A29A;
  max-width: 42ch;
}
.media-band .media-band__caption .button {
  margin-top: 22px;
}

.feature-split {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 28px;
}
.feature-split .feature-split__media {
  margin: 0;
}
.feature-split .feature-split__media img {
  width: 100%;
  aspect-ratio: 16/11;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid rgba(245, 244, 241, 0.1);
  border-radius: 6px;
}
.feature-split .feature-split__media figcaption {
  margin-top: 10px;
  font-size: 0.8125rem;
  color: #A8A29A;
}
.feature-split .feature-split__body {
  -ms-flex-item-align: center;
      align-self: center;
}
.feature-split .feature-split__body .role-label {
  margin-bottom: 18px;
}
.feature-split .feature-split__body h2,
.feature-split .feature-split__body h3 {
  margin-bottom: 14px;
}
.feature-split .feature-split__body p {
  color: #A8A29A;
  line-height: 1.7;
  max-width: 52ch;
}
.feature-split .feature-split__body p + p {
  margin-top: 14px;
}
.feature-split .feature-split__body .link-tertiary {
  margin-top: 20px;
  display: inline-block;
}

.figure {
  margin: 0;
}
.figure img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid rgba(245, 244, 241, 0.1);
  border-radius: 6px;
}
.figure figcaption {
  margin-top: 10px;
  font-size: 0.8125rem;
  color: #A8A29A;
}

.gallery-strip {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  overflow-x: auto;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
}
.gallery-strip figure {
  margin: 0;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 78%;
          flex: 0 0 78%;
  scroll-snap-align: start;
}
.gallery-strip figure:nth-child(3n) {
  -ms-flex-preferred-size: 62%;
      flex-basis: 62%;
}
.gallery-strip figure:nth-child(3n+2) {
  -ms-flex-preferred-size: 88%;
      flex-basis: 88%;
}
.gallery-strip figure img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
  border: 1px solid rgba(245, 244, 241, 0.1);
}

@media only screen and (min-width: 1140px) {
  .section-head {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 72px;
  }
  .section-head .section-head__role {
    width: 180px;
    padding-top: 10px;
  }
  .section-head .section-head__body {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .service-list .service-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    gap: 48px;
    padding: 30px 0;
  }
  .service-list .service-row .service-row__name {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 300px;
  }
  .service-list .service-row .service-row__summary {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .cta-band .cta-band__inner {
    gap: 32px;
  }
  .feature-split {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: clamp(3rem, 6vw, 5.5rem);
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .feature-split .feature-split__media {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 54%;
            flex: 0 0 54%;
  }
  .feature-split .feature-split__media img {
    height: 100%;
    aspect-ratio: auto;
  }
  .feature-split .feature-split__body {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .feature-split.feature-split--reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .gallery-strip {
    overflow: visible;
  }
  .gallery-strip figure {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
  }
  .gallery-strip figure:nth-child(3n), .gallery-strip figure:nth-child(3n+2) {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
  }
  .gallery-strip figure img {
    aspect-ratio: 3/4;
  }
  .gallery-strip figure:nth-child(even) img {
    aspect-ratio: 4/5;
  }
}/*# sourceMappingURL=page.css.map */