@import url("https://fonts.googleapis.com/css2?family=Newsreader:wght@200&display=swap");
*, *::before, *::after {
  margin: 0;
  padding: 0;
  text-decoration: none;
  box-sizing: border-box;
}

a, button, img, .dd-thumb {
  outline: none;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -webkit-tap-highlight-color: transparent;
}

html {
  font-size: 16px;
  color: white;
  font-family: Helvetica, sans-serif;
  background-color: #000000;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
  scroll-behavior: smooth;
}

body.lock-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

h1, h2, h3 {
  font-weight: 400;
  font-style: normal;
}

h4, p, small, li {
  font-family: "Newsreader", serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
}

h1 {
  font-size: 3rem;
  line-height: 3.25rem;
}
@media screen and (max-width: 480px) {
  h1 {
    font-size: 2rem;
    line-height: 2.25rem;
  }
}

h3, h4 {
  font-size: 1rem;
  line-height: 1.25rem;
  text-transform: uppercase;
}
@media screen and (max-width: 480px) {
  h3, h4 {
    font-size: 0.75rem;
    line-height: 1rem;
  }
}

p {
  font-size: 1.75rem;
  line-height: 2rem;
  margin-top: 6px;
}
@media screen and (max-width: 480px) {
  p {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }
}

small, li {
  font-size: 1.125rem;
  line-height: 1.375rem;
}

a {
  font-size: 1rem;
  line-height: 1.25rem;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}
@media screen and (max-width: 480px) {
  a {
    font-size: 0.75rem;
    line-height: 1rem;
  }
}

.copy {
  white-space: pre-line;
}

.italic {
  font-style: italic;
}

.f-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.f-col {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  justify-content: space-between;
}

