:root {
  --bg: #478b55;
  --text: #f5f2ea;
  --muted: #e6e0d4;
  --link: #e6e0d4;
  --rule: rgba(243, 239, 230, 0.22); /* subtle accent */
  --max-width: 640px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "EB Garamond", Garamond, serif;
  font-size: 20px;
  line-height: 1.4;
  min-height: 100vh;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px 24px;
}

/* ✨ Accent applied here */
.site-header {
  margin-bottom: 34px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--rule);
}

.site-title {
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.site-title a {
  color: var(--text);
  text-decoration: none;
}

.site-tagline {
  margin-bottom: 24px;
  font-size: 1rem;
  color: var(--muted);
}

.nav {
  margin-bottom: 24px; /* slightly tightened since header has rule */
}

.nav a {
  margin-right: 16px;
  white-space: nowrap;
}

a {
  color: var(--link);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  overflow-wrap: anywhere;
}

a:hover {
  opacity: 0.85;
}

h2,
h3 {
  font-weight: normal;
  letter-spacing: 0.02em;
}

h1 {
  font-weight: 600;
  font-size: 1.35rem;
  margin-top: 26px;
  margin-bottom: 8px;
}

p {
  margin: 0 0 14px;
}

ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

li {
  margin-left: 22px;
  text-indent: -22px;
  padding-left: 22px;
  margin-bottom: 6px;
  line-height: 1.35;
}

.footer {
  margin-top: 40px;
  font-size: 0.9rem;
  opacity: 0.85;
  color: var(--muted);
}

@media (max-width: 700px) {
  body {
    font-size: 18px;
    line-height: 1.45;
  }

  .page {
    padding: 28px 18px;
  }

  .site-title {
    font-size: 1.4rem;
  }

  .nav a {
    display: inline-block;
    margin-right: 12px;
    margin-bottom: 8px;
  }

  h1 {
    font-size: 1.22rem;
    margin-top: 22px;
    margin-bottom: 8px;
  }

  li {
    margin-left: 18px;
    text-indent: -18px;
    padding-left: 18px;
    margin-bottom: 7px;
  }
}

.subline {
  display: block;
  margin-top: 2px;
  color: var(--muted);
}