:root {
  --bg: #121411;
  --card: #181b17;
  --line: #262a24;
  --ink: #ece7dc;
  --muted: #9c9a90;
  --gold: #e3b45c;
  --gold-ink: #16140f;
  --display: "Bodoni Moda", "Didot", Georgia, serif;
  --body: "Manrope", "Helvetica Neue", sans-serif;
  --wide: 72rem;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.wrap {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.site-header { border-bottom: 1px solid var(--line); }
.site-header .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
}
.wordmark {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 600;
  font-variation-settings: "opsz" 11;
  letter-spacing: 0.01em;
  text-decoration: none;
}
.site-header nav { display: flex; align-items: center; gap: 1.75rem; font-size: 0.92rem; }
.site-header nav a { text-decoration: none; color: var(--muted); }
.site-header nav a:hover,
.site-header nav a[aria-current="page"] { color: var(--ink); }
.site-header nav a.button { color: var(--gold-ink); }

/* Buttons */
.button {
  display: inline-block;
  background: var(--gold);
  color: var(--gold-ink);
  text-decoration: none;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.7rem 1.35rem;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: filter 0.2s, transform 0.2s;
}
.button:hover { filter: brightness(1.08); transform: translateY(-1px); }
.button.large { font-size: 1rem; padding: 0.95rem 1.9rem; }

/* Type */
.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1.75rem;
}
.eyebrow.gold { color: var(--gold); }
h1.gold { color: var(--gold); font-weight: 500; font-variation-settings: "opsz" 18; }
h1, h2, h3 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 0;
}
h1 { font-size: clamp(2.6rem, 6.5vw, 4.6rem); line-height: 1.1; }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); line-height: 1.15; }
.lede { color: var(--muted); font-size: 1.05rem; max-width: 34rem; margin: 1.5rem auto 2.25rem; }
.intro { max-width: 36rem; margin: 2.75rem auto 2.5rem; text-align: left; font-size: 1.05rem; }
.section .intro p { color: var(--ink); margin: 0 0 1.2rem; }
.intro ul { margin: 0 0 1.2rem; padding-left: 1.2rem; }
.intro li { margin-bottom: 0.5rem; }
.intro li::marker { color: var(--gold); }
.book-line { color: var(--ink) !important; }
.book-line .email { color: var(--gold); user-select: all; }
.note { display: block; margin-top: 0.9rem; font-size: 0.82rem; color: var(--muted); }

/* Sections */
.section {
  border-bottom: 1px solid var(--line);
  padding: 6rem 0;
  text-align: center;
}
.section:last-child { border-bottom: 0; }
.narrow { max-width: 38rem; margin: 0 auto; }
.hero { padding: 7rem 0; }
.hero h1 { max-width: 16ch; margin: 0 auto; }
.section p { color: var(--muted); }

.lines { max-width: 40rem; margin: 0 auto; }
.lines p {
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.6vw, 1.65rem);
  line-height: 1.4;
  color: var(--ink);
  margin: 0;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}
.lines p:first-child { padding-top: 0; }
.lines p:last-child { border-bottom: 0; }

/* Writing */
.page-title { text-align: center; padding: 5.5rem 0 3.5rem; }
.page-title h1 { font-size: clamp(3rem, 7vw, 4.5rem); }
.page-title p { color: var(--muted); margin: 0.75rem 0 0; }

.post-list { list-style: none; padding: 0; margin: 0 0 7rem; display: grid; gap: 1rem; }
.post-list a {
  display: block;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 0.6rem;
  padding: 1.9rem 1.8rem;
  text-decoration: none;
  transition: border-color 0.2s;
}
.post-list a:hover { border-color: color-mix(in srgb, var(--gold) 45%, var(--line)); }
.post-list time,
.post time {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.post-list h2 { font-size: clamp(1.5rem, 3vw, 1.85rem); }
.post-list p { color: var(--muted); margin: 0.6rem 0 0; font-size: 0.95rem; }

.subscribe {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 3.5rem 0;
  margin-bottom: 7rem;
  text-align: center;
}
.subscribe h2 { font-size: clamp(1.6rem, 3vw, 2rem); }
.subscribe p { color: var(--muted); font-size: 0.92rem; margin: 0.9rem 0 1.4rem; }
.subscribe form { display: flex; gap: 0.6rem; justify-content: center; flex-wrap: wrap; }
.subscribe input {
  width: min(100%, 16.5rem);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font: inherit;
  font-size: 0.9rem;
  padding: 0.7rem 1rem;
}
.subscribe input::placeholder { color: color-mix(in srgb, var(--muted) 70%, transparent); }
.subscribe input:focus { outline: none; border-color: var(--gold); }

.post { max-width: 40rem; margin: 0 auto; padding: 5.5rem 0 6rem; }
.post header { text-align: center; margin-bottom: 3.5rem; }
.post h1 { font-size: clamp(2.3rem, 5vw, 3.4rem); }
.post h2 { font-size: 1.7rem; margin: 2.75rem 0 1rem; }
.post p { margin: 0 0 1.35rem; font-size: 1.05rem; }
.post blockquote {
  margin: 2.25rem 0;
  padding-left: 1.25rem;
  border-left: 2px solid var(--gold);
  font-family: var(--display);
  font-size: 1.4rem;
  line-height: 1.45;
}
.back { display: inline-block; margin-top: 2.5rem; color: var(--muted); text-decoration: none; font-size: 0.92rem; }
.back:hover { color: var(--ink); }

/* Footer */
.site-footer { border-top: 1px solid var(--line); }
.site-footer .wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  padding-bottom: 2.5rem;
  font-size: 0.82rem;
  color: var(--muted);
}
.site-footer nav { display: flex; gap: 1.5rem; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: var(--ink); }

@media (max-width: 640px) {
  .site-header nav { gap: 1rem; }
  .hero { padding: 4.5rem 0; }
  .section { padding: 4rem 0; }
  .post-list a { padding: 1.5rem 1.25rem; }
}
