:root {
  --paper: #f6f3eb;
  --ink: #18211b;
  --muted: #58645b;
  --line: #d8ddd4;
  --brand: #245a3d;
  --brand-dark: #143724;
  --card: #fffdf8;
  --accent: #d8edc9;
  --warm: #f0dfbd;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}
* { box-sizing: border-box; }
body { margin: 0; background: var(--paper); }
a { color: var(--brand); text-underline-offset: .18em; }
a:hover { color: var(--brand-dark); }
a:focus-visible, .button:focus-visible { outline: 3px solid #f2a65a; outline-offset: 3px; }
.skip { position: absolute; left: -10000px; top: 1rem; background: #fff; padding: .75rem 1rem; z-index: 10; }
.skip:focus { left: 1rem; }
.site-header { border-bottom: 1px solid var(--line); background: rgba(246,243,235,.96); }
.nav { width: min(1120px, calc(100% - 2rem)); margin: auto; min-height: 72px; display: flex; align-items: center; gap: 1.25rem; }
.brand { display: inline-flex; align-items: center; gap: .6rem; color: var(--ink); font-weight: 750; font-size: 1.18rem; text-decoration: none; margin-right: auto; }
.brand-mark { width: 39px; height: 30px; object-fit: contain; display: block; }
.nav-links { display: flex; align-items: center; flex-wrap: wrap; gap: 1rem; }
.nav-links a { color: var(--muted); font-weight: 600; text-decoration: none; }
.button { display: inline-block; border-radius: 999px; background: var(--brand); color: white; text-decoration: none; padding: .72rem 1.05rem; font-weight: 700; }
.button:hover { color: white; background: var(--brand-dark); }
.button.secondary { color: var(--brand); background: transparent; border: 1px solid var(--brand); }
.shell { width: min(1060px, calc(100% - 2rem)); margin: auto; }
.hero { padding: clamp(4rem, 10vw, 7.5rem) 0 4rem; max-width: 800px; }
.eyebrow { color: var(--brand); font-weight: 750; text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; }
h1, h2, h3 { font-family: "Manrope", system-ui, sans-serif; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 7vw, 5.2rem); letter-spacing: -.055em; margin: .45rem 0 1.1rem; }
h2 { font-size: clamp(1.65rem, 4vw, 2.55rem); letter-spacing: -.025em; margin-top: 2.5rem; }
h3 { font-size: 1.2rem; }
.lede { color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.3rem); max-width: 680px; }
.actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.6rem; }
.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; margin: 1.5rem 0 3rem; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card { background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: 1.3rem; }
.card h2, .card h3 { margin-top: 0; }
.card p:last-child { margin-bottom: 0; }
.band { background: var(--brand-dark); color: white; padding: 2.5rem; border-radius: 24px; margin: 3.5rem 0; }
.band h2 { margin-top: 0; }
.band p { color: #d9e5dc; }
.checklist li, .steps li { margin-bottom: .65rem; }
.price { font-family: "Manrope", sans-serif; font-size: 2.3rem; font-weight: 750; }
.price small { font: 500 1rem "DM Sans", sans-serif; color: var(--muted); }
.notice { border-left: 4px solid var(--brand); background: var(--accent); padding: 1rem 1.2rem; border-radius: 0 12px 12px 0; }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; background: var(--card); }
th, td { text-align: left; padding: .8rem; border: 1px solid var(--line); vertical-align: top; }
th { background: #e9eee6; }
blockquote { margin: 2rem 0; padding: .5rem 1.5rem; border-left: 4px solid var(--brand); color: var(--muted); font-size: 1.15rem; }
.breadcrumbs { padding-top: 1.4rem; color: var(--muted); font-size: .92rem; }
.breadcrumbs ol { list-style: none; padding: 0; display: flex; gap: .5rem; flex-wrap: wrap; }
.breadcrumbs li:not(:last-child)::after { content: " /"; margin-left: .5rem; }
.prose { max-width: 780px; }
.prose p, .prose li { color: #344038; }
.cta { text-align: center; background: var(--warm); padding: 2.5rem 1.5rem; border-radius: 24px; margin: 4rem 0; }
.site-footer { border-top: 1px solid var(--line); margin-top: 5rem; padding: 2rem 0; color: var(--muted); }
.footer-links { display: flex; gap: 1rem; flex-wrap: wrap; }
address { font-style: normal; }
@media (max-width: 760px) {
  .nav { align-items: flex-start; padding: .9rem 0; }
  .nav-links a:not(.button) { display: none; }
  .grid, .grid.two { grid-template-columns: 1fr; }
  .hero { padding-top: 3.5rem; }
  .band { padding: 1.5rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; }
}
