:root {
  --blue: #0045b8;
  --paper: #e8e7e5;
  --outside: #e8e7e5;
  --shadow: 0 12px 20px rgba(0, 0, 0, 0.22);
  --page-w: min(78vw, 760px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--outside);
  color: var(--blue);
  font-family: Georgia, 'Times New Roman', serif;
}

main {
  width: var(--page-w);
  margin: 0 auto;
  background: var(--paper);
  min-height: 100vh;
  overflow: visible;
}

.hero {
  position: relative;
  height: 165vh;
  min-height: 1220px;
  overflow: visible;
}

.scene {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 760px;
  overflow: visible;
}

.artwork {
  position: absolute;
  margin: 0;
  will-change: transform;
}

.artwork img,
.crossfade {
  display: block;
  filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.22));
}

.artwork--eyes {
  left: 8%;
  top: 4%;
  width: 56%;
  z-index: 1;
}
.artwork--eyes img { width: 100%; height: auto; }

.artwork--fuuuuck {
  left: -4%;
  top: 64%;
  width: 108%;
  z-index: 2;
}
.artwork--fuuuuck img {
  width: 100%;
  height: auto;
}

.artwork--please {
  right: 8%;
  top: 31%;
  width: 45%;
  z-index: 3;
}

.crossfade {
  position: relative;
  width: 100%;
}
.crossfade img {
  width: 100%;
  height: auto;
  display: block;
}
.please--two {
  position: absolute;
  inset: 0;
  opacity: 0;
  will-change: opacity;
}

.caption {
  font-size: clamp(11px, 1.08vw, 14px);
  line-height: 1.18;
  color: var(--blue);
}
.caption strong { font-weight: 700; }

.caption--eyes {
  margin-top: 14px;
  text-align: left;
}
.caption--fuuuuck {
  position: absolute;
  left: 8%;
  top: 118%;
  text-align: left;
  width: 220px;
}
.caption--please {
  margin-top: 42px;
  text-align: right;
  transform: translateX(12%);
}

.statement {
  margin-top: -8vh;
  padding: 0 9% 18vh;
  position: relative;
  z-index: 5;
}
.statement p {
  margin: 0;
  font-size: clamp(27px, 3.1vw, 40px);
  line-height: 1.03;
  letter-spacing: -0.035em;
}
.statement .representation {
  margin-top: 92px;
  font-size: clamp(16px, 1.55vw, 22px);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
a {
  color: inherit;
  text-decoration-thickness: 0.06em;
  text-underline-offset: 0.13em;
}

@media (max-width: 760px) {
  :root { --page-w: 100vw; }
  main { overflow: hidden; }
  .hero {
    height: 150vh;
    min-height: 980px;
  }
  .scene { min-height: 680px; }
  .artwork--eyes {
    left: 7%;
    top: 3%;
    width: 72%;
  }
  .artwork--fuuuuck {
    left: -38%;
    top: 63%;
    width: 170%;
  }
  .artwork--please {
    right: 5%;
    top: 34%;
    width: 52%;
  }
  .caption { font-size: 11px; }
  .caption--fuuuuck {
    left: 30%;
    top: 114%;
  }
  .caption--please { margin-top: 28px; }
  .statement {
    margin-top: -2vh;
    padding: 0 7% 14vh;
  }
  .statement p {
    font-size: clamp(30px, 8.5vw, 44px);
    line-height: 1.02;
  }
}
