:root {
  --ink: #17221d;
  --soft-ink: #34443b;
  --muted: #6f7d74;
  --paper: #ffffff;
  --line: #d8ddd2;
  --accent: #d9f36d;
  --accent-deep: #557c39;
  --moss: #2d7058;
  --shadow: rgba(34, 52, 43, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Avenir Next", "Segoe UI", ui-sans-serif, system-ui, sans-serif;
  line-height: 1.6;
  margin: 0;
}
body::before {
  background-image: radial-gradient(rgba(23, 34, 29, .08) .65px, transparent .65px);
  background-size: 5px 5px;
  content: "";
  inset: 0;
  opacity: .06;
  pointer-events: none;
  position: fixed;
  z-index: -1;
}
a { color: inherit; }
.shell { margin: 0 auto; max-width: 1160px; padding: 24px 30px 70px; }
.topline {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-size: 11px;
  font-weight: 800;
  gap: 10px;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.topline::before { background: var(--accent-deep); border-radius: 50%; content: ""; height: 7px; width: 7px; }
header { align-items: center; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; padding: 20px 0 18px; }
.brand { align-items: center; display: flex; gap: 12px; text-decoration: none; }
.brand-mark { background: var(--accent); border-radius: 12px; box-shadow: 0 9px 22px var(--shadow); height: 42px; object-fit: cover; width: 42px; }
.brand-copy strong { display: block; font-size: 19px; letter-spacing: -.04em; line-height: 1; }
.brand-copy span { color: var(--muted); display: block; font-size: 10px; font-weight: 800; letter-spacing: .14em; margin-top: 5px; text-transform: uppercase; }
nav { align-items: center; display: flex; gap: 24px; }
nav a { color: var(--soft-ink); font-size: 13px; text-decoration: none; }
nav a:hover, footer a:hover { color: var(--accent-deep); }
.nav-cta, .button { background: var(--ink); border: 1px solid var(--ink); border-radius: 7px; color: #fff; font-weight: 800; }
.nav-cta { padding: 10px 15px; }
.button { display: inline-flex; font-size: 14px; gap: 9px; min-height: 45px; padding: 12px 17px; text-decoration: none; transition: background-color .2s ease, transform .2s ease; }
.button:hover { background: var(--moss); transform: translateY(-2px); }
.button.secondary { background: transparent; border-color: var(--line); color: var(--soft-ink); }
.button.secondary:hover { background: #f5f8ef; border-color: var(--soft-ink); }
.hero { padding: 92px 0 78px; }
.hero-grid { align-items: end; display: grid; gap: 70px; grid-template-columns: 1.1fr .9fr; }
.eyebrow { color: var(--moss); font-size: 11px; font-weight: 850; letter-spacing: .18em; margin: 0 0 22px; text-transform: uppercase; }
h1, h2, h3, p { text-wrap: pretty; }
h1 { font-size: clamp(48px, 8vw, 88px); letter-spacing: -.085em; line-height: .92; margin: 0; max-width: 760px; }
h2 { font-size: clamp(34px, 5vw, 58px); letter-spacing: -.075em; line-height: .96; margin: 0; }
h3 { letter-spacing: -.045em; line-height: 1.05; margin: 0; }
.lede { color: var(--soft-ink); font-size: 19px; line-height: 1.55; margin: 28px 0 0; max-width: 640px; }
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-card { background: var(--ink); color: #fff; padding: 32px; transform: rotate(2deg); }
.hero-card small { color: var(--accent); display: block; font-size: 10px; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.hero-card h2 { font-size: 32px; margin: 14px 0 12px; }
.hero-card p { color: #a9b8af; font-size: 14px; margin: 0; }
.section { border-top: 1px solid var(--line); padding: 70px 0 0; }
.section + .section { margin-top: 70px; }
.section-heading { align-items: end; display: flex; gap: 30px; justify-content: space-between; margin-bottom: 30px; }
.section-heading > p { color: var(--muted); font-size: 14px; margin: 0; max-width: 360px; }
.card-grid { display: grid; gap: 1px; grid-template-columns: repeat(3, 1fr); }
.card { border: 1px solid var(--line); margin: -1px 0 0 -1px; padding: 25px; }
.card-index { color: var(--accent-deep); display: block; font-size: 11px; font-weight: 850; letter-spacing: .12em; margin-bottom: 35px; }
.card h3 { font-size: 25px; }
.card p { color: var(--muted); font-size: 14px; margin: 12px 0 0; }
.card a { display: inline-block; font-size: 13px; font-weight: 800; margin-top: 22px; text-decoration: none; }
.card a:hover { color: var(--moss); }
.steps { border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(3, 1fr); }
.step { border-left: 1px solid var(--line); min-height: 190px; padding: 24px; }
.step:first-child { border-left: 0; }
.step b { color: var(--accent-deep); font-size: 12px; letter-spacing: .12em; }
.step h3 { font-size: 21px; margin: 35px 0 9px; }
.step p { color: var(--muted); font-size: 13px; margin: 0; }
.content-grid { display: grid; gap: 58px; grid-template-columns: minmax(0, 1fr) 280px; }
.prose { max-width: 720px; }
.prose h2 { font-size: 34px; margin: 42px 0 14px; }
.prose h3 { font-size: 22px; margin: 32px 0 10px; }
.prose p, .prose li { color: var(--soft-ink); font-size: 16px; }
.prose ul, .prose ol { padding-left: 22px; }
.prose li + li { margin-top: 8px; }
.prose a { color: var(--moss); font-weight: 700; }
.article-page > .article-header { display: block; }
.article-page { padding: 72px 0 0; }
.article-header { border-bottom: 0; display: block; max-width: 820px; padding: 0 0 40px; }
.article-header h1 { max-width: 820px; }
.media-card { background: #f7f8f2; border: 1px solid var(--line); margin: 40px 0; padding: 12px; }
.media-card img { display: block; height: auto; max-width: 100%; }
.media-card figcaption { color: var(--muted); font-size: 13px; padding: 12px 8px 4px; }
.media-grid { display: grid; gap: 24px; grid-template-columns: repeat(3, 1fr); }
.media-grid .media-card { margin: 0; }
.media-grid .media-card img { aspect-ratio: 16 / 10; object-fit: cover; }
.callout { background: #f2f8d9; border-left: 3px solid var(--accent-deep); margin: 26px 0; padding: 18px 20px; }
.callout p { margin: 0; }
.toc { border-left: 1px solid var(--line); padding-left: 22px; position: sticky; top: 20px; }
.toc strong { display: block; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.toc a { color: var(--muted); display: block; font-size: 13px; margin-top: 12px; text-decoration: none; }
.toc a:hover { color: var(--moss); }
.meta { color: var(--muted); font-size: 13px; margin: 18px 0 0; }
.faq details { border: 1px solid var(--line); margin: -1px 0 0; padding: 20px 22px; }
.faq summary { cursor: pointer; font-weight: 800; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { color: var(--accent-deep); content: "+"; float: right; font-size: 22px; font-weight: 400; line-height: 1; }
.faq details[open] summary::after { content: "−"; }
.faq details p { color: var(--muted); font-size: 14px; margin: 12px 0 0; max-width: 70ch; }
.final-cta { align-items: center; background: var(--accent); display: flex; gap: 35px; justify-content: space-between; margin-top: 70px; padding: 36px 40px; }
.final-cta h2 { font-size: clamp(32px, 5vw, 53px); }
.final-cta p { color: #425b3f; font-size: 14px; margin: 13px 0 0; max-width: 600px; }
footer { align-items: center; border-top: 1px solid var(--line); color: var(--muted); display: flex; font-size: 12px; justify-content: space-between; margin-top: 50px; padding-top: 20px; }
footer a { text-decoration: none; }
:focus-visible { outline: 3px solid var(--accent-deep); outline-offset: 3px; }
@media (max-width: 800px) {
  .shell { padding-left: 20px; padding-right: 20px; }
  nav a:not(.nav-cta) { display: none; }
  .hero { padding: 70px 0 60px; }
  .hero-grid, .content-grid { gap: 40px; grid-template-columns: 1fr; }
  .hero-card { max-width: 580px; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .media-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step, .step:first-child { border-left: 0; border-top: 1px solid var(--line); }
  .step:first-child { border-top: 0; }
  .toc { border-left: 0; border-top: 1px solid var(--line); padding: 20px 0 0; position: static; }
  .final-cta { align-items: start; flex-direction: column; padding: 28px 22px; }
}
@media (max-width: 560px) {
  h1 { font-size: clamp(46px, 15vw, 70px); }
  .lede { font-size: 17px; }
  .card-grid { grid-template-columns: 1fr; }
  .section-heading { align-items: start; flex-direction: column; gap: 18px; }
  footer { align-items: start; flex-direction: column; gap: 12px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .001ms !important; }
  .hero-card, .button:hover { transform: none; }
}
