:root {
  --bg: #f1efe6;
  --text: #111;
  --line: #111;
  --accent: #dfff00;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "DM Mono", monospace;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  filter: grayscale(100%) brightness(60%);
  transition: filter 0.5s ease, opacity 0.5s ease;
}

a img {
  transition: filter 0.5s ease, opacity 0.5s ease;
}

a:hover img {
  filter: grayscale(0%) brightness(100%);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  z-index: 100;
  mix-blend-mode: difference;
  color: #fff;
  font: 13px "DM Mono", monospace;
  transition: transform 0.25s ease;
}

.site-header nav {
  display: flex;
  gap: 24px;
}

.site-header a:hover {
  text-decoration: underline;
}

.hero {
  min-height: 100vh;
  padding: 140px 24px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.hero-kicker,
.section-number,
.item-meta,
.item-number,
.photo-caption,
.notes span,
footer {
  font: 11px "DM Mono", monospace;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(40px, 10vw, 180px);
  font-weight: 600;
  line-height: 1;
  margin: 0;
  width: 100%;
}

.hero h1 em {
  font-style: normal;
  margin-left: 8vw;
}

.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: end;
  font: 11px "DM Mono", monospace;
  text-transform: uppercase;
  letter-spacing: .2em;
}

.hero-bottom p {
  margin: 0;
}

.statement {
  display: grid;
  grid-template-columns: 100px 1fr;
  padding: 120px 24px;
  border-bottom: 1px solid var(--line);
}

.big-copy {
  font-size: clamp(48px, 8vw, 120px);
  letter-spacing: -0.07em;
  margin: 0 0 80px;
}

.small-copy {
  max-width: 460px;
  font: 13px/1.6 "DM Mono", monospace;
}

.feature-photo {
  position: relative;
  min-height: 90vh;
  overflow: hidden;
}

.feature-photo img {
  height: 90vh;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.photo-caption {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  display: flex;
  justify-content: space-between;
  color: #fff;
  mix-blend-mode: difference;
}

.list-section {
  display: grid;
  grid-template-columns: 100px 1fr;
  padding: 100px 24px;
  border-bottom: 1px solid var(--line);
}

.list-item {
  display: grid;
  grid-template-columns: 60px 1fr 200px 40px;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  transition: background 0.15s ease, padding 0.15s ease;
}

.list-item:hover {
  background: var(--accent);
  padding-left: 12px;
  padding-right: 12px;
}

.item-name {
  font-size: clamp(28px, 5vw, 70px);
  font-weight: 600;
}

.item-arrow {
  text-align: right;
  font-size: 24px;
}

.notes {
  display: grid;
  grid-template-columns: 100px 1fr;
  padding: 120px 24px;
  border-bottom: 1px solid var(--line);
}

.notes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.notes h2 {
  font-size: clamp(24px, 2.6vw, 48px);
  letter-spacing: -0.05em;
  font-weight: 400;
  min-height: 180px;
}

.notes article a {
  font: 11px "DM Mono", monospace;
  text-transform: uppercase;
}

.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

.strip-image {
  aspect-ratio: 1;
  overflow: hidden;
}

.strip-image + .strip-image {
  border-left: 1px solid var(--line);
}

.strip-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.strip-image:hover img {
  transform: scale(1.04);
}

.about {
  display: grid;
  grid-template-columns: 100px 1fr;
  padding: 120px 24px;
}

.about-copy {
  max-width: 1000px;
}

.about h2 {
  font-size: clamp(60px, 10vw, 150px);
  margin: 0 0 80px;
  line-height: 1;
}

.about p {
  max-width: 500px;
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 25px;
}

.about a {
  display: inline-block;
  margin-top: 50px;
  padding-bottom: 5px;
  border-bottom: 1px solid;
}

footer {
  display: flex;
  justify-content: space-between;
  padding: 20px 24px;
  border-top: 1px solid var(--line);
}

footer div:last-child {
  display: flex;
  gap: 20px;
}

@media (max-width: 700px) {
  .site-header {
    padding: 16px;
  }

  .site-header nav {
    gap: 12px;
  }

  .hero {
    padding: 110px 16px 24px;
  }

  .hero h1 {
    font-size: 17vw;
  }

  .hero h1 em {
    margin-left: 0;
  }

  .statement,
  .list-section,
  .notes,
  .about {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 80px 16px;
  }

  .notes-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .notes h2 {
    min-height: 0;
  }

  .list-item {
    grid-template-columns: 35px 1fr 30px;
  }

  .item-meta {
    display: none;
  }

  .photo-strip {
    grid-template-columns: 1fr;
  }

  .strip-image + .strip-image {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  footer {
    padding: 16px;
    flex-direction: column;
    gap: 15px;
  }
}