@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap");

:root {
  --project-bg: #0b0b0b;
  --project-text: #f2f2f2;
  --project-muted: #b5b5b5;
  --project-line: rgba(255, 255, 255, 0.15);
}

body.project-page {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--project-bg);
  color: var(--project-text);
  min-height: 100vh;
}

html,
body.project-page {
  overflow-x: hidden;
}

.project-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 12px 20px;
  min-height: 90px;
  background: transparent;
  box-shadow: none;
  pointer-events: none;
}

.project-header .header-title {
  margin: 32px auto 0;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-align: center;
  text-transform: capitalize;
  font-family: "seismic-latin-variable", sans-serif;
  font-variation-settings:
    "wght" 409,
    "SEIS" 100;
}

.project-header .header-mail {
  position: absolute;
  top: 32px;
  right: 3%;
  font-size: 14px;
}

.project-header .header-info {
  position: absolute;
  top: 32px;
  left: 3%;
  font-size: 14px;
  text-transform: lowercase;
}

.label-mobile {
  display: none;
}

.project-header .header-mail,
.project-header .header-title,
.project-header .header-info {
  pointer-events: auto;
}

.project-header .header-title a,
.project-header .header-mail a {
  color: #002bff;
  text-decoration: none;
}

.project-header .header-info a {
  color: #002bff;
  text-decoration: none;
}

.project-header .header-mail a:hover,
.project-header .header-mail a:focus,
.project-header .header-info a:hover,
.project-header .header-info a:focus {
  text-decoration: none;
  color: #000;
}

.project-header .header-title {
  color: #002bff;
}

.project-header .header-mail {
  color: #002bff;
}

.project-shell {
  position: relative;
  padding: 0;
}


.project-hero {
  position: relative;
  height: 100vh;
  background: #000;
}

.hero-media {
  position: relative;
  width: 100vw;
  height: 100%;
  margin: 0;
  background: #000;
  overflow: hidden;
  cursor: none;
}

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

.hero-video {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  background: #000;
}

.hero-media.is-playing .hero-video {
  opacity: 1;
  pointer-events: auto;
}

.hero-media.is-playing .hero-poster,
.hero-media.is-playing .play-cursor {
  opacity: 0;
  pointer-events: none;
}

.play-cursor {
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
  border: none;
  background: none;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.hero-footer {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  width: min(92vw, 1400px);
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--project-muted);
}

.hero-footer a {
  color: inherit;
  text-decoration: none;
}

.hero-spacer {
  width: 140px;
}

.project-info {
  width: min(92vw, 1200px);
  margin: 32px auto 0;
  display: grid;
  grid-template-columns: 1.2fr 2fr 1fr;
  gap: 32px;
  border-top: 1px solid var(--project-line);
  padding-top: 24px;
}

.project-content {
  padding: 24px 36px 80px;
}

.info-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-label {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--project-muted);
}

.info-body {
  font-size: 14px;
  line-height: 1.7;
  color: #e7e7e7;
}

.project-bts {
  width: min(92vw, 1200px);
  margin: 36px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}

.bts-grid img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.project-divider {
  width: min(92vw, 1200px);
  margin: 36px auto 0;
  border-top: 1px solid var(--project-line);
}

@media (max-width: 900px) {
  .hero-media {
    cursor: pointer;
  }

  .the-wait-page .hero-media {
    background-image: url("media/STILL2-THE-WAIT.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .the-wait-page .hero-poster {
    display: none;
  }

  .play-cursor {
    display: block;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
    letter-spacing: 0.22em;
  }

  .project-info {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .project-header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "mail title info";
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    min-height: auto;
  }

  .project-header .header-mail {
    grid-area: info;
    position: static;
    font-size: 10px;
    text-align: left;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #002bff;
    justify-self: start;
    white-space: nowrap;
    transform: translateX(-20px);
    align-self: center;
  }

  .project-header .header-info {
    grid-area: title;
    position: static;
    font-size: 10px;
    text-align: right;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #002bff;
    justify-self: end;
    white-space: nowrap;
    transform: translate(-82px, 0);
    align-self: center;
  }

  .project-header .header-title {
    margin: 0;
    font-size: 10px;
    text-align: center;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #002bff;
    justify-self: center;
    grid-area: mail;
    transform: translate(10px, -2px);
    align-self: center;
    font-family: "Inter", sans-serif;
  }

  .label-desktop {
    display: none;
  }

  .label-mobile {
    display: inline;
  }

}

@media (max-width: 600px) {
  .hero-footer,
  .project-info,
  .project-bts,
  .project-divider {
    width: 100%;
  }

  .project-content {
    padding: 24px 18px 60px;
  }

  .hero-footer {
    flex-direction: column;
    gap: 8px;
  }

  .play-cursor {
    font-size: 11px;
  }
}
