:root {
  --ink: #202620;
  --muted: #626b62;
  --cream: #f7f3eb;
  --paper: #fffdf8;
  --sage: #8da18b;
  --deep-sage: #405a48;
  --clay: #c98266;
  --line: #dcd8ce;
  --shadow: 0 18px 50px rgba(44, 55, 45, .09);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}
a { color: inherit; }
.skip-link { position: absolute; left: -999px; }
.skip-link:focus { left: 1rem; top: 1rem; z-index: 10; background: white; padding: .75rem; }
.site-header {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -.04em;
}
.brand span { color: var(--clay); font-style: italic; }
nav { display: flex; gap: 1.6rem; }
nav a, .footer-links a { color: var(--muted); text-decoration: none; font-weight: 650; }
nav a:hover, nav a:focus, .footer-links a:hover { color: var(--deep-sage); }
.menu-button { display: none; }
main { overflow: hidden; }
.hero {
  width: min(1040px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(5rem, 11vw, 9rem) 0;
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  width: 28rem; height: 28rem; border-radius: 50%;
  right: -18rem; top: 2rem;
  background: rgba(141, 161, 139, .16);
}
.eyebrow {
  color: var(--deep-sage);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 800;
}
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; line-height: 1.08; }
h1 { max-width: 850px; font-size: clamp(2.8rem, 5.5vw, 4.6rem); letter-spacing: -.045em; margin: .5rem 0 1.5rem; }
h2 { font-size: clamp(2rem, 4vw, 3.35rem); letter-spacing: -.035em; margin: .4rem 0 1rem; }
h3 { font-size: 1.55rem; margin: .8rem 0; }
.intro { max-width: 680px; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.3rem); }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.4rem; margin-top: 2rem; }
.button {
  display: inline-block;
  padding: .9rem 1.25rem;
  border-radius: 999px;
  background: var(--deep-sage);
  color: white;
  text-decoration: none;
  font-weight: 750;
}
.button:hover { background: #2e4938; }
.button-secondary { background: var(--clay); }
.text-link { font-weight: 750; text-decoration-thickness: 1px; text-underline-offset: .3rem; }
.section { width: min(1160px, calc(100% - 2rem)); margin: 0 auto; padding: clamp(4rem, 8vw, 7rem) 0; }
.section-heading { max-width: 720px; margin-bottom: 2.5rem; }
.section-heading > p:last-child, .editorial > p { color: var(--muted); font-size: 1.08rem; }
.path-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.path-card { padding: clamp(1.5rem, 4vw, 2.5rem); border: 1px solid var(--line); border-radius: 1.2rem; background: white; box-shadow: var(--shadow); }
.path-card p { color: var(--muted); }
.path-card a { color: var(--deep-sage); font-weight: 750; text-underline-offset: .25rem; }
.path-number { color: var(--clay); font-size: .8rem; font-weight: 800; letter-spacing: .14em; }
.feature { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 8vw, 7rem); background: var(--cream); width: 100%; padding-left: max(1rem, calc((100% - 1160px)/2)); padding-right: max(1rem, calc((100% - 1160px)/2)); }
.feature-list p { display: grid; grid-template-columns: 10rem 1fr; gap: 1rem; padding: 1.2rem 0; margin: 0; border-bottom: 1px solid var(--line); }
.feature-list span { color: var(--muted); }
.editorial { max-width: 760px; margin-left: max(1rem, calc((100% - 1160px)/2)); }
footer { border-top: 1px solid var(--line); width: min(1160px, calc(100% - 2rem)); margin: 0 auto; padding: 2.5rem 0; display: grid; grid-template-columns: 1fr auto; gap: 2rem; }
footer p { color: var(--muted); margin: .4rem 0; }
.brand-footer { font-size: 1.45rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.2rem; align-items: start; }
.copyright { grid-column: 1 / -1; font-size: .85rem; }
.article { width: min(760px, calc(100% - 2rem)); margin: 0 auto; padding: clamp(4rem, 9vw, 7rem) 0; }
.article header { margin-bottom: 3rem; }
.article h1 { font-size: clamp(2.6rem, 6vw, 4.7rem); }
.article h2 { font-size: 2rem; margin-top: 3.5rem; }
.article p, .article li { color: #444d45; font-size: 1.07rem; }
.note { background: var(--cream); border-left: 4px solid var(--clay); padding: 1.2rem 1.4rem; margin: 2rem 0; }
.checklist { padding-left: 1.2rem; }
@media (max-width: 720px) {
  .menu-button { display: inline-block; border: 1px solid var(--line); border-radius: 999px; background: transparent; padding: .55rem .85rem; }
  nav { display: none; position: absolute; top: 72px; left: 1rem; right: 1rem; z-index: 5; flex-direction: column; padding: 1rem; background: white; border: 1px solid var(--line); box-shadow: var(--shadow); }
  nav.open { display: flex; }
  .path-grid, .feature { grid-template-columns: 1fr; }
  .feature-list p { grid-template-columns: 1fr; gap: .3rem; }
  footer { grid-template-columns: 1fr; }
  .copyright { grid-column: 1; }
}