:root {
  --paper: #eee9df;
  --paper-light: #fffdf8;
  --ink: #181713;
  --muted: #68645c;
  --blue: #0878f9;
  --rule: #b8b1a5;
  --display: "Arial Narrow", "Roboto Condensed", Haettenschweiler, Impact, sans-serif;
  --utility: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    repeating-linear-gradient(0deg, transparent 0 3px, rgba(24, 23, 19, 0.018) 3px 4px),
    radial-gradient(circle at 12% 10%, rgba(255, 253, 248, 0.92), transparent 36%),
    radial-gradient(circle at 88% 38%, rgba(8, 120, 249, 0.04), transparent 30%);
  font-family: var(--utility);
}

a {
  color: inherit;
}

a:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 10;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  color: var(--paper-light);
  background: var(--ink);
  font-size: 0.75rem;
  text-transform: uppercase;
  transform: translateY(-200%);
}

.skip-link:focus {
  transform: translateY(0);
}

.masthead,
.announcement,
footer {
  width: min(100% - 3rem, 1440px);
  margin-inline: auto;
}

.masthead {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 76px;
  border-bottom: 1px solid var(--rule);
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.masthead p {
  margin: 0;
  color: var(--muted);
}

.wordmark {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  text-decoration: none;
}

.wordmark > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--blue);
  border-radius: 50%;
  color: var(--blue);
  font-size: 0.62rem;
}

.announcement {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(440px, 1.12fr);
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
  min-height: calc(100svh - 76px);
  padding-block: clamp(4rem, 8vw, 8rem);
}

.eyebrow {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin: 0 0 1.4rem;
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 34px;
  height: 2px;
  background: currentColor;
}

h1,
h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(4.7rem, 8.3vw, 9.2rem);
  letter-spacing: -0.065em;
  line-height: 0.78;
}

h1 > span {
  display: block;
}

.headline__handle {
  color: var(--blue);
  font-size: 0.53em;
  letter-spacing: -0.035em;
  line-height: 1.12;
  white-space: nowrap;
}

.status {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 6px solid var(--blue);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.status span {
  padding: 0.6rem 0.7rem;
  border: 1px solid var(--ink);
  background: rgba(255, 253, 248, 0.45);
}

.status b {
  color: var(--blue);
}

.exhibit {
  position: relative;
  margin: 0;
  padding: clamp(0.65rem, 1.2vw, 1rem);
  border: 1px solid var(--ink);
  background: var(--paper-light);
  box-shadow: 12px 12px 0 var(--blue);
}

.exhibit img {
  display: block;
  width: 100%;
  height: auto;
  border: 2px solid var(--ink);
  object-fit: contain;
}

.exhibit__label {
  position: absolute;
  z-index: 1;
  top: 1.4rem;
  left: 0;
  margin: 0;
  padding: 0.55rem 0.75rem;
  color: var(--paper-light);
  background: var(--ink);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  transform: translateX(-35%);
}

.response {
  position: relative;
  overflow: hidden;
  padding: clamp(6rem, 12vw, 12rem) max(1.5rem, calc((100vw - 1440px) / 2));
  color: var(--paper-light);
  background: var(--ink);
}

.response::after {
  position: absolute;
  right: -9vw;
  bottom: -20vw;
  width: 46vw;
  height: 46vw;
  border: 2px solid var(--blue);
  border-radius: 50%;
  content: "";
}

.eyebrow--light {
  position: relative;
  z-index: 1;
  color: #58a6ff;
}

h2 {
  position: relative;
  z-index: 1;
  max-width: 10ch;
  font-size: clamp(5rem, 12vw, 13rem);
  letter-spacing: -0.07em;
  line-height: 0.76;
}

.response__file {
  position: relative;
  z-index: 1;
  width: max-content;
  max-width: 100%;
  margin: 2.5rem 0 0;
  padding: 0.75rem 1rem;
  border: 2px solid var(--blue);
  color: #58a6ff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  transform: rotate(-2deg);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 3rem 4rem;
  color: var(--muted);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
}

footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .announcement {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .exhibit {
    max-width: 720px;
  }
}

@media (max-width: 760px) {
  .masthead,
  .announcement,
  footer {
    width: min(100% - 2rem, 1440px);
  }

  .masthead {
    min-height: 66px;
  }

  .announcement {
    gap: 3rem;
    padding-block: 3.5rem 5rem;
  }

  h1 {
    font-size: clamp(4.3rem, 21vw, 7.5rem);
  }

  h2 {
    font-size: clamp(4.8rem, 23vw, 8rem);
  }

  .exhibit {
    box-shadow: 7px 7px 0 var(--blue);
  }

  .exhibit__label {
    left: 0.5rem;
    transform: none;
  }

  .response {
    padding-inline: 1rem;
  }
}

@media (max-width: 430px) {
  .masthead p {
    max-width: 11ch;
    text-align: right;
  }

  .status {
    align-items: flex-start;
    flex-direction: column;
  }

  .status b {
    margin-left: 1.25rem;
    transform: rotate(90deg);
  }

  footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
