
:root{
  --paper:#ffffff;
  --ink:#1f1f1f;
  --ink-soft:#3c3c3c;
  --green:#123b2d;
  --green-deep:#0f3025;
  --green-soft:#255444;
  --gold:#c8a24a;
  --gold-soft:#d7b56a;
  --line:#dfe7e1;
  --panel:#f7faf8;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:#e8ece9;
  color:var(--ink);
  font-family:Arial, Helvetica, sans-serif;
  -webkit-font-smoothing:antialiased;
}
.document-shell{
  width:min(210mm,100%);
  margin:0 auto;
}
.cover-page,
.back-cover,
.statement-page{
  position:relative;
  width:210mm;
  min-height:297mm;
  margin:14px auto;
  background:var(--paper);
  box-shadow:0 10px 28px rgba(18,59,45,.10);
}
.image-cover{overflow:hidden;padding:0;background:#fff;}
.image-cover img{display:block;width:100%;height:100%;min-height:297mm;object-fit:cover;}
.statement-page{
  padding:20mm 18mm 24mm 21mm;
  background:#fff;
}
.statement-page::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:14mm;
  width:3.2mm;
  background:var(--green);
}
.statement-page::after{
  content:"";
  position:absolute;
  left:3.2mm;
  top:0;
  bottom:14mm;
  width:1px;
  background:var(--gold);
}
.content{padding:2mm 0 16mm}
.section-kicker{
  color:var(--gold);
  font-size:8px;
  font-weight:800;
  letter-spacing:.22em;
  margin-bottom:7px;
  text-transform:uppercase;
}
h2{
  margin:0;
  color:var(--green-deep);
  font-family:Georgia,"Times New Roman",serif;
  font-size:25px;
  line-height:1.16;
}
.gold-rule{
  width:24mm;
  height:2px;
  background:var(--gold);
  margin:5mm 0 8mm;
}
p{
  margin:0 0 3.1mm;
  color:var(--ink-soft);
  font-size:8.55px;
  line-height:1.64;
}
.subsection{
  margin:0 0 6.6mm;
  break-inside:avoid;
}
.subsection h3{
  margin:0 0 3mm;
  padding:0 0 2.3mm;
  border-bottom:1px solid var(--line);
  color:var(--green-deep);
  font-size:12px;
  line-height:1.35;
}
.sub-number{
  color:var(--gold);
  display:inline-block;
  min-width:14mm;
  font-weight:800;
}
ul{
  margin:0 0 3.2mm 5.4mm;
  padding:0;
}
li{
  margin:0 0 1.8mm;
  color:var(--ink-soft);
  font-size:8.45px;
  line-height:1.55;
}
.toc-table{
  width:100%;
  border-collapse:collapse;
  margin:2mm 0 9mm;
  font-size:8.5px;
  background:#fff;
  border:1px solid var(--line);
}
.toc-table th{
  background:var(--green-deep);
  color:#fff;
  text-align:left;
  padding:3mm 3.5mm;
  border-bottom:2px solid var(--gold);
}
.toc-table td{
  color:var(--ink-soft);
  padding:2.7mm 3.5mm;
  border-bottom:1px solid var(--line);
}
.toc-table tr:last-child td{border-bottom:0}
.toc-table td:first-child{width:21mm;color:var(--gold);font-weight:800;}
.toc-table a{color:var(--ink-soft);text-decoration:none;}
.status-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  border:1px solid var(--line);
  background:#fff;
}
.status-grid div{
  padding:4mm;
  min-height:20mm;
  border-right:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.status-grid div:nth-child(2n){border-right:0}
.status-grid div:nth-last-child(-n+2){border-bottom:0}
.status-grid span{
  display:block;
  margin-bottom:4px;
  color:var(--gold);
  font-size:6.8px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.status-grid strong{
  color:var(--green-deep);
  font-size:8.2px;
  line-height:1.4;
}
.notice-box, .contact-box, .summary-box{
  margin:4mm 0 0;
  padding:4mm;
  border-left:3px solid var(--gold);
  background:var(--panel);
}
.notice-box p, .contact-box p, .summary-box p{margin-bottom:2.4mm}
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:5mm;
  margin-top:3mm;
}
.contact-card{
  border:1px solid var(--line);
  background:#fff;
  padding:4mm;
}
.contact-card h4{
  margin:0 0 2mm;
  color:var(--green-deep);
  font-size:10px;
  line-height:1.4;
}
.contact-card p{margin:0 0 1.8mm;font-size:8.3px}
.web-footer{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  min-height:14mm;
  padding:4mm 18mm 3.2mm;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:4mm;
  background:var(--green-deep);
  border-top:1.4px solid var(--gold);
  color:#ffffff;
  font-size:6.8px;
  font-weight:700;
  letter-spacing:.18em;
  text-transform:uppercase;
}
.footer-divider{color:var(--gold);font-weight:400;}
.web-footer span:last-child{color:var(--gold-soft);}

@media print{
  body{background:#fff}
  .document-shell{width:auto;margin:0}
  .cover-page,.back-cover,.statement-page{margin:0;box-shadow:none;page-break-after:always;break-after:page;}
}
/* =========================================================
   MOBILE
   ========================================================= */
@media(max-width:850px){

  html,body{
    width:100%;
    overflow-x:hidden;
    background:#fff;
  }

  .document-shell{
    width:100%;
  }

  .cover-page,
  .back-cover{
    width:100%;
    min-height:0;
    margin:0;
    box-shadow:none;
  }

  .image-cover img{
    display:block;
    width:100%;
    height:auto;
    min-height:0;
    object-fit:contain;
  }

  .statement-page{
    width:100%;
    min-height:0;
    margin:0 0 14px;
    padding:36px 22px 78px 30px;
    box-shadow:none;
  }

  h2{
    font-size:30px;
    line-height:1.18;
  }

  p{
    font-size:15px;
    line-height:1.7;
    margin-bottom:16px;
  }

  li{
    font-size:14px;
    line-height:1.65;
    margin-bottom:10px;
  }

  .section-kicker{
    font-size:11px;
  }

  .subsection h3{
    font-size:18px;
    line-height:1.4;
  }

  .toc-table{
    font-size:13px;
    display:block;
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
  }

  .status-grid{
    grid-template-columns:1fr;
  }

  .status-grid div{
    border-right:0;
    border-bottom:1px solid var(--line) !important;
  }

  .status-grid span{
    font-size:11px;
  }

  .status-grid strong{
    font-size:14px;
  }

  .contact-grid{
    grid-template-columns:1fr;
  }

  .contact-card h4{
    font-size:16px;
  }

  .contact-card p{
    font-size:14px;
  }

  .notice-box,
  .contact-box,
  .summary-box{
    padding:16px;
  }

  .web-footer{
    font-size:8px;
    line-height:1.4;
    flex-wrap:wrap;
    text-align:center;
  }
}

/* COMMON SITE SHELL OFFSET */
.ac-shell-offset{
  height:var(--ac-shell-header-h,76px);
}
@media print{
  .ac-shell-offset{
    display:none !important;
  }
}
