/* Presentation-first opening screen. */
.site-header {
  display: none;
}

.hero-presentation {
  isolation: isolate;
  align-items: flex-start;
  background: #151615;
}

.hero-presentation .hero-copy {
  z-index: 3;
  width: min(48vw, 970px);
  margin-right: auto;
  margin-left: clamp(620px, 39vw, 820px);
  padding-top: clamp(154px, 18vh, 222px);
  padding-bottom: 0;
  text-align: left;
}

.hero-presentation .hero-copy h1 {
  max-width: min(100%, 940px);
  margin: 0;
  font-size: clamp(66px, 7.2vw, 122px);
  line-height: 0.86;
  letter-spacing: -0.035em;
}

.hero-presentation .hero-copy h1 span {
  display: block;
  color: var(--red);
  white-space: nowrap;
}

.hero-relaunch {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 30px 0 0;
  color: rgba(247, 244, 237, 0.92);
  font-family: Oswald, Impact, sans-serif;
  font-size: 20px;
  font-weight: 650;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.hero-relaunch::before,
.hero-relaunch::after {
  width: 1px;
  height: 36px;
  background: rgba(247, 244, 237, 0.72);
  content: "";
}

.hero-stage-picture,
.hero-stage-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Archive screen: proof follows the story, not the other way around. */
.archive {
  padding-top: clamp(92px, 12vw, 164px);
  padding-bottom: clamp(96px, 13vw, 176px);
}

.archive-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(260px, 0.55fr);
  gap: clamp(32px, 7vw, 116px);
  align-items: end;
}

.archive h2 {
  margin: 0;
  font-family: Oswald, Impact, sans-serif;
  font-size: clamp(49px, 6vw, 92px);
  font-weight: 620;
  letter-spacing: -0.03em;
  line-height: 0.92;
  text-transform: uppercase;
}

.archive-intro > p {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.archive-gallery {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr 0.82fr;
  grid-template-rows: repeat(2, minmax(174px, 1fr));
  gap: 3px;
  min-height: 520px;
  margin-top: clamp(42px, 6vw, 78px);
  background: var(--line);
}

.archive-shot {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #242522;
}

.archive-shot-lead {
  grid-row: span 2;
}

.archive-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.08);
  transition: transform 0.6s cubic-bezier(.16, 1, .3, 1), filter 0.35s ease;
}

.archive-shot-lead img {
  object-position: 43% center;
}

.archive-shot figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 42px 18px 16px;
  background: linear-gradient(transparent, rgba(10, 11, 10, 0.84));
}

.archive-shot figcaption span,
.archive-shot figcaption strong {
  font-size: 11px;
  line-height: 1.15;
  text-transform: uppercase;
}

.archive-shot figcaption span {
  color: #d8d0c4;
  letter-spacing: 0.08em;
}

.archive-shot figcaption strong {
  color: var(--paper);
  font-weight: 800;
}

.archive-shot:hover img {
  filter: saturate(0.94) contrast(1.05);
  transform: scale(1.035);
}

.archive-proof {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 8vw, 136px);
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.archive-proof p {
  max-width: 460px;
  margin: 0;
  color: #d8d2c8;
  font-size: 16px;
}

.archive-proof strong {
  color: var(--paper);
}

.archive-proof .archive-transition {
  color: var(--paper);
  font-family: Oswald, Impact, sans-serif;
  font-size: clamp(24px, 2.6vw, 38px);
  font-weight: 560;
  letter-spacing: -0.015em;
  line-height: 1.05;
  text-transform: uppercase;
}

.hero-stage-picture {
  z-index: 1;
  display: block;
}

.hero-stage-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-stage-shade {
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(16, 17, 16, 0.16) 0%, transparent 52%, rgba(16, 17, 16, 0.1) 100%),
    linear-gradient(90deg, transparent 0%, transparent 43%, rgba(16, 17, 16, 0.12) 66%, rgba(16, 17, 16, 0.26) 100%);
}

@media (max-width: 850px) {
  .archive {
    padding-top: 80px;
    padding-bottom: 92px;
  }

  .archive-intro,
  .archive-proof {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .archive h2 {
    font-size: clamp(47px, 13.4vw, 72px);
  }

  .archive-intro > p {
    font-size: 16px;
  }

  .archive-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 148px 148px;
    min-height: 0;
    margin-top: 40px;
  }

  .archive-shot-lead {
    grid-column: span 2;
    grid-row: auto;
  }

  .archive-shot figcaption {
    padding: 34px 12px 12px;
  }

  .archive-shot figcaption strong {
    font-size: 10px;
  }

  .archive-proof {
    margin-top: 22px;
    padding-top: 22px;
  }

  .archive-proof p {
    font-size: 15px;
  }

  .archive-proof .archive-transition {
    font-size: 29px;
  }

  .hero-presentation .hero-copy {
    width: min(100% - 32px, 1320px);
    margin-inline: auto;
    padding-top: 108px;
    text-align: center;
  }

  .hero-presentation .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(54px, 14.2vw, 64px);
    line-height: 0.88;
  }

  .hero-stage-image {
    object-position: center center;
  }

  .hero-stage-shade {
    background: linear-gradient(180deg, rgba(16, 17, 16, 0.68) 0%, rgba(16, 17, 16, 0.22) 46%, rgba(16, 17, 16, 0.08) 66%, rgba(16, 17, 16, 0.2) 100%);
  }

  .hero-relaunch {
    margin-top: 24px;
    justify-content: center;
    gap: 13px;
    font-size: 18px;
  }

  .hero-relaunch::before,
  .hero-relaunch::after {
    height: 31px;
  }
}

