:root{
    --forest: #1f4d3a;
    --forest-darker: #0d2419;
    --green: #2f7a52;
    --leaf: #8fbf6f;
    --cream: #f7f6f0;
    --white: #ffffff;
    --ink: #1c2b23;
    --muted: #5c6b62;
    --gold: #e0a53c;
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  html, body{ max-width:100%; overflow-x:hidden; }
  body{
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--ink);
    background: var(--cream);
    line-height:1.7;
  }
  a{ color: var(--forest); overflow-wrap:anywhere; }
  header{
    background: rgba(31,77,58,0.97);
    color: var(--white);
  }
  .nav{
    display:flex; align-items:center; justify-content:space-between;
    padding:16px 24px; gap:12px;
    max-width:900px; margin:0 auto;
  }
  .brand{ display:flex; align-items:center; gap:12px; min-width:0; }
  .brand-name{ font-family:'Georgia', serif; font-size:20px; font-weight:700; min-width:0; }
  .brand-name span{ display:block; font-family:system-ui; font-size:11px; font-weight:400; opacity:.75; letter-spacing:1px; text-transform:uppercase;}
  .logo-icon{ width:40px; height:40px; flex-shrink:0; }
  .back-link{ font-size:14px; font-weight:600; color: var(--white); opacity:.85; flex-shrink:0; white-space:nowrap; }
  main{ max-width:760px; margin:0 auto; padding:64px 24px 96px; }
  h1{ font-family:'Georgia', serif; font-size:32px; color: var(--forest-darker); margin-bottom:8px; }
  .updated{ color: var(--muted); font-size:13px; margin-bottom:40px; }
  h2{ font-family:'Georgia', serif; font-size:20px; color: var(--forest-darker); margin:36px 0 12px; }
  p{ margin-bottom:12px; font-size:15px; overflow-wrap:anywhere; }
  ul{ margin:0 0 12px 20px; font-size:15px; }
  li{ margin-bottom:6px; overflow-wrap:anywhere; }
  @media (max-width:480px){
    .brand-name{ font-size:16px; }
    .brand-name span{ display:none; }
    .logo-icon{ width:34px; height:34px; }
    .back-link{ font-size:12.5px; }
  }
  footer{
    background: var(--forest-darker);
    color: rgba(255,255,255,0.55);
    text-align:center;
    padding:28px 0;
    font-size:13px;
  }
  footer a{ color: rgba(255,255,255,0.8); font-weight:600; }
  footer .footer-sep{ opacity:.4; margin:0 2px; }
