* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: #fff;
  color: #000;
}

body {
  min-width: 320px;
}

.page {
  width: min(100%, 1517px);
  margin: 0 auto;
  container-type: inline-size;
  overflow: hidden;
  background: #fff;
}

.hero {
  position: relative;
}

.site-title {
  position: absolute;
  top: 1.65cqw;
  left: 50%;
  transform: translateX(-50%);

  margin: 0;

  font-family:
    "neue-haas-grotesk-text",
    "Neue Haas Grotesk Text Pro",
    "Neue Haas Grotesk Text",
    "Helvetica Neue",
    Helvetica,
    Arial,
    sans-serif;

  font-weight: 700;
  font-style: normal;
  font-size: 22cqw;
  line-height: 0.79;
  letter-spacing: -0.075em;
  font-kerning: normal;
  font-synthesis: none;

  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-title .line {
  display: block;
}

.site-title .second-l {
  display: inline-block;
  margin-left: -0.045em;
}

.site-nav {
  position: absolute;
  left: 1.2cqw;
  top: 25cqw;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.16cqw;

  margin: 0;
  padding: 0;

  font-family:
    "neue-haas-grotesk-text",
    "Neue Haas Grotesk Text Pro",
    "Neue Haas Grotesk Text",
    "Helvetica Neue",
    Helvetica,
    Arial,
    sans-serif;

  font-size: 1.98cqw;
  font-weight: 700;
  font-style: normal;
  line-height: 1;
  letter-spacing: -0.035em;
  font-kerning: normal;
  font-synthesis: none;
}

.site-nav a {
  display: inline-flex;
  align-items: baseline;

  color: #000;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

.nav-number {
  display: inline-block;
  width: 2.55cqw;
  flex: 0 0 2.55cqw;
}

.nav-label {
  opacity: 0;
  visibility: hidden;
}

/* Navigation is hidden until a click/tap opens it. */
.site-nav {
  display: none;
}

.site-nav a:focus-visible {
  outline: 2px solid #000;
  outline-offset: 0.3rem;
}

.grid {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;

  user-select: none;
  -webkit-user-drag: none;
}

.art-credit,
.site-footer {
  font-family:
    "neue-haas-grotesk-text",
    "Neue Haas Grotesk Text Pro",
    "Neue Haas Grotesk Text",
    "Helvetica Neue",
    Helvetica,
    Arial,
    sans-serif;

  font-size: 1.75cqw;
  font-weight: 700;
  font-style: normal;
  line-height: 1;
  letter-spacing: -0.035em;
  font-kerning: normal;
  font-synthesis: none;

  white-space: nowrap;
}

.art-credit {
  margin: 1.2cqw 1.2cqw 0 0;
  text-align: right;
}

.site-footer {
  height: 22.5748cqw;

  display: flex;
  align-items: flex-end;
  justify-content: center;

  padding-bottom: 2.05cqw;
}

/*
  CLICK / TAP NAVIGATION — ALL SCREEN SIZES

  Initial state:
  - navigation hidden
  - modest white space below SHELLY MARS

  Click/tap anywhere outside an open navigation link toggles the full menu.
  On touch devices, pinch, multitouch, scrolling and drags are ignored.
*/
.hero {
  height: 40cqw;
  transition: height 180ms ease;
}

.page.menu-open .hero {
  height: 83cqw;
}

.page.menu-open .site-nav {
  position: absolute;
  left: 50%;
  top: 39cqw;
  transform: translateX(-50%);

  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  gap: 3.5cqw;

  font-size: clamp(1.8rem, 7.4cqw, 7rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-align: center;
}

.page.menu-open .site-nav a {
  display: flex;
  justify-content: center;
  width: 100%;
}

.page.menu-open .nav-number {
  display: inline;
  width: auto;
  flex: none;
  margin-right: 0.28em;
}

.page.menu-open .nav-label {
  opacity: 1;
  visibility: visible;
}

@media (prefers-reduced-motion: reduce) {
  .hero {
    transition: none;
  }
}
