:root {
  color-scheme: light;
  --ink: #142724;
  --muted: #5b6c68;
  --emerald: #0f5047;
  --emerald-deep: #0a3732;
  --gold: #b79857;
  --paper: #fbfaf6;
  --line: #d9dfdc;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

header {
  padding: 1rem 1.25rem;
  background: var(--emerald-deep);
  border-bottom: 1px solid rgba(183, 152, 87, .55);
}

.brand {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand a {
  color: #fff;
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  letter-spacing: .03em;
}

nav { display: flex; flex-wrap: wrap; gap: .9rem; }
nav a { font-family: inherit !important; font-size: .9rem !important; color: #e9efec; }

main {
  width: min(860px, calc(100% - 2rem));
  margin: 3.5rem auto;
}

.eyebrow {
  margin: 0 0 .6rem;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  color: var(--emerald-deep);
  line-height: 1.2;
}

h1 { margin: 0 0 1rem; font-size: clamp(2.2rem, 7vw, 4rem); }
h2 { margin: 2.25rem 0 .7rem; font-size: 1.45rem; }
p, li { max-width: 75ch; }
.intro { font-size: 1.1rem; color: var(--muted); }

.meta {
  margin: 1.75rem 0 2.5rem;
  padding: 1rem 1.1rem;
  border-left: 3px solid var(--gold);
  background: #fff;
  color: var(--muted);
}

a { color: var(--emerald); text-underline-offset: .18em; }

footer {
  width: min(860px, calc(100% - 2rem));
  margin: 0 auto 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .9rem;
}

@media (max-width: 620px) {
  .brand { align-items: flex-start; flex-direction: column; }
  main { margin-top: 2.25rem; }
}
