.boot-fallback {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  background: #f3ead7;
}

.boot-fallback .boot-art {
  min-height: 100vh;
  display: grid;
  place-items: end center;
  overflow: hidden;
  background: #183c3d;
}

.boot-fallback .boot-art img {
  display: block;
  width: 100%;
  height: 92vh;
  object-fit: contain;
  object-position: center bottom;
}

.boot-fallback .boot-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 7vw, 96px);
}

.boot-fallback h1 {
  margin: 12px 0 22px;
  color: #1d2d2d;
  font-size: clamp(42px, 6vw, 78px);
}

.boot-fallback p {
  color: #1d2d2d;
  font-size: 18px;
  line-height: 1.65;
}

.boot-fallback .loading-note {
  margin-top: 20px;
  color: #9c4137;
  font: bold 12px Arial, sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.boot-error {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: #f3ead7;
}

.boot-error section {
  width: min(680px, 100%);
  padding: 34px;
  border: 3px solid #9c4137;
  background: #fffaf0;
  box-shadow: 10px 10px 0 #c49747;
}

.boot-error pre {
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

.boot-error button {
  border: 0;
  padding: 14px 20px;
  color: white;
  background: #9c4137;
  cursor: pointer;
}

@media (max-width: 760px) {
  .boot-fallback {
    grid-template-columns: 1fr;
  }

  .boot-fallback .boot-art {
    min-height: 42vh;
  }

  .boot-fallback .boot-art img {
    height: 42vh;
  }
}
