/* ─── Reset ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ─── Base ──────────────────────────────────── */
body {
  background-color: #f7eec6;
  color: #111111;
  font-family: 'EB Garamond', Georgia, 'Times New Roman', serif;
  font-size: 19px;
  line-height: 1.8;
  padding: 60px 24px 120px;
}

/* ─── Layout ────────────────────────────────── */
main {
  max-width: 660px;
  margin: 0 auto;
}

/* ─── Header / nav ──────────────────────────── */
header {
  margin-bottom: 72px;
}

header h1 {
  font-size: 19px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

header h1 a {
  color: #111111;
  text-decoration: none;
}

.back {
  display: inline-block;
  margin-bottom: 60px;
  font-size: 16px;
  letter-spacing: 0.06em;
  color: #111111;
  text-decoration: none;
  opacity: 0.6;
}

.back:hover { opacity: 1; }

/* ─── Index list ────────────────────────────── */
.piece-list {
  list-style: none;
  padding: 0;
}

.piece-list li {
  border-top: 1px solid #111111;
  padding: 14px 0;
}

.piece-list li:last-child {
  border-bottom: 1px solid #111111;
}

.piece-list a {
  color: #111111;
  text-decoration: none;
  font-size: 19px;
  display: block;
}

.piece-list a::before {
  content: '* ';
}

.piece-list a:hover { opacity: 0.55; }

.contact {
  margin-top: 48px;
  font-size: 16px;
  opacity: 0.6;
}

.contact a {
  color: #111111;
  text-decoration: none;
}

.contact a:hover { opacity: 0.55; }

/* ─── Page title ────────────────────────────── */
.page-title {
  font-size: 19px;
  font-weight: 400;
  margin-bottom: 40px;
  letter-spacing: 0.02em;
}

/* ─── Prose typography ──────────────────────── */
.content p {
  margin-bottom: 1.45em;
}

.content p:last-child { margin-bottom: 0; }

.content em { font-style: italic; }
.content strong { font-weight: 500; }

.content a {
  color: #111111;
  text-underline-offset: 3px;
}

.content blockquote {
  margin: 2em 0 2em 2em;
  font-style: italic;
}

.content blockquote p { margin-bottom: 0.6em; }

.section-break {
  text-align: center;
  letter-spacing: 0.35em;
  margin: 2.4em 0 !important;
}

/* ─── Footnotes ─────────────────────────────── */
.footnotes {
  margin-top: 3.5em;
  padding-top: 1.2em;
  border-top: 1px solid #111111;
  font-size: 15.5px;
  line-height: 1.65;
}

.footnotes p { margin-bottom: 0.75em; }

sup { font-size: 0.7em; line-height: 0; vertical-align: super; }
sup a { color: #111111; text-decoration: none; }

/* ─── Photo essay ───────────────────────────── */
.photo-essay {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 8px;
}

.photo-essay img {
  width: 100%;
  height: auto;
  display: block;
}

/* ─── Responsive ────────────────────────────── */
@media (max-width: 480px) {
  body { padding: 40px 18px 80px; font-size: 17px; }
  .content blockquote { margin-left: 1em; }
}
