@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700;900&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:      #12141d;
  --grey:    #1e2029;
  --text:    #ffffff;
  --muted:   #d0d0d0;
  --dim:     #7a7b6e;
  --green:   #5AA786;
  --yellow:  #f2d230;
  --hover:   #C4A35A;
  --font:    'Montserrat', sans-serif;
}

html {
  font-size: 18px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-weight: 300;
  line-height: 1.765;
  padding: 2rem 1rem;
}

.container {
  max-width: 640px;
  margin: 0 auto;
}

/* Header */
header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--grey);
}

h1 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--hover);
  letter-spacing: 0.01em;
  margin-bottom: 0.25rem;
}

.tagline {
  color: var(--dim);
  font-size: 0.9rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

nav {
  display: flex;
  gap: 1.25rem;
}

nav a {
  color: var(--green);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  transition: color 0.2s ease;
}

nav a:hover {
  color: var(--hover);
}

/* Sections */
section {
  margin-bottom: 2.5rem;
}

h2 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--dim);
  margin-bottom: 0.75rem;
}

p {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 300;
}

em {
  color: var(--text);
  font-style: italic;
}

/* Lists */
ul {
  list-style: none;
}

ul li {
  margin-bottom: 0.4rem;
  color: var(--muted);
}

ul li a {
  white-space: nowrap;
}

.date {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--dim);
  white-space: nowrap;
  flex-shrink: 0;
}

a {
  color: var(--green);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

/* Footer */
footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--grey);
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--dim);
}

/* Mobile */
@media (max-width: 480px) {
  html { font-size: 16px; }
  ul li { flex-direction: column; gap: 0.15rem; }
}
