/* LogosPress — canonical design v0.1
 * Typography-first. System fonts. Auto dark mode. JS-disabled-readable. */

:root {
  --measure: 38rem;
  --gutter: 1.25rem;
  --bg: #fcfbf7;
  --fg: #1c1c1c;
  --muted: #6a6a6a;
  --rule: #e6e2d6;
  --accent: #5b4636;
  --link: #2050a0;
  --link-hover: #6a2050;
  --code-bg: #f0ede3;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #14161a;
    --fg: #e8e4d8;
    --muted: #9a9a9a;
    --rule: #2a2c30;
    --accent: #d6b88a;
    --link: #87b6f5;
    --link-hover: #f3a3c0;
    --code-bg: #1d1f23;
  }
}

* { box-sizing: border-box; }

html {
  font-size: 18px;
  background: var(--bg);
  color: var(--fg);
}

body {
  font-family: Charter, "Iowan Old Style", "Source Serif Pro", "Apple Garamond",
    "Baskerville", "Georgia", serif;
  line-height: 1.65;
  margin: 0;
  padding: 0 var(--gutter);
  -webkit-text-size-adjust: 100%;
}

a { color: var(--link); text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: var(--link-hover); }

code, pre, .mono {
  font-family: "JetBrains Mono", "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 0.92em;
}

code { background: var(--code-bg); padding: 0.1em 0.3em; border-radius: 3px; }

pre {
  background: var(--code-bg);
  padding: 0.85rem 1rem;
  border-radius: 4px;
  overflow-x: auto;
  line-height: 1.5;
}
pre code { background: transparent; padding: 0; }

blockquote {
  border-left: 3px solid var(--accent);
  margin: 1.5rem 0;
  padding: 0.1rem 1.1rem;
  color: var(--muted);
  font-style: italic;
}

img, video { max-width: 100%; height: auto; }

hr {
  border: 0;
  border-top: 1px solid var(--rule);
  margin: 2.5rem 0;
}

h1, h2, h3, h4 {
  font-family: "Iowan Old Style", "Charter", Georgia, serif;
  line-height: 1.25;
  margin-top: 2.2rem;
  margin-bottom: 0.8rem;
}
h1 { font-size: 2.1rem; }
h2 { font-size: 1.55rem; }
h3 { font-size: 1.2rem; }
h4 { font-size: 1.05rem; color: var(--muted); }

/* Layout — single column, centered */
.site-header,
.site-main,
.site-footer {
  max-width: var(--measure);
  margin: 0 auto;
}

.site-header {
  padding: 2.5rem 0 1rem;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 2rem;
}

.site-title {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--accent);
  font-family: "Iowan Old Style", Georgia, serif;
}
.site-title:hover { color: var(--link-hover); }

.site-tagline {
  margin: 0.1rem 0 0.6rem;
  color: var(--muted);
  font-style: italic;
  font-size: 1.05rem;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.95rem;
}
.site-nav a { color: var(--muted); text-decoration: none; }
.site-nav a:hover { color: var(--link-hover); }

/* Post + page */
.post-title, .page-title {
  margin-top: 0.5rem;
  margin-bottom: 0.4rem;
}

.post-meta {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0 0 1.6rem;
}

.post-body p { margin: 1rem 0; }
.post-body { font-size: 1.05rem; }

.tag {
  display: inline-block;
  font-size: 0.85rem;
  margin-right: 0.35rem;
  color: var(--muted);
  text-decoration: none;
}
.tag:hover { color: var(--link-hover); }

.post-footer {
  margin-top: 3rem;
  padding-top: 1rem;
  border-top: 1px solid var(--rule);
  font-size: 0.95rem;
}

/* Landing — post cards */
.section-heading {
  border-bottom: 1px solid var(--rule);
  padding-bottom: 0.3rem;
  margin-bottom: 1.5rem;
}

.post-card {
  margin: 0 0 2.4rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--rule);
}
.post-card:last-of-type { border-bottom: 0; }

.post-card-title {
  margin: 0 0 0.3rem;
  font-size: 1.4rem;
}
.post-card-title a { text-decoration: none; color: var(--accent); }
.post-card-title a:hover { color: var(--link-hover); }

.post-card-meta {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0 0 0.6rem;
}

.post-card-excerpt { margin: 0; }

.all-posts-link {
  margin-top: 2rem;
  text-align: right;
}

/* Archive */
.archive-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}
.archive-item {
  display: flex;
  gap: 1rem;
  padding: 0.4rem 0;
  border-bottom: 1px dotted var(--rule);
}
.archive-item time {
  color: var(--muted);
  font-size: 0.9rem;
  white-space: nowrap;
  width: 6rem;
  flex-shrink: 0;
}

/* Footer */
.site-footer {
  margin-top: 4rem;
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--rule);
  color: var(--muted);
  font-size: 0.9rem;
}
.site-footer p { margin: 0.3rem 0; }
.site-footer a { color: var(--muted); }
.site-footer-meta { font-style: italic; }

/* Print */
@media print {
  .site-nav, .site-footer-meta, .post-footer { display: none; }
  body { color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
}

/* Small screens — gutter still readable */
@media (max-width: 480px) {
  html { font-size: 17px; }
  .site-header { padding-top: 1.5rem; }
}
