/*-------------------------------------------------------------------------*/
/* !  Base */
@font-face {
  font-family: "DM Sans";
  src: url("../fonts/DMSans-VariableFont_opsz,wght.woff2") format("woff2");
  font-weight: 100 1000;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("../fonts/DMSans-Italic-VariableFont_opsz,wght.woff2") format("woff2");
  font-weight: 100 1000;
  font-style: italic;
  font-display: swap;
}
:root {
  --width-gutter: 20px;
  --width-page: calc(1320px + 2 * var(--width-gutter));
  --font-main: "DM Sans", Helvetica, Arial, sans-serif;
  --font-header: "DM Sans", Helvetica, Arial, sans-serif;
  --color-yellow: #f7b500;
  --color-black: #0e0e10;
  --color-grey: #4f5250;
  --color-white: #ffffff;
  --color-cream: #f1ece1;
  --size-p: 21px;
  --size-30: 30px;
  --size-h1: 76px;
  --size-h2: 56px;
  --size-24: 24px;
  --size-52: 52px;
  --size-72: 72px;
  --header-height: 110px;
  --spacer-height: 60px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-black);
  background: var(--color-cream);
  font-family: var(--font-main);
  font-size: var(--size-p);
  font-weight: 400;
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.remove-scrolling {
  overflow: hidden;
}

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

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

h1,
h2 {
  margin: 0 0 16px;
  color: var(--color-black);
  font-family: var(--font-header);
  line-height: 1;
  letter-spacing: -0.02em;
}

h1 {
  font-size: var(--size-h1);
  font-weight: 400;
}

h2 {
  font-size: var(--size-h2);
  font-weight: 700;
}

p {
  margin: 0 0 1em;
  font-size: var(--size-p);
  line-height: 1.2;
}

/*-------------------------------------------------------------------------*/
/* !  Layout */
.wrap {
  width: 100%;
  max-width: var(--width-page);
  padding: 0 var(--width-gutter);
  margin: 0 auto;
}

.grid-2,
.grid-12 {
  width: 100%;
  max-width: var(--width-page);
  padding: 0 var(--width-gutter);
  margin: 0 auto;
  display: grid;
  gap: 20px;
}

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

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

.spacer-top {
  background: var(--color-black);
  height: var(--spacer-height);
  max-width: 100%;
  gap: 0;
  padding: 0;
}
.spacer-top .spacer {
  width: 100%;
  height: 100%;
  border-top-right-radius: var(--spacer-height);
  background: var(--color-yellow);
}

.spacer-bottom {
  background: var(--color-black);
  height: var(--spacer-height);
  max-width: 100%;
  gap: 0;
  padding: 0;
}
.spacer-bottom .spacer {
  width: 100%;
  height: 100%;
  border-bottom-left-radius: var(--spacer-height);
  background: var(--color-yellow);
}

