/* --- Base Reset --- */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* --- Root Variables --- */

:root {
  --bg: #f8f7f5;
  --text-main: #1a1a1a;
  --text-muted: #6b6b6b;
  --accent: #a08f78;

  --font-serif: "Libre Baskerville", Georgia, serif;
  --font-sans: "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", monospace;
}

/* --- Global Styles --- */

body {
  background-color: var(--bg);
  color: var(--text-main);
  font-family: var(--font-serif);
  line-height: 1.7;
}

/* --- Layout --- */

.container {
  max-width: 720px;
  padding: 4rem 1.5rem 6rem;
  margin: 0 auto;
}

/* --- Intro --- */

.intro h1 {
  font-family: var(--font-sans);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.tagline {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.aside {
  font-style: italic;
  color: var(--text-muted);
  max-width: 28rem;
}

/* --- Sections --- */

.section {
  margin-top: 4rem;
}

.section h2 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  margin-bottom: 1.5rem;
}

/* --- Lists --- */

.list {
  list-style: none;
}

.list li {
  margin-bottom: 0.75rem;
}

/* --- Links --- */

a {
  color: var(--text-main);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

a:hover {
  border-color: var(--accent);
}

/* --- Meta Text --- */

.meta {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

/* --- Signature --- */

.signature {
  margin-top: 2rem;
  font-style: italic;
}

/* --- Footer --- */

.footer {
  margin-top: 6rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer p {
  margin-bottom: 0.5rem;
}
