:root {
  color-scheme: light;
  --sage: #6f8f7a;
  --sage-dark: #5c7a6b;
  --plum: #8b7091;
  --cream: #faf9f7;
  --offwhite: #fefdfb;
  --heading: #4a4a4a;
  --body-text: #6b6b6b;
  --muted: #8a8a8a;
  --border: #e8e6e4;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--heading);
  background: var(--offwhite);
  -webkit-font-smoothing: antialiased;
}

.page {
  width: min(100%, 44rem);
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

.page__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.page__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.page__logo {
  width: 2.5rem;
  height: 2.5rem;
}

.page__brand-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
}

.page__nav {
  display: flex;
  gap: 1rem;
  font-size: 0.875rem;
}

.page__nav a {
  color: var(--sage-dark);
  text-decoration: none;
}

.page__nav a:hover,
.page__nav a[aria-current="page"] {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

h1 {
  margin: 0 0 0.35rem;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 500;
  line-height: 1.2;
}

.lede,
.updated {
  color: var(--body-text);
}

.updated {
  margin: 0 0 2rem;
  font-size: 0.875rem;
  color: var(--muted);
}

h2 {
  margin: 2rem 0 0.75rem;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
}

p,
li {
  color: var(--body-text);
}

ul {
  padding-left: 1.25rem;
}

a {
  color: var(--sage-dark);
}

.cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0;
  padding: 1.25rem 1.5rem;
  background: var(--cream);
  border: 1px solid var(--border);
}

.cta__label {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.cta a {
  font-size: 1.15rem;
  font-weight: 600;
  text-decoration: none;
}

.cta a:hover {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.page__footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--muted);
}

@media (max-width: 480px) {
  .page__header {
    flex-direction: column;
    align-items: flex-start;
  }
}