/*-------------------------------------------------------------------------*/
/* !  Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  isolation: isolate;
}
.site-header::before, .site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  transition: opacity 250ms ease;
}
.site-header::before {
  background: linear-gradient(180deg, rgb(14, 14, 16) 0%, rgba(14, 14, 16, 0) 100%);
  opacity: 1;
}
.site-header::after {
  background: var(--color-black);
  opacity: 0;
}
.site-header.is-scrolled::before, .site-header.is-menu-open::before {
  opacity: 0;
}
.site-header.is-scrolled::after, .site-header.is-menu-open::after {
  opacity: 1;
}

.site-header__inner {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
}

.site-logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  height: 45px;
}

.site-logo-image {
  width: auto;
  height: 45px;
}

.site-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.site-nav a {
  color: var(--color-white);
}
.site-nav .site-nav-spacer {
  display: none;
}

.site-nav-toggle {
  display: none;
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  cursor: pointer;
  color: var(--color-white);
}
.site-nav-toggle span {
  display: block;
  width: 30px;
  height: 1px;
  background: var(--color-yellow);
  transition: transform 200ms ease, opacity 200ms ease;
}
.site-nav-toggle span + span {
  margin-top: 15px;
}

.section-hero {
  min-height: 100vh;
  background: var(--color-black);
  overflow: hidden;
}
.section-hero .hero-wrap {
  width: 100%;
  max-width: var(--width-page);
  padding: 0 var(--width-gutter);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
  height: 100vh;
}
.section-hero .hero-content {
  align-content: flex-end;
  position: relative;
  z-index: 2;
  padding-bottom: calc(var(--spacer-height) + 70px);
}
.section-hero .hero-content h1 {
  max-width: calc(var(--width-page) / 2);
  color: var(--color-white);
  letter-spacing: 0em;
}
.section-hero .hero-image-wrap {
  position: absolute;
  top: 0;
  bottom: var(--spacer-height);
  right: 50%;
  width: 100vw;
  transform: translateX(50%);
}
.section-hero .hero-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.9) 100%);
  opacity: 0.9;
}
.section-hero .hero-image-wrap picture {
  width: 100%;
  height: 100%;
}
.section-hero .hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-hero .hero-strip {
  height: var(--spacer-height);
  background: red;
  z-index: 3;
  background: var(--color-black);
  position: absolute;
  bottom: 0;
  width: calc(100vw + (100vw - var(--width-page)) / 2);
  position: absolute;
  right: 50%;
  width: 100vw;
  transform: translateX(50%);
}
.section-hero .hero-strip .spacer {
  width: 100%;
  height: 100%;
  border-bottom-right-radius: var(--spacer-height);
  background: var(--color-yellow);
}

.section-text .intro-text {
  padding-right: 10px;
}
.section-text .text-copy p {
  line-height: 1.1em;
}

@media (max-width: 767px) {
  .site-header__inner {
    min-height: 92px;
  }
  .section-hero {
    min-height: auto;
  }
  .site-logo-image {
    height: 38px;
  }
  .hero-content {
    padding: 40px 0 24px;
  }
  .hero-image-wrap {
    position: relative;
    width: 100%;
    height: 100%;
  }
}
.site-footer {
  padding-top: 80px;
  background: var(--color-black);
}
.site-footer .grid-2 {
  margin-bottom: 150px;
}
.site-footer .spacer-bottom-footer {
  width: 100%;
  height: var(--spacer-height);
  background: var(--color-yellow);
}
.site-footer .spacer-bottom-footer .spacer {
  width: 100%;
  height: 100%;
  border-bottom-right-radius: var(--spacer-height);
  background: var(--color-black);
}
.site-footer p {
  color: var(--color-cream);
}
.site-footer .site-footer-left .slogan {
  font-size: var(--size-72);
  font-weight: 700;
  line-height: 1em;
  margin-bottom: 10px;
}
.site-footer .site-footer-left .get-touch {
  font-size: var(--size-72);
  line-height: 1em;
  color: var(--color-yellow);
  margin-bottom: 60px;
}
.site-footer .site-footer-left .contact-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.site-footer .site-footer-left .contact-details p {
  font-weight: 700;
}
.site-footer .site-footer-left .contact-details p a {
  font-weight: 400;
  text-decoration: none;
  color: var(--color-cream);
}
.site-footer .site-footer-left .contact-details p a:hover {
  text-decoration: underline;
}
.site-footer .site-footer-right {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}
.site-footer .social-icons {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: flex-end;
}
.site-footer .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.site-footer .social-icon {
  width: 30px;
  height: 30px;
}
.site-footer .footer-copy {
  padding-top: 20px;
  padding-bottom: 20px;
  background: var(--color-yellow);
}
.site-footer .footer-copy p {
  font: 700 16px var(--font-main);
  margin-bottom: 0;
  color: var(--color-black);
}

.section-text {
  background: var(--color-black);
  padding-top: 150px;
  padding-bottom: 130px;
}
.section-text .intro-text {
  grid-column: 2/span 10;
}
.section-text .intro-text p {
  font-size: var(--size-52);
  color: var(--color-yellow);
  margin-bottom: 100px;
  line-height: 1em;
}
.section-text .text-title {
  grid-column: 2/span 2;
}
.section-text .text-title h2 {
  font-size: var(--size-24);
  font-weight: 700;
  color: var(--color-yellow);
}
.section-text .text-copy {
  grid-column: 5/span 7;
}
.section-text .text-copy p,
.section-text .text-copy ul,
.section-text .text-copy ol,
.section-text .text-copy li {
  font-size: var(--size-30);
  letter-spacing: -0.01em;
  color: var(--color-cream);
}
.section-text .text-copy p,
.section-text .text-copy ul,
.section-text .text-copy ol {
  margin-bottom: 0.833333em;
}
.section-text .text-copy ul,
.section-text .text-copy ol {
  padding: 0;
  list-style: none;
}
.section-text .text-copy li {
  position: relative;
  padding-left: 1em;
}
.section-text .text-copy li::before {
  content: "-";
  position: absolute;
  left: 0;
  color: var(--color-yellow);
}

.section-video {
  background: var(--color-black);
  padding-top: 0;
  padding-bottom: 0;
}
.section-video .video-embed {
  grid-column: 1/-1;
  aspect-ratio: 16/9;
  background: var(--color-black);
}
.section-video .video-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.section-media-object {
  background: var(--color-cream);
  padding-top: 0;
  padding-bottom: 0;
}

.media-object-row {
  min-height: 572px;
  gap: 0px;
}

.media-object-media {
  position: relative;
}

.media-object-media .image-wrap {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  display: block;
  width: 50vw;
}

.media-object-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-object-content {
  display: flex;
  align-items: center;
  padding: 100px 12%;
}

.media-object-row-reverse .media-object-media {
  order: 2;
}
.media-object-row-reverse .media-object-media .image-wrap {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: auto;
  width: 50vw;
}
.media-object-row-reverse .media-object-content {
  position: relative;
  order: 1;
}

.media-object-copy {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.media-object-copy h2,
.media-object-copy p {
  margin: 0;
}
.media-object-copy h2 {
  font-size: var(--size-h2);
  line-height: 1;
}
.media-object-copy p {
  color: var(--color-grey);
  letter-spacing: -0.01em;
}

.media-object-row-automotive img {
  object-position: right center;
}

.section-hero img {
  object-position: left center;
}

.site-footer .spacer-bottom-footer .spacer {
  margin-top: -1px;
}

/*-------------------------------------------------------------------------*/
/* !  Mobile */
@media screen and (max-width: 1000px) {
  .section-text .intro-text {
    grid-column: 1/span 12;
  }
  .section-text .text-title {
    grid-column: 1/span 3;
  }
  .section-text .text-copy {
    grid-column: 5/span 8;
  }
  .media-object-content {
    display: flex;
    align-items: center;
    padding: 70px 0 70px 12%;
  }
  .media-object-row-reverse .media-object-content {
    padding: 70px 12% 70px 0;
  }
  .site-footer .grid-2 {
    grid-template-columns: 2fr 1fr;
  }
}
@media screen and (max-width: 900px) {
  .section-media-object .grid-2 {
    grid-template-columns: 1fr;
  }
  .media-object-row {
    min-height: auto;
  }
  .media-object-media {
    position: relative;
    left: auto;
    right: auto;
    width: auto;
    height: auto;
    margin-left: -20px;
    margin-right: -20px;
    aspect-ratio: 390/310;
  }
  .media-object-media .image-wrap {
    overflow: hidden;
    width: 100%;
  }
  .media-object-media picture {
    display: block;
    width: 100%;
    height: 100%;
  }
  .media-object-row-reverse .media-object-content {
    order: 2;
  }
  .media-object-row-reverse .media-object-media {
    order: 1;
  }
  .media-object-row-reverse .media-object-media .image-wrap {
    width: 100vw;
  }
  .media-object-content {
    grid-column: 1/-1;
    padding: 40px 0 140px !important;
  }
  .media-object-row-reverse .media-object-media,
  .media-object-row-reverse .media-object-content {
    grid-column: 1/-1;
  }
  .media-object-row-reverse .media-object-media .image-wrap {
    left: auto;
    right: auto;
  }
  .media-object-copy {
    gap: 20px;
  }
  .desktop-holder {
    display: none;
  }
}
@media (max-width: 767px) {
  :root {
    --size-p: 18px;
    --size-30: 21px;
    --size-h1: 40px;
    --size-h2: 32px;
    --size-24: 19px;
    --size-52: 26px;
    --size-72: 48px;
    --spacer-height: 40px;
    --header-height: 72px;
  }
  .desktop-holder {
    display: none;
  }
  .site-nav-toggle {
    display: inline-flex;
    position: relative;
    z-index: 12;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex-direction: column;
    gap: 0px;
  }
  .site-nav {
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    min-height: calc(100vh - var(--header-height));
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 100px 20px 40px;
    background: var(--color-yellow);
    transform: translateY(calc(-101% - var(--header-height)));
    transition: transform 250ms ease;
    z-index: -1;
  }
  .site-nav a {
    font-size: 40px;
    line-height: 1.15;
    color: var(--color-black);
  }
  .site-nav .site-nav-spacer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: var(--spacer-height);
    z-index: 1;
    background: var(--color-black);
    display: block;
  }
  .site-nav .site-nav-spacer .spacer {
    width: 100%;
    height: 100%;
    border-bottom-right-radius: var(--spacer-height);
    background: var(--color-yellow);
  }
  .site-nav.is-open {
    transform: translateY(0);
  }
  .site-nav-toggle[aria-expanded=true] span:first-child {
    transform: translateY(10px) rotate(45deg);
  }
  .site-nav-toggle[aria-expanded=true] span:last-child {
    transform: translateY(-5px) rotate(-45deg);
  }
  .hero {
    min-height: auto;
    padding-top: 56px;
  }
  .wrap {
    width: min(100% - 32px, var(--width-page));
    padding: 0;
  }
  .grid-2,
  .grid-12 {
    grid-template-columns: 1fr;
    flex-direction: column;
  }
  .section-text {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .section-text .intro-text p {
    margin-bottom: 60px;
  }
  .section-text .text-title,
  .section-text .text-copy {
    grid-column: auto;
  }
  .site-footer .grid-2 {
    grid-template-columns: 1fr;
  }
  .site-footer .site-footer-left .contact-details {
    grid-template-columns: 1fr;
  }
  .site-footer .site-footer-left .get-touch {
    margin-bottom: 40px;
  }
  .site-footer .social-icons,
  .site-footer .site-footer-right {
    justify-content: flex-start;
  }
}

/*# sourceMappingURL=style.css.map */
