:root {
  color-scheme: light;
  --paper: #faf9f5;
  --ink: #42475b;
  --muted: #767785;
}

* { box-sizing: border-box; }
html { min-height: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
}

.cover {
  min-height: 100svh;
  max-width: 1600px;
  margin: 0 auto;
  padding: clamp(32px, 5vh, 64px) 32px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.introduction { position: relative; z-index: 1; }
h1 {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: clamp(88px, 10vw, 144px);
  line-height: 1;
  letter-spacing: -0.065em;
}
h1 span { color: #b4aec4; }

.artwork {
  width: min(920px, 100%);
  margin: 8px 0 4px;
}
.artwork img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 65svh;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.caption {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.06em;
  text-align: center;
}

@media (max-width: 600px) {
  .cover { padding: 44px 18px 38px; }
  h1 { font-size: clamp(84px, 24vw, 120px); }
  .artwork { width: calc(100% + 12px); margin: 30px -6px; }
  .artwork img { min-height: 280px; max-height: none; object-fit: contain; }
  .caption { font-size: 14px; letter-spacing: 0.025em; margin-top: 10px; }
}
