:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #1b2523;
  background: #f5f1e7;
}

* { box-sizing: border-box; }
body { margin: 0; background: #f5f1e7; }
a { color: #22594a; }
a:focus-visible { outline: 3px solid #ef8964; outline-offset: 4px; }
.shell { max-width: 1120px; margin: 0 auto; padding: 24px 24px 64px; }
.site-header { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: #1b2523; font: 25px Georgia, serif; letter-spacing: -.04em; text-decoration: none; }
.brand img { width: 42px; height: 42px; border-radius: 13px; box-shadow: 0 8px 22px rgba(23,61,52,.16); }
.site-nav { display: flex; align-items: center; gap: 20px; color: #72807b; font-size: 14px; }
.site-nav a { text-decoration: none; }
.site-nav a:hover { color: #22594a; }
.button { display: inline-flex; min-height: 46px; align-items: center; justify-content: center; border: 1px solid #22594a; border-radius: 999px; padding: 11px 19px; background: #22594a; color: #fffdf7; font-size: 14px; font-weight: 700; text-decoration: none; }
.button.secondary { background: transparent; color: #22594a; }
.breadcrumbs { margin-top: 34px; color: #72807b; font-size: 13px; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.breadcrumbs li + li::before { content: "/"; margin-right: 8px; color: #9aa49e; }
.breadcrumbs a { color: #53625d; }
.page-hero { padding: 56px 0 48px; border-bottom: 1px solid #ddd9cd; }
.eyebrow { margin: 0 0 16px; color: #22594a; font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
h1, h2, h3 { color: #3f3659; font-family: Georgia, "Times New Roman", serif; letter-spacing: -.045em; }
h1 { max-width: 900px; margin: 0; font-size: clamp(42px, 6.5vw, 76px); line-height: 1.02; }
.lede { max-width: 760px; margin: 22px 0 0; color: #53625d; font-size: 18px; line-height: 1.7; }
.hero-note { margin: 17px 0 0; color: #72807b; font-size: 13px; line-height: 1.6; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 25px; }
.content { max-width: 860px; }
.content section { padding: 46px 0 0; }
.content h2 { margin: 0 0 16px; font-size: clamp(30px, 4vw, 44px); line-height: 1.08; }
.content h3 { margin: 0 0 8px; font-size: 24px; line-height: 1.15; }
.content p, .content li { color: #53625d; font-size: 16px; line-height: 1.75; }
.content p { margin: 0 0 14px; }
.steps { display: grid; gap: 14px; margin: 22px 0 0; padding: 0; list-style: none; counter-reset: guide-step; }
.steps li { position: relative; padding: 20px 22px 20px 66px; border: 1px solid #ddd9cd; border-radius: 18px; background: #fffdf7; counter-increment: guide-step; }
.steps li::before { position: absolute; top: 20px; left: 22px; color: #22594a; content: "0" counter(guide-step); font-size: 12px; font-weight: 800; letter-spacing: .1em; }
.steps h3 { margin: 0 0 7px; color: #22594a; font-size: 21px; }
.steps p { margin: 0; }
.callout { margin-top: 20px; padding: 18px 20px; border-left: 4px solid #ef8964; border-radius: 0 14px 14px 0; background: #fffdf7; color: #53625d; line-height: 1.7; }
.faq { display: grid; gap: 18px; }
.faq article { padding: 18px 0; border-top: 1px solid #ddd9cd; }
.faq p { margin-bottom: 0; }
.related { margin-top: 52px; padding-top: 36px; border-top: 1px solid #ddd9cd; }
.related h2 { margin: 0; color: #3f3659; font: 700 clamp(27px, 4vw, 38px)/1.1 Georgia, "Times New Roman", serif; letter-spacing: -.04em; }
.guide-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 22px; }
.guide-card { display: flex; min-height: 180px; flex-direction: column; align-items: flex-start; padding: 20px; border: 1px solid #ddd9cd; border-radius: 18px; background: #fffdf7; text-decoration: none; }
.guide-card:hover { border-color: #22594a; }
.guide-card strong { color: #22594a; font: 700 21px/1.15 Georgia, "Times New Roman", serif; }
.guide-card span { margin-top: 10px; color: #72807b; font-size: 13px; line-height: 1.6; }
.guide-card b { margin-top: auto; padding-top: 16px; color: #22594a; font-size: 13px; }
.site-footer { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; margin-top: 58px; padding-top: 22px; border-top: 1px solid #ddd9cd; color: #72807b; font-size: 13px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 16px; }
.footer-links a { color: #22594a; font-weight: 700; }

@media (max-width: 720px) {
  .shell { padding: 18px 18px 44px; }
  .site-header { align-items: flex-start; }
  .site-nav { justify-content: flex-end; gap: 12px; font-size: 12px; }
  .site-nav a:not(.button) { display: none; }
  .page-hero { padding-top: 42px; }
  .lede { font-size: 16px; }
  .guide-grid { grid-template-columns: 1fr; }
  .guide-card { min-height: 150px; }
  .site-footer { flex-direction: column; }
}