/* Green Fee transparency portal — demonstration. Accessible, dependency-free.
   Contrast targets WCAG 2.1 AA (Hawaiʻi EIT Disability Access Standards). */
:root {
  --ink: #1f2a33;
  --navy: #14364f;
  --blue: #1c5d8d;
  --blue-deep: #174a70;
  --teal: #0f6b62;
  --sand: #f5f3ee;
  --paper: #ffffff;
  --border: #d5dde3;
  --gold: #8a6d1e;
  --notice-bg: #fff7dd;
  --notice-edge: #b98c00;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
}
.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--navy);
  color: #fff; padding: .6rem 1rem; z-index: 10;
}
.skip-link:focus { left: 0; }
a { color: var(--blue-deep); }
a:focus-visible, button:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.wrap { max-width: 1000px; margin: 0 auto; padding: 0 1.25rem; }
header.site {
  background: linear-gradient(140deg, var(--navy), var(--blue));
  color: #fff; padding: 3.2rem 0 2.6rem;
}
header.site a { color: #fff; }
.kicker { letter-spacing: .08em; text-transform: uppercase; font-size: .8rem; opacity: .85; margin: 0 0 .5rem; }
h1 { font-size: 2.1rem; line-height: 1.2; margin: 0 0 .6rem; }
.tagline { max-width: 46rem; font-size: 1.08rem; margin: 0; }
.meta { margin-top: .9rem; font-size: .9rem; opacity: .9; }
main { padding: 1.8rem 0 3.5rem; }
h2 { color: var(--navy); margin: 2.2rem 0 .7rem; font-size: 1.35rem; }
h3 { color: var(--navy); margin: 1.4rem 0 .4rem; }
.notice {
  background: var(--notice-bg); border-left: 5px solid var(--notice-edge);
  padding: .85rem 1.1rem; margin: 1.4rem 0; border-radius: 0 6px 6px 0;
}
.sample-chip {
  display: inline-block; background: var(--notice-bg); color: #6b5300;
  border: 1px solid var(--notice-edge); border-radius: 999px;
  font-size: .78rem; font-weight: 700; letter-spacing: .04em;
  padding: .1rem .6rem; text-transform: uppercase; vertical-align: middle;
}
.tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: .9rem; margin: 1rem 0 0; }
.tile { background: var(--sand); border: 1px solid var(--border); border-radius: 10px; padding: .9rem 1rem; }
.tile .num { display: block; font-size: 1.55rem; font-weight: 700; color: var(--navy); }
.tile .lbl { font-size: .86rem; }
table { border-collapse: collapse; width: 100%; margin: .8rem 0; }
caption { text-align: left; font-size: .9rem; padding-bottom: .4rem; color: #4a5a66; }
th, td { text-align: left; padding: .55rem .65rem; border-bottom: 1px solid var(--border); vertical-align: top; }
th { background: var(--sand); color: var(--navy); }
.table-scroll { overflow-x: auto; }
.chips { margin: .4rem 0 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: .45rem; }
.chips li {
  background: var(--sand); border: 1px solid var(--border); border-radius: 999px;
  padding: .15rem .7rem; font-size: .84rem;
}
.card { background: var(--paper); border: 1px solid var(--border); border-radius: 10px; padding: 1.1rem 1.25rem; margin: 1rem 0; }
.gate { background: var(--sand); }
.prov { font-size: .92rem; }
.prov ol { margin: .5rem 0 0; padding-left: 1.3rem; }
.prov li { margin: .25rem 0; }
.award { font-size: 1.15rem; font-weight: 700; color: var(--teal); }
.breadcrumb { font-size: .9rem; margin: 0 0 1rem; }
footer.site {
  background: var(--sand); border-top: 1px solid var(--border);
  padding: 1.4rem 0 1.8rem; font-size: .9rem;
}
footer.site p { margin: .35rem 0; }
@media (max-width: 620px) {
  h1 { font-size: 1.7rem; }
}
/* Toolkit document pages */
.doc-body { max-width: 46rem; }
.doc-body h2 { margin-top: 1.9rem; }
.docs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: .9rem; margin-top: .9rem; }
.docs-grid .card { margin: 0; }
.docs-grid h3 { margin-top: 0; }
/* Print: clean PDF via the browser; claims travel with the printout */
@media print {
  header.site { background: none; color: var(--ink); padding: 0 0 .5rem; border-bottom: 2px solid var(--navy); }
  header.site a, header.site .kicker { color: var(--ink); }
  .skip-link, .breadcrumb { display: none; }
  .notice { border: 1px solid var(--notice-edge); }
  a { color: var(--ink); text-decoration: none; }
  footer.site { border-top: 1px solid var(--border); background: none; }
}
