:root{
  --dark-green:#1a2e1a;
  --mid-green:#2d4a2d;
  --light-green:#3d6b3d;
  --cream:#f5f0e8;
  --off-white:#faf8f4;
  --warm-yellow:#e8a830;
  --amber:#c98820;
  --text-dark:#1a1a14;
  --text-mid:#3a3a2a;
  --text-light:#6a6a5a;
  --font-heading:'Playfair Display',Georgia,serif;
  --font-body:'DM Sans','Helvetica Neue',Arial,sans-serif;
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;background:#1a2e1a}
body{
  font-family:var(--font-body);
  background:var(--off-white);
  color:var(--text-dark);
  line-height:1.7;
  min-height:100vh;
  display:flex;
  flex-direction:column;
}
a{color:var(--light-green);text-decoration:none}
a:hover{color:var(--amber);text-decoration:underline}
.top-bar{
  background:var(--dark-green);
  color:#fff;
  padding:0.85rem 1.25rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  flex-wrap:wrap;
}
.top-bar a.brand{
  color:#fff;
  font-family:var(--font-heading);
  font-weight:700;
  font-size:1.15rem;
  text-decoration:none;
}
.top-bar a.back{
  color:rgba(255,255,255,.85);
  font-size:0.9rem;
  text-decoration:none;
  border:1px solid rgba(255,255,255,.25);
  padding:0.4rem 0.85rem;
  border-radius:6px;
}
.top-bar a.back:hover{background:rgba(255,255,255,.08);color:#fff;text-decoration:none}
main{
  flex:1;
  max-width:720px;
  width:100%;
  margin:0 auto;
  padding:2.5rem 1.35rem 3.5rem;
}
h1{
  font-family:var(--font-heading);
  font-size:clamp(1.75rem,4vw,2.25rem);
  color:var(--dark-green);
  margin-bottom:0.5rem;
  line-height:1.2;
}
.updated{
  color:var(--text-light);
  font-size:0.85rem;
  margin-bottom:2rem;
}
h2{
  font-family:var(--font-heading);
  font-size:1.25rem;
  color:var(--dark-green);
  margin:1.75rem 0 0.65rem;
}
p,li{color:var(--text-mid);margin-bottom:0.85rem}
ul,ol{padding-left:1.35rem;margin-bottom:1rem}
li{margin-bottom:0.4rem}
strong{color:var(--text-dark)}
.note{
  background:#fff;
  border-left:4px solid var(--warm-yellow);
  padding:1rem 1.15rem;
  border-radius:0 8px 8px 0;
  margin:1.5rem 0;
  box-shadow:0 1px 4px rgba(0,0,0,.04);
}
.contact-card{
  background:#fff;
  border-radius:12px;
  padding:1.5rem;
  box-shadow:0 2px 12px rgba(0,0,0,.06);
  margin-top:1.5rem;
}
.contact-card p{margin-bottom:0.5rem}
.contact-card a{font-weight:600}
footer.legal-footer{
  background:var(--dark-green);
  color:rgba(255,255,255,.7);
  text-align:center;
  padding:1.25rem 1rem;
  font-size:0.8rem;
}
footer.legal-footer a{color:rgba(255,255,255,.85);margin:0 0.5rem}
footer.legal-footer a:hover{color:var(--warm-yellow)}
@media(max-width:600px){
  main{padding:1.75rem 1.1rem 2.5rem}
}
