:root {
  --background: #f5f1e9;
  --foreground: #183b3b;
  --muted: #6a7d78;
  --accent: #e9a24f;
  --hairline: rgba(24, 59, 59, 0.18);
}

* { box-sizing: border-box; }
html { background: var(--background); }
body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: Arial, Helvetica, sans-serif;
}
.poem-page {
  isolation: isolate;
  position: relative;
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  overflow: hidden;
  padding: 30px clamp(24px, 6vw, 96px) 34px;
}
.ambient-glow {
  position: absolute;
  z-index: -1;
  top: -220px;
  right: -120px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(233, 162, 79, 0.28);
  border-radius: 50%;
  box-shadow: 0 0 0 52px rgba(233, 162, 79, 0.06), 0 0 0 104px rgba(233, 162, 79, 0.035);
}
.masthead, .footer-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}
.word-count { color: var(--foreground); opacity: 0.72; }
.hero { width: min(100%, 900px); margin: clamp(92px, 15vh, 170px) auto 74px; }
.kicker {
  margin: 0 0 20px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(66px, 12vw, 164px);
  font-weight: 500;
  letter-spacing: -0.08em;
  line-height: 0.82;
}
.dek {
  max-width: 430px;
  margin: 34px 0 0 clamp(4px, 10vw, 132px);
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.45;
}
.poem { width: min(100%, 900px); margin: 0 auto; padding: 0 clamp(0px, 10vw, 132px) 106px; }
.poem-rule { width: 48px; height: 3px; margin-bottom: 34px; background: var(--accent); }
.stanza {
  margin-bottom: 29px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2.4vw, 29px);
  letter-spacing: -0.015em;
  line-height: 1.52;
}
.stanza p { margin: 0; }
.final-stanza { margin-bottom: 0; color: #255454; }
.footer-note { width: min(100%, 900px); margin: auto auto 0; padding-top: 22px; border-top: 1px solid var(--hairline); }
.footer-mark { color: var(--accent); font-size: 16px; letter-spacing: 0; }
@media (max-width: 600px) {
  .poem-page { padding: 24px 22px 26px; }
  .ambient-glow { top: -180px; right: -270px; width: 470px; height: 470px; }
  .hero { margin-top: 104px; margin-bottom: 68px; }
  .dek { margin-left: 0; }
  .poem { padding-bottom: 80px; }
  .stanza { margin-bottom: 26px; font-size: 21px; line-height: 1.5; }
}
