:root {
  color-scheme: light dark;
  --bg: #edf3f0; --ink: #1f3833; --soft: #4a6a62; --faint: #7e9891;
  --accent: #59867c; --line: rgba(31,56,51,.12);
  --fill: rgba(89,134,124,.14); --fill-border: rgba(89,134,124,.5);
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0d1a1c; --ink: #d9e6e2; --soft: #9cb8b0; --faint: #5f7c75;
    --accent: #8fbfb4; --line: rgba(217,230,226,.1);
    --fill: rgba(143,191,180,.14); --fill-border: rgba(143,191,180,.5);
  }
}
* { box-sizing: border-box; margin: 0; }
body {
  background: var(--bg); color: var(--soft);
  font-family: "Jost", "Avenir Next", "Segoe UI", system-ui, sans-serif;
  font-weight: 300; line-height: 1.75;
  padding: 3.5rem 1.5rem 5rem;
}
main { max-width: 64ch; margin: 0 auto; }
.eyebrow {
  font-size: .7rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--faint); text-decoration: none; display: inline-block;
  margin-bottom: 1.6rem;
}
h1 {
  font-family: "Cormorant Garamond", Georgia, serif; font-style: italic;
  font-weight: 400; font-size: clamp(2.1rem, 6.5vw, 3.1rem);
  color: var(--ink); line-height: 1.12; margin-bottom: .5rem;
  text-wrap: balance;
}
.lede { font-size: 1.06rem; color: var(--soft); margin-bottom: 2rem; }
h2 {
  font-size: .76rem; letter-spacing: .24em; text-transform: uppercase;
  color: var(--faint); font-weight: 400; margin: 2.6rem 0 .7rem;
}
p { margin-bottom: 1rem; }
ol, ul { padding-left: 1.3rem; margin-bottom: 1rem; }
li { margin-bottom: .45rem; }
strong { font-weight: 400; color: var(--ink); }
a { color: var(--accent); }

.cta {
  display: inline-block; margin: 1.6rem 0 .6rem;
  font-size: .78rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
  background: var(--fill); border: 1px solid var(--fill-border);
  border-radius: 999px; padding: .95rem 2rem .95rem 2.26rem;
  transition: background .4s ease;
}
.cta:hover { background: var(--fill); filter: brightness(1.12); }

.rhythm {
  font-family: "Cormorant Garamond", Georgia, serif; font-style: italic;
  font-size: 1.3rem; color: var(--ink);
  padding: 1rem 0; margin-bottom: 1.4rem;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.note { font-size: .92rem; color: var(--faint); }
footer {
  margin-top: 3.4rem; padding-top: 1.6rem; border-top: 1px solid var(--line);
  font-size: .82rem;
}
footer a { margin-right: 1.4rem; display: inline-block; }
