:root {
  color-scheme: dark;
  --background: #11100f;
  --surface: #1b1917;
  --text: #f4efe7;
  --muted: #b8afa4;
  --accent: #d4b483;
  --line: #38322c;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--background);
}

body {
  min-height: 100vh;
  margin: 0;
  background: radial-gradient(circle at top, #2a231d 0, var(--background) 38rem);
  color: var(--text);
  line-height: 1.65;
}

a {
  color: var(--accent);
}

.site-header,
.site-footer,
.archive-notice,
main {
  width: min(100% - 2rem, 76rem);
  margin-inline: auto;
}

.site-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.brand {
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 3vw, 1.8rem);
  text-decoration: none;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.25rem;
}

nav a {
  text-underline-offset: .25rem;
}

.archive-notice {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  border: 1px solid #6c5738;
  border-radius: .75rem;
  background: #211c16;
  color: #e9dcc8;
}

main {
  padding-block: clamp(2.5rem, 7vw, 6rem);
}

article {
  max-width: 54rem;
}

.eyebrow {
  margin: 0 0 .75rem;
  color: var(--accent);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1 {
  max-width: 22ch;
  margin: 0 0 1.5rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 8vw, 5rem);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.03;
}

.summary {
  max-width: 62ch;
  margin-bottom: 2.5rem;
  color: #ded5ca;
  font-size: 1.1rem;
}

.content {
  display: grid;
  gap: 1rem;
}

.content p {
  margin: 0;
  padding: 1rem 1.15rem;
  border-left: 2px solid var(--line);
  background: color-mix(in srgb, var(--surface) 88%, transparent);
}

.site-footer {
  padding-block: 1.5rem 2.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .9rem;
}

@media (max-width: 42rem) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    gap: .6rem 1rem;
  }
}
