
:root{
  --green:#0e5a39;
  --navy:#17365d;
  --red:#c92933;
  --ink:#1f2933;
  --muted:#67727e;
  --line:#e4e7ea;
  --cream:#f7f5ef;
  --white:#fff;
}
*{box-sizing:border-box}
html{font-size:16px}
body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  color:var(--ink);
  background:var(--white);
  line-height:1.6;
}
img{max-width:100%;height:auto;display:block}
a{color:var(--navy)}
.shell{width:min(1120px,calc(100% - 40px));margin:0 auto}
.site-header{background:#fff;border-bottom:1px solid var(--line)}
.header-row{display:flex;align-items:center;justify-content:space-between;gap:30px;padding:16px 0}
.logo{display:block;flex:0 0 auto}
.logo img{width:310px;max-width:100%;height:auto}
.nav{display:flex;flex-wrap:wrap;justify-content:flex-end;gap:20px}
.nav a{font-size:.95rem;font-weight:700;text-decoration:none;color:#22364d}
.nav a:hover{color:var(--green)}
.hero{background:var(--cream);border-bottom:1px solid var(--line)}
.hero-inner{padding:74px 0 64px;max-width:840px}
.eyebrow{font-size:.8rem;letter-spacing:.13em;text-transform:uppercase;font-weight:800;color:var(--green)}
h1,h2,h3{font-family:Georgia,"Times New Roman",serif;color:#17365d;line-height:1.12;margin-top:0}
h1{font-size:clamp(2.5rem,6vw,5rem);letter-spacing:-.03em;margin-bottom:20px}
h2{font-size:clamp(1.7rem,3vw,2.4rem);margin-bottom:14px}
h3{font-size:1.3rem;margin-bottom:8px}
.lead{font-size:1.2rem;color:#4f5b67;max-width:760px}
.actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:26px}
.btn{display:inline-block;padding:12px 18px;border-radius:6px;text-decoration:none;font-weight:800;border:2px solid var(--green)}
.btn-primary{background:var(--green);color:#fff}
.btn-light{background:#fff;color:var(--green)}
.section{padding:56px 0}
.section.alt{background:#fafafa}
.grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.card{border:1px solid var(--line);border-radius:10px;padding:24px;background:#fff}
.card p{margin-bottom:0;color:#55606b}
.link-list{display:grid;grid-template-columns:repeat(2,1fr);gap:18px}
.link-card{border:1px solid var(--line);border-radius:10px;padding:22px;text-decoration:none;background:#fff}
.link-card:hover{border-color:#c8d0d6}
.page-head{padding:54px 0 40px;border-bottom:1px solid var(--line);background:var(--cream)}
.page-head .lead{max-width:760px}
.copy{max-width:800px}
.copy p{margin:0 0 18px}
.callout{border-left:4px solid var(--green);background:#f5faf7;padding:22px 24px}
.site-footer{border-top:1px solid var(--line);padding:30px 0;background:#17365d;color:#fff}
.footer-row{display:flex;justify-content:space-between;gap:30px;align-items:center}
.site-footer a{color:#fff;text-decoration:none}
.footer-links{display:flex;gap:18px;flex-wrap:wrap}
.muted{color:#d3dbe4;font-size:.92rem}
@media(max-width:900px){
  .header-row{align-items:flex-start;flex-direction:column}
  .nav{justify-content:flex-start;gap:14px 18px}
  .grid{grid-template-columns:1fr}
  .link-list{grid-template-columns:1fr}
}
@media(max-width:600px){
  .shell{width:min(100% - 28px,1120px)}
  .logo img{width:250px}
  .hero-inner{padding:48px 0 44px}
  .section{padding:42px 0}
  .actions{flex-direction:column}
  .btn{text-align:center;width:100%}
  .footer-row{flex-direction:column;align-items:flex-start}
}
