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

html {
  font-size: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  color: #1a1510;
  background-color: #d4c8b8;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(0, 0, 0, 0.03) 2px,
      rgba(0, 0, 0, 0.03) 4px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(0, 0, 0, 0.025) 2px,
      rgba(0, 0, 0, 0.025) 4px
    ),
    linear-gradient(180deg, #e8e0d4 0%, #cfc3b0 100%);
  font-family: Georgia, "Times New Roman", Times, serif;
  line-height: 1.55;
}

/* --- Page shell --- */
.page {
  max-width: 52rem;
  margin: 0 auto;
  padding: 1.25rem 1rem 2rem;
}

/* --- Beveled panels (90s GUI chrome) --- */
.panel {
  padding: 1rem 1.15rem;
  margin-bottom: 1rem;
  background: #f5f0e6;
  border: 2px solid;
}

.panel--outset {
  border-color: #f8f4ea #6b5d4a #6b5d4a #f8f4ea;
  box-shadow:
    inset 1px 1px 0 #fffefc,
    inset -1px -1px 0 #9a8b78;
}

.panel--inset {
  border-color: #6b5d4a #f8f4ea #f8f4ea #6b5d4a;
  background: #ebe4d8;
  box-shadow:
    inset 1px 1px 0 #9a8b78,
    inset -1px -1px 0 #fffefc;
}

/* --- Header --- */
.site-header {
  text-align: center;
}

.site-header__tagline {
  margin: 0 0 0.35rem;
  font-family: "Courier New", Courier, monospace;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #4a4338;
}

.site-title__link {
  color: inherit;
  text-decoration: none;
}

.site-title__link:hover {
  text-decoration: underline;
}

.site-title__link:visited {
  color: inherit;
}

.site-title {
  margin: 0;
  font-family: "EB Garamond", Garamond, "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-size: clamp(2rem, 5.5vw, 2.75rem);
  font-weight: 600;
  font-variant-numeric: lining-nums proportional-nums;
  color: #1a2744;
  text-shadow: none;
  letter-spacing: -0.02em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.site-header__sub {
  margin: 0.6rem 0 0;
  font-size: 0.95rem;
  color: #5c5346;
}

/* --- Two-column layout --- */
.layout {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-start;
}

.sidebar {
  flex: 1 1 14rem;
  max-width: 100%;
}

.main {
  flex: 2 1 22rem;
  min-width: 0;
}

/* --- Sidebar --- */
.nav__heading,
.sidebar__heading {
  margin: 0 0 0.5rem;
  font-family: "Courier New", Courier, monospace;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #3d382f;
}

.nav__list {
  margin: 0 0 1.25rem;
  padding-left: 1.2rem;
  font-family: "Courier New", Courier, monospace;
  font-size: 0.9rem;
}

.nav__list li {
  margin-bottom: 0.35rem;
}

.sidebar__back {
  margin: 0 0 1rem;
  font-family: "Courier New", Courier, monospace;
  font-size: 0.85rem;
}

.sidebar__blurb p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
}

.sidebar__widgets {
  padding-top: 0.5rem;
  border-top: 1px dashed #8a7d6a;
}

.widget-line {
  margin: 0.4rem 0;
  font-family: "Courier New", Courier, monospace;
  font-size: 0.8rem;
  color: #333;
}

.widget-line .label {
  color: #5c5346;
}

.widget-line strong {
  color: #1a5f1a;
}

/* --- Links (classic web) --- */
a:link {
  color: #0000cc;
  text-decoration: underline;
}

a:visited {
  color: #551a8b;
}

a:hover {
  color: #cc6600;
  background-color: rgba(255, 240, 200, 0.9);
}

a:active {
  color: #cc0000;
}

/* --- Main / posts --- */
.post__header {
  margin-bottom: 0.65rem;
}

.post__date {
  display: block;
  font-family: "Courier New", Courier, monospace;
  font-size: 0.8rem;
  color: #5a5248;
  margin-bottom: 0.25rem;
}

.post__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: normal;
  color: #243a5e;
}

.post__title-link:link {
  color: #0000cc;
  text-decoration: underline;
}

.post__title-link:visited {
  color: #551a8b;
}

.post__title-link:hover {
  color: #cc6600;
}

.post--preview .post__excerpt {
  margin-bottom: 0.5rem;
}

.post__more {
  margin: 0;
  font-family: "Courier New", Courier, monospace;
  font-size: 0.85rem;
}

.post p {
  margin: 0 0 0.85rem;
}

.post p:last-child {
  margin-bottom: 0;
}

/* Images and figures inside posts (paths from posts/*.html use ../images/…) */
.post__image {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.post__figure {
  margin: 0 0 0.85rem;
}

.post__caption {
  margin-top: 0.35rem;
  font-size: 0.9rem;
  color: #5a5248;
  font-style: italic;
}

.post-sep {
  border: none;
  border-top: 1px solid #b8a994;
  margin: 1.25rem 0;
  height: 0;
  box-shadow: 0 1px 0 #fffefc;
}

/* --- Footer --- */
.site-footer {
  text-align: center;
  font-size: 0.85rem;
  color: #4a4338;
}

.site-footer__note {
  margin: 0 0 0.5rem;
}

.construction {
  display: inline-block;
  margin-right: 0.35rem;
  font-family: "Courier New", Courier, monospace;
  font-size: 0.78rem;
  color: #8b4513;
}

.site-footer__copy {
  margin: 0;
  font-family: "Courier New", Courier, monospace;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

/* --- Narrow screens: stack sidebar first --- */
@media (max-width: 40rem) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    flex-basis: auto;
    width: 100%;
  }
}
