@font-face {
  font-family: "Monument Grotesk";
  src: url("/fonts/MonumentGrotesk-Regular.woff2") format("woff2"),
    url("/fonts/MonumentGrotesk-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Monument Grotesk SemiMono";
  src: url("/fonts/MonumentGrotesk-SemiMono.woff2") format("woff2"),
    url("/fonts/MonumentGrotesk-SemiMono.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

body {
  font-family: "Monument Grotesk", sans-serif;
  font-size: 14px;
  line-height: 18px;
}

.mono {
  font-family: "Monument Grotesk SemiMono", sans-serif;
  letter-spacing: -3%;
}

.uppercase {
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  text-align: inherit;
  text-decoration: inherit;
  text-transform: inherit;
  text-transform: inherit;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  text-align: inherit;
  text-decoration: inherit;
  text-transform: inherit;
  text-transform: inherit;
}

a {
  color: inherit;
  text-decoration: inherit;
  cursor: pointer;
}

.meta {
  font-family: "Monument Grotesk SemiMono", sans-serif;
}

.visual {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  z-index: 50;
}

.media {
  position: relative;
  width: 100%;
  height: 100%;
}

.media-video,
.media-poster {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.media-play {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

header {
  position: fixed;
  bottom: 0;
  left: 0;
  width: calc(100vw - 20px);
  z-index: 100;
  margin: 10px;
  display: grid;
  grid-template-columns: 1fr max-content max-content;
  background: #fff;
  color: #000;
  border-radius: 6px;
  padding: 9px 35px 10px;
  box-sizing: border-box;
  gap: 140px;
}

.section-title {
  margin-bottom: 40px;
}

.tagline {
  margin-bottom: 15px;
}

.selected-clients ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 10px;
}

.toggle-mobile {
  all: unset;
}

.mobile-details {
  display: contents;
}

@media (min-width: 821px) and (max-width: 1300px) {
  .selected-clients ul {
    grid-template-columns: 1fr;
  }

  header {
    gap: 70px;
  }
}

@media (min-width: 821px) {
  .toggle-mobile {
    display: none;
  }
}

@media (max-width: 820px) {
  body {
    font-size: 11px;
    line-height: 13px;
    letter-spacing: -1%;
  }

  .mono {
    letter-spacing: -2%;
  }

  header {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 5px 10px 6px;
    bottom: 80px;
  }

  .title-description {
    position: relative;
  }

  .toggle-mobile {
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    transform-origin: center;
    transition: transform 160ms ease;
  }

  .toggle-mobile[aria-expanded="true"] {
    transform: rotate(180deg);
  }

  .section-title {
    margin-bottom: 12px;
  }

  .mobile-collapsible,
  .mobile-details {
    display: none;
  }

  .is-mobile-details-open .mobile-collapsible,
  .is-mobile-details-open .mobile-details {
    display: block;
  }

  .is-mobile-details-open .mobile-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }
}