@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
}

:root {
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-serif: 'Georgia', 'Times New Roman', Times, serif;
  --max-width: 650px;
  --bg: #111111;
  --text: #f9f9f9;
  --text-muted: #a1a1a1;
  --link: #ffffff;
  --hr: #333333;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #111111;
    --text: #f9f9f9;
    --text-muted: #a1a1a1;
    --hr: #333333;
  }
}
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-serif);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-size: 18px;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

a {
  color: var(--link);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: opacity 0.2s;
}
a:hover {
  opacity: 0.7;
}

/* Typography */
h1 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 2rem;
  font-family: var(--font-serif);
}

h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 3rem 0 1rem;
}

h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 1.5rem 0 0.5rem;
}

p {
  margin-bottom: 1.5rem;
}

/* Header & Nav */
.masthead {
  margin-bottom: 4rem;
}

.masthead__nav {
  display: flex;
  gap: 1.5rem;
}

.visible-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1.5rem;
}

.masthead__menu-item a {
  font-weight: 500;
  color: var(--text-muted);
}
.masthead__menu-item a:hover {
  color: var(--text);
}

/* Main Content */
.main-content {
  margin-bottom: 6rem;
}
.main-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.main-content ul li {
  margin-bottom: 0.5rem;
}
.main-content ul li::before {
  content: "·";
  margin-right: 0.5rem;
  color: var(--text-muted);
}

section {
  margin-bottom: 4rem;
}

/* Project Lists / Simple Grids */
.project-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.project-item {
  display: block;
  padding: 1rem 0;
  border-bottom: 1px solid var(--hr);
}
.project-item:last-child {
  border-bottom: none;
}

/* Footer */
.page__footer {
  margin-top: 8rem;
  padding-top: 2rem;
  border-top: 1px solid var(--hr);
  color: var(--text-muted);
  font-size: 0.875rem;
}

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

/* Responsive */
@media (max-width: 600px) {
  .container {
    padding: 2rem 1rem;
  }
  h1 {
    font-size: 2rem;
  }
}

/*# sourceMappingURL=main.css.map */