:root {
  --ink: #13231e;
  --muted: #52655e;
  --paper: #f3f0e7;
  --paper-deep: #e7e1d2;
  --forest: #11261f;
  --moss: #587a62;
  --gold: #d9ae58;
  --line: rgba(17, 38, 31, 0.18);
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

a { color: inherit; text-underline-offset: 0.22em; }
a:hover { text-decoration-thickness: 2px; }
a:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; border-radius: 2px; }
.skip-link { position: fixed; top: 0.75rem; left: 0.75rem; z-index: 10; padding: 0.7rem 1rem; color: white; background: var(--forest); transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }

.site-header, main, footer { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; }
.site-header { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; border-bottom: 1px solid var(--line); }
.brand { display: inline-flex; align-items: center; gap: 0.7rem; font-weight: 750; text-decoration: none; letter-spacing: -0.02em; }
.site-header nav { display: flex; gap: 1.25rem; font-size: 0.94rem; }

.hero { max-width: 900px; padding: clamp(5rem, 11vw, 9rem) 0 clamp(4rem, 8vw, 7rem); }
.eyebrow { margin: 0 0 1rem; color: var(--moss); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; }
h1, h2, h3 { margin-top: 0; line-height: 1.08; letter-spacing: -0.04em; }
h1 { max-width: 14ch; margin-bottom: 1.5rem; font-family: ui-serif, Georgia, serif; font-size: clamp(2.8rem, 8vw, 6.4rem); font-weight: 500; }
h2 { font-family: ui-serif, Georgia, serif; font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 500; }
h3 { margin-bottom: 0.5rem; font-size: 1.25rem; }
p { margin-top: 0; }
.lede { max-width: 68ch; color: var(--muted); font-size: clamp(1.08rem, 2vw, 1.3rem); }
.primary-link { display: inline-flex; min-height: 44px; align-items: center; gap: 0.45rem; margin-top: 1rem; font-weight: 750; }
.primary-link span { transition: transform 180ms ease; }
.primary-link:hover span { transform: translateX(0.25rem); }

.trust-strip { display: grid; grid-template-columns: repeat(3, 1fr); border-block: 1px solid var(--line); }
.trust-strip div { padding: 1.5rem; border-left: 1px solid var(--line); }
.trust-strip div:first-child { border-left: 0; padding-left: 0; }
.trust-strip strong, .trust-strip span { display: block; }
.trust-strip span { color: var(--muted); font-size: 0.9rem; }

.process { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(3rem, 8vw, 8rem); padding: clamp(5rem, 10vw, 9rem) 0; }
.section-intro p:last-child { color: var(--muted); }
.steps { margin: 0; padding: 0; list-style: none; }
.steps li { display: grid; grid-template-columns: 3.5rem 1fr; gap: 1rem; padding: 1.5rem 0; border-top: 1px solid var(--line); }
.steps li:last-child { border-bottom: 1px solid var(--line); }
.step-number { color: var(--moss); font-variant-numeric: tabular-nums; font-weight: 800; }
.steps p { margin-bottom: 0; color: var(--muted); }

.boundary { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(3rem, 8vw, 8rem); margin-bottom: clamp(5rem, 10vw, 9rem); padding: clamp(2rem, 5vw, 4rem); color: #f7f3e9; background: var(--forest); }
.boundary .eyebrow { color: #b7cbbd; }
.boundary-copy { color: #d9e3dd; }
.boundary-copy p:last-child { margin-bottom: 0; }

.policy-layout { max-width: 900px; }
.policy-header { padding: clamp(4rem, 9vw, 8rem) 0 clamp(2rem, 4vw, 4rem); border-bottom: 1px solid var(--line); }
.policy-header h1 { font-size: clamp(3rem, 7vw, 5.5rem); }
.policy { padding: 1.5rem 0 clamp(5rem, 10vw, 9rem); }
.policy section { display: grid; grid-template-columns: 0.65fr 1.35fr; gap: 2rem; padding: 2rem 0; border-bottom: 1px solid var(--line); }
.policy h2 { font-family: inherit; font-size: 1.1rem; font-weight: 800; letter-spacing: -0.02em; }
.policy p { color: var(--muted); }

footer { display: flex; justify-content: space-between; gap: 2rem; padding: 2rem 0 4rem; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.9rem; }

@media (max-width: 760px) {
  .site-header { align-items: flex-start; padding: 1rem 0; }
  .site-header nav { flex-direction: column; gap: 0.35rem; text-align: right; }
  .trust-strip, .process, .boundary, .policy section { grid-template-columns: 1fr; }
  .trust-strip div, .trust-strip div:first-child { padding: 1.15rem 0; border-left: 0; border-top: 1px solid var(--line); }
  .trust-strip div:first-child { border-top: 0; }
  .process, .boundary { gap: 2rem; }
  footer { flex-direction: column; gap: 0.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}