/* The archive becomes a single editorial chapter. */
.archive-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(280px, 0.72fr);
  max-width: none;
  gap: clamp(40px, 8vw, 140px);
  align-items: start;
}

.archive h2 {
  font-size: clamp(50px, 5.4vw, 80px);
}

.archive-story {
  max-width: 520px;
}

.archive-story p {
  margin: 0;
  color: #d8d2c8;
  font-size: 17px;
  line-height: 1.52;
}

.archive-story p + p {
  margin-top: 20px;
  color: var(--paper);
}

.archive-gallery {
  display: block;
  height: auto;
  margin-top: clamp(42px, 6vw, 74px);
  overflow: hidden;
}

.archive-shot,
.archive-shot-lead {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 7;
}

.archive-shot figcaption {
  padding: 52px 20px 18px;
}

.archive-proof {
  display: block;
  margin-top: 28px;
  padding-top: 0;
  border-top: 0;
}

.archive-proof .archive-transition {
  max-width: 500px;
  color: #d8d2c8;
  font-size: 18px;
  font-weight: 700;
}

@media (max-width: 850px) {
  .archive-intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .archive h2 {
    font-size: clamp(46px, 12.2vw, 56px);
  }

  .archive-story p {
    font-size: 16px;
    line-height: 1.5;
  }

  .archive-gallery {
    height: auto;
    margin-top: 34px;
    overflow: hidden;
  }

  .archive-shot,
  .archive-shot-lead {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .archive-shot figcaption {
    padding: 34px 14px 14px;
  }

  .archive-proof {
    margin-top: 20px;
  }

  .archive-proof .archive-transition {
    max-width: 330px;
    margin-top: 0;
    font-size: 17px;
    font-weight: 700;
  }
}

/* Deliberately quieter second screen. */
.archive {
  padding-top: clamp(76px, 9vw, 124px);
  padding-bottom: clamp(80px, 10vw, 132px);
}

.archive-intro {
  display: block;
  max-width: 820px;
}

.archive h2 {
  font-size: clamp(48px, 5vw, 76px);
  line-height: 0.94;
}

.archive-intro > p {
  max-width: 610px;
  margin-top: 24px;
  font-size: 16px;
  line-height: 1.5;
}

.archive-gallery {
  display: flex;
  min-height: 0;
  height: 320px;
  margin-top: 44px;
  gap: 3px;
  background: transparent;
}

.archive-shot,
.archive-shot-lead {
  flex: 1 1 0;
  height: 100%;
}

.archive-shot figcaption {
  padding: 34px 15px 14px;
}

.archive-shot img,
.archive-shot-lead img {
  object-position: center;
}

.archive-proof {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 32px;
  margin-top: 24px;
  padding-top: 22px;
}

.archive-proof p {
  font-size: 14px;
}

.archive-proof .archive-transition {
  max-width: 430px;
  color: var(--paper);
  font-family: Manrope, Arial, sans-serif;
  font-size: clamp(18px, 1.55vw, 23px);
  font-weight: 750;
  letter-spacing: -0.02em;
  line-height: 1.28;
  text-align: left;
  text-transform: none;
}

@media (max-width: 850px) {
  .archive {
    padding-top: 68px;
    padding-bottom: 76px;
  }

  .archive h2 {
    font-size: clamp(44px, 11.5vw, 52px);
  }

  .archive-intro > p {
    margin-top: 18px;
    font-size: 15px;
  }

  .archive-gallery {
    height: 226px;
    margin-top: 32px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .archive-gallery::-webkit-scrollbar {
    display: none;
  }

  .archive-shot,
  .archive-shot-lead {
    flex: 0 0 86%;
    scroll-snap-align: start;
  }

  .archive-shot figcaption {
    padding: 28px 13px 13px;
  }

  .archive-proof {
    display: block;
    margin-top: 20px;
    padding-top: 18px;
  }

  .archive-proof .archive-transition {
    max-width: 330px;
    margin-top: 20px;
    font-size: 18px;
    text-align: left;
  }
}
