:root {
  color-scheme: dark;
  --ink: #fff8ec;
  --muted: #d7c0a0;
  --gold: #d7a75d;
  --shadow: rgba(0, 0, 0, 0.62);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background: #17110f;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
}

.page {
  min-height: 100svh;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(28px, 5vw, 80px);
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(18, 12, 10, 0.95), rgba(18, 12, 10, 0.72) 38%, rgba(18, 12, 10, 0.22) 72%),
    radial-gradient(circle at 22% 52%, rgba(215, 167, 93, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.56));
}

.poem {
  position: relative;
  z-index: 1;
  max-width: min(720px, 100%);
  text-shadow: 0 3px 22px var(--shadow);
}

.poem__kicker,
.poem__year {
  margin: 0;
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(0.78rem, 1.6vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 14px 0 6px;
  font-size: clamp(3rem, 9vw, 7.6rem);
  line-height: 0.92;
  font-weight: 500;
  letter-spacing: 0;
}

.poem__year {
  color: var(--muted);
}

.poem__text {
  margin-top: clamp(34px, 6vw, 72px);
  padding-left: clamp(18px, 3vw, 34px);
  border-left: 2px solid rgba(215, 167, 93, 0.64);
  font-size: clamp(1.16rem, 2.4vw, 2rem);
  line-height: 1.68;
}

.poem__text p {
  margin: 0;
}

.poem__text p + p {
  margin-top: clamp(24px, 4vw, 44px);
}

@media (max-width: 720px) {
  .hero {
    align-items: end;
    padding: 28px 22px 42px;
  }

  .hero__image {
    object-position: 62% center;
  }

  .hero__shade {
    background:
      linear-gradient(180deg, rgba(18, 12, 10, 0.08), rgba(18, 12, 10, 0.92) 44%, rgba(18, 12, 10, 0.97)),
      radial-gradient(circle at 35% 68%, rgba(215, 167, 93, 0.18), transparent 42%);
  }

  .poem__text {
    font-size: clamp(1.02rem, 4.5vw, 1.22rem);
    line-height: 1.6;
  }
}
