:root {
  --paper: #f7f5ef;
  --ink: #1e2821;
  --muted: #68716b;
  --line: #d8d8d0;
  --accent: #d65d37;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Noto Serif SC", Georgia, serif;
  font-size: 16px;
  line-height: 1.75;
}

.site-header, main, footer { max-width: 1120px; margin: auto; }
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 32px;
  font-family: "DM Mono", monospace;
  font-size: .72rem;
  letter-spacing: .06em;
}
.brand { color: var(--ink); font-weight: 500; text-decoration: none; }
.brand span { color: var(--accent); }
nav { display: flex; gap: 24px; }
nav a, footer a { color: var(--muted); text-decoration: none; }
nav a:hover, footer a:hover, .text-link:hover { color: var(--accent); }

.hero { padding: 125px 32px 145px; max-width: 790px; }
.eyebrow, .post-meta {
  color: var(--muted);
  font-family: "DM Mono", monospace;
  font-size: .7rem;
  letter-spacing: .1em;
}
.hero h1, h2, h3 { font-weight: 600; letter-spacing: -.04em; }
.hero h1 { font-size: clamp(3rem, 8vw, 6.2rem); line-height: 1.17; margin: 14px 0 28px; }
.intro { color: var(--muted); font-size: 1.12rem; max-width: 520px; }
.text-link { color: var(--ink); display: inline-block; font-family: "DM Mono", monospace; font-size: .78rem; letter-spacing: .04em; margin-top: 20px; text-decoration: none; }
.text-link span { color: var(--accent); font-size: 1.15rem; margin-left: 4px; }

.articles { border-top: 1px solid var(--line); padding: 72px 32px 110px; }
.section-heading { display: flex; align-items: baseline; gap: 22px; margin-bottom: 32px; }
h2 { font-size: 2rem; margin: 0; }
.post-list { border-top: 1px solid var(--line); }
.post { border-bottom: 1px solid var(--line); min-height: 164px; padding: 27px 65px 25px 0; position: relative; transition: padding-left .25s ease; }
.post > a { inset: 0; position: absolute; z-index: 1; }
.post:hover { padding-left: 12px; }
.post-meta { display: flex; gap: 14px; }
.post-meta span::before { content: "·"; margin-right: 14px; }
.post h3 { font-size: 1.45rem; margin: 5px 0 2px; }
.post p { color: var(--muted); margin: 0; }
.arrow { color: var(--accent); font-size: 1.8rem; position: absolute; right: 9px; top: 50%; transform: translateY(-50%); }

.about { background: var(--ink); color: var(--paper); display: grid; gap: 28px; grid-template-columns: 1fr 2fr; margin-bottom: 0; padding: 76px 32px; }
.about .eyebrow { color: #aeb7ae; margin: 8px 0; }
.about h2 { font-size: 2.3rem; }
.about p:not(.eyebrow) { color: #d2d7d1; max-width: 520px; }
.about .text-link { color: var(--paper); }

footer { display: flex; justify-content: space-between; color: var(--muted); font-family: "DM Mono", monospace; font-size: .68rem; letter-spacing: .04em; padding: 29px 32px; }
footer p { margin: 0; }

@media (max-width: 640px) {
  .site-header { padding: 22px 20px; }
  nav { gap: 14px; }
  .hero { padding: 82px 20px 100px; }
  .articles { padding: 52px 20px 75px; }
  .section-heading { display: block; }
  .section-heading h2 { margin-top: 5px; }
  .post { padding-right: 40px; }
  .post h3 { font-size: 1.25rem; }
  .about { display: block; padding: 56px 20px; }
  .about h2 { margin-top: 24px; }
  footer { align-items: flex-start; flex-direction: column; gap: 8px; padding: 25px 20px; }
}