.f-col-20 {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.g-auto {
  display: grid;
  grid-gap: 1.25rem;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
}
@media screen and (max-width: 480px) {
  .g-auto {
    grid-auto-flow: row;
  }
}

.g-meta {
  display: grid;
  grid-gap: 0.5rem;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
}

.g-3 {
  display: grid;
  grid-gap: 0.5rem;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 480px) {
  .g-3 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.p-v-40 {
  padding: 0 2.5rem;
}
@media screen and (max-width: 480px) {
  .p-v-40 {
    padding: 0 1.25rem;
  }
}

.p-h-20 {
  padding: 1.25rem 0;
}

.p-h-60 {
  padding: 3.75rem 0;
}

.p-b-20 {
  padding-bottom: 1.25rem;
}

.m-b-20 {
  margin-bottom: 1.25rem;
}

.p-meta {
  padding: 0.5rem 2.5rem;
}
@media screen and (max-width: 480px) {
  .p-meta {
    padding: 0.5rem 1.25rem;
  }
}

.p-sec {
  padding: 3.75rem 2.5rem;
}
@media screen and (max-width: 480px) {
  .p-sec {
    padding: 1.25rem;
  }
}

.p-btn {
  padding: 1.25rem 2.5rem;
  border-radius: 4px;
  text-align: center;
}

.sp-full {
  height: 75vh;
  align-items: center;
}

.l-t-1 {
  border-top: 1px solid #242424;
}

.l-tb-1 {
  border-top: 1px solid #242424;
  border-bottom: 1px solid #242424;
}

.l-b-w {
  border-bottom: 1px solid white;
}

.bg-blue {
  background: linear-gradient(0deg, rgb(0, 74, 173) 0%, rgb(83, 113, 255) 100%);
}

.bg-purple {
  background: linear-gradient(0deg, rgb(75, 46, 143) 0%, rgb(149, 35, 140) 100%);
}

.bg-red {
  background: linear-gradient(0deg, rgb(234, 37, 74) 0%, rgb(233, 23, 126) 100%);
}

.bg-yellow {
  background: linear-gradient(0deg, rgb(222, 109, 4) 0%, rgb(249, 218, 90) 100%);
}

.bg-green {
  background: linear-gradient(0deg, rgb(66, 178, 72) 0%, rgb(128, 196, 63) 100%);
}

.bg-w {
  background-color: white;
  color: #242424;
}

.bg-bw-1 {
  background-color: #242424;
}

.bg-bw-2 {
  background-color: #2e2e2e;
}

.bg-bw-3 {
  background-color: #383838;
}

.bg-bw-4 {
  background-color: #424242;
}

.bg-bw-5 {
  background-color: #4c4c4c;
}

.bg-bw-6 {
  background-color: #555555;
}

.bg-bwo {
  background-color: rgba(36, 36, 36, 0.4);
}

nav {
  display: flex;
  flex-direction: row;
  gap: 3rem;
}
@media screen and (max-width: 480px) {
  nav {
    gap: 2rem;
  }
}

img {
  width: 100%;
  object-fit: cover;
}
img.circle {
  clip-path: circle();
}

.frame img {
  aspect-ratio: 9/4;
}
@media screen and (max-width: 480px) {
  .frame img {
    aspect-ratio: 7/4;
  }
}

@media screen and (max-width: 480px) {
  header {
    margin-top: 3.2rem;
  }
}

menu {
  position: fixed;
  top: 0;
  z-index: 100;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 2.5rem;
  align-items: center;
}
@media screen and (max-width: 480px) {
  menu {
    padding: 1rem;
  }
}
menu img {
  height: 3rem;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}
@media screen and (max-width: 480px) {
  menu img {
    height: 1.25rem;
  }
}
menu div {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 0.5rem;
}

.dd-phone {
  position: fixed;
  top: 0;
  z-index: 120;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100dvh;
  padding: 1rem;
  background-color: black;
  transform: translateY(-120%);
  transition: transform 1s ease;
}
.dd-phone hgroup {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.dd-phone hgroup img {
  height: 1.25rem;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}
.dd-phone hgroup a:last-child {
  rotate: 45deg;
}
.dd-phone h1 {
  text-transform: capitalize;
}
@media screen and (min-width: 768px) {
  .dd-phone {
    display: none;
  }
}

.dd-phone.active {
  transform: translateY(0%);
}

.dd-list > * {
  display: block;
  padding: 1.25rem 0;
  border-bottom: 1px solid white;
}

.dd-list > *:last-child {
  border-bottom: none;
}

.dd-wrapper {
  flex: 1;
  display: flex;
  flex-direction: row;
  gap: 1.25rem;
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.dd-wrapper::-webkit-scrollbar {
  display: none;
}

.dd-thumb {
  flex: 0 0 60vw;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.dd-thumb img {
  aspect-ratio: 3/2;
}

.dd-meta {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
}
.dd-meta img {
  width: 1.25rem;
  clip-path: circle();
}

.dd-desk {
  position: fixed;
  top: 0;
  z-index: 140;
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 2.5rem;
  padding: 2.5rem;
  background-color: black;
  transform: translateY(-120%);
  transition: transform 1s ease;
  will-change: transform;
}
.dd-desk .dd-thumb {
  flex: 0 0 30vw;
}

.dd-desk.active {
  transform: translateY(0%);
}

.card-holder-1 {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.card-1 {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 30vw;
  flex-shrink: 0;
  padding: 2.5rem;
  scroll-snap-align: start;
}
@media screen and (max-width: 480px) {
  .card-1 {
    width: 80vw;
  }
}
.card-1 h1 {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid white;
}

.card-2 {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  grid-column-end: span 1;
  padding: 1.25rem;
  border: 1px solid #242424;
  border-radius: 4px;
}
.card-2 small {
  padding-top: 1.25rem;
  border-top: 1px solid #242424;
}
.card-2 img {
  width: 2.5rem;
  height: 2.5rem;
  clip-path: circle();
}

.card-3-holder {
  display: flex;
  flex-direction: column;
}

.card-3 {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-height: 38rem;
  padding: 2.5rem;
}
@media screen and (max-width: 480px) {
  .card-3 {
    min-height: 10rem;
  }
}
.card-3 img {
  width: 6rem;
}
.card-3 h1, .card-3 hgroup {
  padding-bottom: 1.25rem;
}

.card-3-folder {
  padding: 0 2.5rem;
}

.card-3-fold {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-height: 20rem;
  border-top: 1px solid white;
  display: none;
  overflow: hidden;
}

.fold-toggle {
  cursor: pointer;
}

.stills article {
  align-items: center;
  padding: 0.25rem 2.5rem 3.75rem;
}
@media screen and (max-width: 480px) {
  .stills article {
    padding: 0.25rem 1.25rem 3.75rem;
  }
}

.feature {
  aspect-ratio: 2/1;
  transition: opacity 0.4s ease, transform 0.4s ease;
  opacity: 1;
  transform: scale(1);
}

.feature.fade-out {
  opacity: 0;
  transform: scale(0.95);
}

.thumbs {
  gap: 0.25rem;
  overflow-x: scroll;
  overflow-y: hidden;
}
.thumbs img {
  height: 4rem;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.thumbs img:hover {
  transform: scale(1.05);
}

.opener {
  width: calc(66.6666666667vw - 1.25rem);
}
@media screen and (max-width: 480px) {
  .opener {
    width: 100%;
  }
}

.outro {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 1.25rem 2.5rem;
}
@media screen and (max-width: 480px) {
  .outro {
    display: flex;
    flex-direction: column;
    padding: 1.25rem;
  }
}

@media screen and (max-width: 480px) {
  .ph-hide {
    display: none;
  }
}

.ph-show {
  display: none;
}
@media screen and (max-width: 480px) {
  .ph-show {
    display: block;
  }
}

.txt-grey {
  color: #555555;
}
