* {
  box-sizing: border-box;
}

html {
  background: #080808;
}

body {
  margin: 0;
  background: #080808;
  color: #e6e6e6;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
}

.site {
  width: min(1500px, calc(100% - 48px));
  margin: 0 auto;
  padding: 48px 0 80px;
}

.hero {
  min-height: 42vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px 0 42px;
  margin-bottom: 28px;
  border-top: 8px solid #d10000;
  border-bottom: 2px solid #e6e6e6;
}

.eyebrow {
  margin: 0 0 18px;
  color: #d10000;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

h1 {
  max-width: 980px;
  margin: 0;
  color: #f2f2f2;
  font-size: clamp(58px, 12vw, 170px);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: -0.08em;
  text-transform: uppercase;
}

.intro {
  max-width: 760px;
  margin: 32px 0 0;
  color: #c9c9c9;
  font-family: "Courier New", Courier, monospace;
  font-size: clamp(15px, 1.5vw, 20px);
  line-height: 1.55;
  text-transform: uppercase;
}

.gallery {
  columns: 3 320px;
  column-gap: 18px;
}

figure {
  margin: 0 0 18px;
  padding: 0;
  background: #111;
  border: 2px solid #2b2b2b;
  break-inside: avoid;
}

figure:hover {
  border-color: #d10000;
}

img {
  display: block;
  width: 100%;
  height: auto;
  filter: contrast(1.08) saturate(0.82);
}

@media (max-width: 1000px) {
  .gallery {
    columns: 2 300px;
  }

  .hero {
    min-height: 34vh;
  }
}

@media (max-width: 650px) {
  .site {
    width: min(100% - 24px, 1500px);
    padding-top: 28px;
  }

  .hero {
    min-height: auto;
    padding: 28px 0 32px;
  }

  .gallery {
    columns: 1;
  }

  h1 {
    letter-spacing: -0.06em;
  }
}

.gallery img {
  cursor: pointer;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: rgba(0, 0, 0, 0.94);
}

.lightbox.is-open {
  display: flex;
}

.lightbox-image {
  max-width: 96vw;
  max-height: 92vh;
  width: auto;
  height: auto;
  border: 2px solid #d10000;
  background: #050505;
  object-fit: contain;
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 24px;
  width: 48px;
  height: 48px;
  border: 2px solid #d10000;
  background: #080808;
  color: #f2f2f2;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
}

.lightbox-close:hover {
  background: #d10000;
  color: #080808;
}

body.lightbox-open {
  overflow: hidden;
}
