:root {
  --bg: #ffffff;
  --fg: #1a1a1a;
  --muted: #555;
  --accent: #a60000; /* a deep red nod to your logo idea */
  --maxw: 860px;
  --radius: 14px;
  --line: 1.6;
}

* { box-sizing: border-box; }
html { font-size: 18px; }
body {
  margin: 0;
  color: var(--fg);
  background: var(--bg);
  font-family: ui-sans-serif, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
  line-height: var(--line);
}

main {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 3rem 1.25rem 4rem;
}

h1, h2, h3 {
  line-height: 1.2;
  margin: 2rem 0 0.6rem;
}
h1 { font-size: 2rem; }
h2 { font-size: 1.35rem; border-top: 1px solid #eee; padding-top: 1.2rem; }
h3 { font-size: 1.1rem; color: var(--muted); }

p, ul, ol { margin: 0.75rem 0; }

code, pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.95rem;
}
pre {
  background: #fafafa;
  border: 1px solid #eee;
  padding: 0.9rem 1rem;
  border-radius: var(--radius);
  overflow-x: auto;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

blockquote {
  margin: 1rem 0;
  padding: 0.75rem 1rem;
  border-left: 4px solid var(--accent);
  background: #d0d0d04d;
  border-radius: 0 var(--radius) var(--radius) 0;
}

hr { border: 0; border-top: 1px solid #eee; margin: 2rem 0; }

header.site {
  background: #eee;
  color: #fff;
  padding: 1rem 1.25rem;
}
header.site .wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer.site {
  border-top: 1px solid #eee;
  color: var(--muted);
  padding: 1.5rem 1.25rem 3rem;
}
footer.site .wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  font-size: 0.95rem;
}

header.site img {
  height: 60px;              /* adjust to taste */
  width: auto;
  display: block;
  filter: drop-shadow(0 0 0 rgba(0,0,0,0)); /* crisp edges */
}

header > h1:first-of-type { display: none; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;  /* quote | image */
  gap: 1.25rem;
  align-items: start;
  margin: 1.25rem 0;
}

.two-col .left blockquote { margin: 0; } /* use your existing blockquote styles */
.two-col .right { display: flex; justify-content: flex-end; }
.two-col .fit { max-width: 100%; height: auto; border-radius: 8px; }

@media (max-width: 780px) {
  .two-col { grid-template-columns: 1fr; }  /* stack on narrow screens */
  .two-col .right { justify-content: flex-start; }
}
