:root {
  --ink: #17231f;
  --muted: #52635d;
  --paper: #f6f4ee;
  --card: #fffdf7;
  --forest: #174f3a;
  --forest-dark: #0f3829;
  --gold: #bf9050;
  --line: #d8d9cf;
  --shadow: 0 18px 45px rgba(20, 45, 34, .08);
}
* { 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: var(--forest); text-underline-offset: 3px; }
.site-header, main, footer { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.site-header { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 28px; border-bottom: 1px solid var(--line); }
.brand { color: var(--ink); text-decoration: none; font-family: Georgia, serif; font-size: 1.25rem; font-weight: 700; letter-spacing: -.02em; }
.brand span { color: var(--forest); font-family: Inter, sans-serif; font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin-left: .4rem; }
nav { display: flex; align-items: center; gap: 24px; }
nav > a { color: var(--ink); text-decoration: none; font-size: .92rem; font-weight: 650; }
nav > a[aria-current="page"] { color: var(--forest); text-decoration: underline; text-decoration-color: var(--gold); text-decoration-thickness: 2px; }
.button { display: inline-flex; align-items: center; justify-content: center; padding: 13px 20px; border-radius: 999px; background: var(--forest); color: white; text-decoration: none; font-weight: 750; box-shadow: var(--shadow); }
.button:hover { background: var(--forest-dark); }
.button.small { padding: 9px 15px; font-size: .84rem; }
.text-link { font-weight: 750; text-decoration: none; }
.hero { padding: 110px 0 92px; max-width: 930px; }
.hero.compact { padding-bottom: 65px; }
.eyebrow, .number { color: var(--gold); font-size: .78rem; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; letter-spacing: -.035em; line-height: 1.08; }
h1 { margin: 14px 0 24px; font-size: clamp(3.1rem, 8vw, 6.8rem); font-weight: 500; }
h2 { margin: 8px 0 16px; font-size: clamp(1.8rem, 4vw, 3.15rem); font-weight: 500; }
.lead { max-width: 780px; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.3rem); }
.actions { margin-top: 32px; display: flex; align-items: center; flex-wrap: wrap; gap: 24px; }
.grid { display: grid; gap: 20px; }
.grid.three { grid-template-columns: repeat(3, 1fr); }
.card { padding: 34px; border: 1px solid var(--line); border-radius: 22px; background: var(--card); box-shadow: var(--shadow); }
.card h2 { font-size: 1.8rem; }
.card p:last-child { color: var(--muted); }
.split { margin: 110px 0; display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: start; }
.feature-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.feature-list li { display: grid; grid-template-columns: 160px 1fr; gap: 22px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.feature-list span { color: var(--muted); }
.contact-panel { margin: 80px 0 110px; padding: 46px; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; border-radius: 28px; background: var(--forest); color: white; }
.contact-panel .eyebrow { color: #e7c391; }
.contact-panel a { color: white; }
.contact-panel .button { background: white; color: var(--forest); }
.document { max-width: 860px; padding: 86px 0 100px; }
.document h1 { font-size: clamp(3rem, 7vw, 5rem); }
.document h2 { margin-top: 44px; font-family: Inter, sans-serif; font-size: 1.25rem; font-weight: 800; letter-spacing: -.01em; }
.document p, .document li { color: #34453f; }
footer { padding: 28px 0 42px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: .9rem; }
@media (max-width: 820px) {
  .site-header { padding: 18px 0; align-items: flex-start; }
  nav { justify-content: flex-end; flex-wrap: wrap; gap: 12px 16px; }
  nav .button { display: none; }
  .brand span { display: block; margin: 2px 0 0; }
  .hero { padding: 72px 0 60px; }
  .grid.three, .split, .contact-panel { grid-template-columns: 1fr; }
  .split { margin: 75px 0; gap: 32px; }
  .feature-list li { grid-template-columns: 1fr; gap: 5px; }
}
@media (max-width: 520px) {
  .site-header, main, footer { width: min(100% - 24px, 1180px); }
  .site-header { display: block; }
  nav { margin-top: 16px; justify-content: flex-start; }
  h1 { font-size: 2.75rem; }
  .card, .contact-panel { padding: 26px; }
  footer { display: block; }
}
