html,
body {
  margin: 0;
  min-height: 100%;
  background: #000000;
  color: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  font-family: Georgia, "Times New Roman", serif;
  color: #ffffff;
}

.page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(320px, 44vw) 1fr;
  background: #000000;
}

.cover-panel,
.text-panel {
  min-width: 0;
}

.cover-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: #000000;
}

.cover {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: calc(100vh - 48px);
  object-fit: contain;
}

.text-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 7vw;
  background: #000000;
}

.copy {
  width: min(760px, 100%);
  text-align: center;
}

h1 {
  margin: 0 0 34px;
  font-size: clamp(1.15rem, 1.8vw, 2.1rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 18px;
  font-size: clamp(calc(1rem - 2.6667px), calc(1.25vw - 2.6667px), calc(1.28rem - 2.6667px));
  line-height: 1.65;
  color: #ffffff;
}

em {
  color: #ffffff;
}

.closing {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.roll {
  margin-bottom: 12px;
  font-size: clamp(calc(1.35rem - 2.6667px), calc(1.8vw - 2.6667px), calc(1.8rem - 2.6667px));
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #ffffff;
}

.domain {
  margin-bottom: 0;
  font-size: clamp(calc(0.95rem - 2.6667px), calc(1.1vw - 2.6667px), calc(1.12rem - 2.6667px));
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #ffffff;
}

@media (max-width: 800px) {
  .page {
    display: block;
  }

  .cover-panel {
    padding: 20px 16px 8px;
  }

  .cover {
    width: min(92vw, 520px);
    max-height: none;
  }

  .text-panel {
    padding: 42px 24px 56px;
  }

  .copy {
    width: min(680px, 100%);
  }

  h1 {
    font-size: 1.55rem;
  }

  p {
    font-size: calc(1.05rem - 2.6667px);
    line-height: 1.6;
  }
}

.copy > p:not(.roll):not(.domain) {
  text-align: justify;
  text-justify: inter-word;
}

.closing p {
  text-align: center;
}
