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

:root {
  --bg:       #ffffff;
  --ink:      #111111;
  --muted:    #666666;
  --border:   #d8d8d8;
  --accent:   #1a3a5c;
}

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

html {
  font-size: 18px;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'EB Garamond', Georgia, 'Times New Roman', serif;
  line-height: 1.75;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ─── Layout ─── */

.page-wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  flex: 1;
}

/* ─── Header ─── */

.ornament { display: none; }

.crown {
  display: block;
  margin: 0 auto 1.8rem;
  height: 72px;
  width: auto;
}

header {
  padding: 2.8rem 0 1.8rem;
  border-bottom: 2px solid var(--ink);
}

.site-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.3rem, 3.8vw, 1.9rem);
  font-weight: 700;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.site-subtitle {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1rem;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-top: 0.35rem;
}

/* ─── Navigation ─── */

nav {
  display: flex;
  gap: 2rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 3rem;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.15s;
}

nav a:hover,
nav a.active {
  color: var(--ink);
}

/* ─── Essay list ─── */

.essay-list {
  margin-bottom: 5rem;
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.8rem;
}

.essay-entry {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 0 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}

.essay-entry:first-of-type {
  padding-top: 0;
}

.essay-title-link {
  text-decoration: none;
  color: inherit;
  grid-column: 1;
  grid-row: 1;
}

.essay-title-link:hover .essay-title {
  color: var(--accent);
}

.essay-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.3;
  transition: color 0.15s;
}

.essay-date {
  grid-column: 2;
  grid-row: 1;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  white-space: nowrap;
  padding-top: 0.15rem;
}

.essay-desc {
  grid-column: 1 / -1;
  grid-row: 2;
  font-size: 0.92rem;
  color: var(--muted);
  margin-top: 0.25rem;
  line-height: 1.55;
}

/* ─── Essay page ─── */

.essay-header {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.essay-header .back-link {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 1.2rem;
  transition: color 0.15s;
}

.essay-header .back-link:hover { color: var(--accent); }

.essay-header h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.4rem, 3.5vw, 1.9rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  margin-bottom: 0.6rem;
}

.essay-header .byline {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.essay-body {
  max-width: 620px;
}

.essay-body p {
  margin-bottom: 1.4em;
  font-size: 1.04rem;
}

.essay-body p + p {
  text-indent: 1.6em;
}

.essay-body blockquote {
  border-left: 2px solid var(--border);
  padding: 0.4rem 0 0.4rem 1.3rem;
  margin: 2rem 0;
  color: var(--muted);
  font-style: italic;
  font-size: 0.97rem;
}

.essay-body h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 2.5rem 0 0.7rem;
}

.essay-body .section-break {
  text-align: center;
  color: var(--border);
  margin: 2.5rem 0;
  letter-spacing: 0.5em;
  font-size: 0.85rem;
}

.footnotes {
  border-top: 1px solid var(--border);
  margin-top: 3rem;
  padding-top: 1rem;
  font-size: 0.82rem;
  color: var(--muted);
}

/* ─── About page ─── */

.about-body p {
  margin-bottom: 1.3em;
  font-size: 1.04rem;
}

/* ─── Footer ─── */

footer {
  text-align: center;
  padding: 1.5rem 0 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-top: auto;
}

footer .ornament { display: none; }

/* ─── Responsive ─── */

@media (max-width: 520px) {
  html { font-size: 16px; }
  .essay-entry { grid-template-columns: 1fr; }
  .essay-date { grid-column: 1; grid-row: 2; margin-top: 0.1rem; }
  .essay-desc { grid-row: 3; }
}
