@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;1,400&family=Inter:wght@400;500&display=swap');

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  background: #1a1614;
  color: #f5f0e8;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  line-height: 1.5;
}

.container {
  max-width: 640px;
  width: 100%;
  text-align: center;
}

.day-marker {
  font-family: 'Inter', system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.7rem;
  color: #8a7a5e;
  margin-bottom: 1.5rem;
}

.epigraph {
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.55;
  color: #d4c8b8;
  margin-bottom: 2.5rem;
  letter-spacing: 0.015em;
}

.media-wrapper {
  width: 100%;
  margin: 0 auto 2.5rem;
}

.media-wrapper video,
.media-wrapper iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0a0908;
  border: 1px solid #2a2422;
  border-radius: 4px;
}

.media-wrapper.vertical video,
.media-wrapper.vertical iframe {
  aspect-ratio: 9 / 16;
  max-width: 360px;
  display: block;
  margin: 0 auto;
}

.media-wrapper audio {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  display: block;
}

.body {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #e6dccd;
  margin-bottom: 2rem;
  text-align: left;
}

.body p { margin-bottom: 1rem; }
.body p:last-child { margin-bottom: 0; }

.body.center { text-align: center; }

.poem {
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.85;
  color: #e6dccd;
  margin: 2rem 0;
  white-space: pre-line;
}

.list {
  list-style: none;
  text-align: left;
  margin: 2rem auto;
  max-width: 540px;
}

.list li {
  padding: 1rem 0;
  border-bottom: 1px solid #2a2422;
  color: #e6dccd;
}

.list li:last-child { border-bottom: none; }

.list li .num {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: #8a7a5e;
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: 0.25rem;
}

.lyrics {
  white-space: pre-line;
  font-size: 1.05rem;
  line-height: 1.85;
  color: #d4c8b8;
  text-align: left;
  margin: 2rem auto;
  max-width: 540px;
  font-style: italic;
}

.signature {
  margin-top: 2.5rem;
  font-style: italic;
  color: #b8a98f;
  font-size: 1.05rem;
}

.nav-link {
  display: inline-block;
  margin-top: 2rem;
  color: #8a7a5e;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid #2a2422;
  padding-bottom: 0.25rem;
}

.nav-link:hover { color: #d4c8b8; border-color: #8a7a5e; }

@media (max-width: 480px) {
  body { padding: 1.5rem 1rem; }
  .epigraph { font-size: 1.15rem; }
  .body { font-size: 1rem; }
}
