*{box-sizing:border-box} body{margin:0;font:16px/1.5 system-ui,-apple-system,Segoe UI,Roboto}
.container{max-width:780px;margin:40px auto;padding:0 16px}
.hero{margin:24px 0}
h1{font-size:clamp(22px,4vw,36px);font-weight:700}
.counter{font-variant-numeric:tabular-nums}
.stats{margin:8px 0 18px;color:#333}
.stats div{margin:4px 0}
.incidents{list-style:none;padding:0;margin:24px 0}
.incident{padding:14px 0;border-bottom:1px solid #eee}
.headline{font-weight:600}
.date{opacity:.8}
.meta{color:#555;margin-top:4px}
.tag{display:inline-block;padding:2px 8px;border:1px solid #ddd;border-radius:999px;font-size:12px}
.tag.suburb{border-color:#bbb;background:#f7f7f7}
.tags{margin-right:6px}
.form label{display:block;margin:12px 0}
input,button{padding:10px 12px;font:inherit}
input{width:100%;border:1px solid #ccc;border-radius:6px}
button{border:0;border-radius:6px;background:#111;color:#fff;cursor:pointer}
.footer{max-width:780px;margin:40px auto;padding:0 16px;color:#666}
a{color:#0a58ca;text-decoration:none} a:hover{text-decoration:underline}
.center{text-align:center}
.big-number{
  font-weight:800;
  line-height:0.9;
  letter-spacing:-0.02em;
  font-variant-numeric:tabular-nums;
  font-size:clamp(72px,16vw,220px);
  margin:10px 0 8px;
}
.subheading{
  font-size:clamp(16px,2.8vw,28px);
  opacity:.9;
}
/* optional: tighten spacing for centered stats */
.stats.center div{margin:4px 0}


/* --- Cartoon Bin --- */
/* --- Accurate Cartoon Bin v3 (true checkerboard + higher label) --- */
:root {
  --bin-navy: #1a1f4a;
  --bin-navy-top: #262c6a;
  --bin-slot: #06081a;
  --bin-blue: #2b4dff;
  --bin-label: #ffffff;
}

.bin {
  width: clamp(280px, 70vw, 520px);
  aspect-ratio: 7 / 8;
  margin: 20px auto 30px;
  position: relative;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--bin-navy-top) 0%, var(--bin-navy) 70%);
  box-shadow:
    0 10px 20px rgba(0,0,0,.25),
    inset 0 -10px 20px rgba(0,0,0,.25);
  overflow: hidden;
}

/* top slot */
.bin-slot {
  position: absolute;
  top: 7%;
  left: 12%;
  right: 12%;
  height: 4%;
  background: var(--bin-slot);
  border-radius: 2px;
  box-shadow: inset 0 -2px 4px rgba(255,255,255,.08);
}

/* white label — moved upward */
.bin-label {
  position: absolute;
  top: 42%; /* was 50%, moved up */
  left: 15%;
  right: 15%;
  transform: translateY(-50%);
  background: var(--bin-label);
  border-radius: 6px;
  border: 1px solid rgba(0,0,0,.15);
  padding: clamp(14px, 3vw, 24px) clamp(10px, 3vw, 20px);
  text-align: center;
  box-shadow:
    0 2px 6px rgba(0,0,0,.15),
    0 10px 20px rgba(0,0,0,.12);
}

/* big number + caption */
.bin-number {
  font-weight: 800;
  font-size: clamp(72px, 16vw, 160px);
  margin: 0 0 8px;
  color: #000;
  line-height: 1;
}

.bin-caption {
  font-size: clamp(14px, 2.4vw, 20px);
  color: #222;
}

/* raise the label a touch */
.bin-label{
  top: 45%;                 /* was 42–50% before */
  transform: translateY(-50%);
}

/* ✅ true checkerboard (blue/white), exactly 3 rows */
:root{
  --sq: 60px;               /* square size; tweak to taste */
  --checker-blue:#2b4dff;
}

.bin-checker{
  position:absolute;
  left:0; right:0;
  bottom:5%;
  height: calc((var(--sq) /2)*3);    /* exactly 3 rows */
  /* classic checker pattern (axis-aligned squares) */
  background:
    linear-gradient(45deg, var(--checker-blue) 25%, transparent 25%) 0 0 / var(--sq) var(--sq) repeat,
    linear-gradient(-45deg, var(--checker-blue) 25%, transparent 25%) 0 calc(var(--sq)/2) / var(--sq) var(--sq) repeat,
    linear-gradient(45deg, transparent 75%, var(--checker-blue) 75%) calc(var(--sq)/2) calc(-1 * var(--sq)/2) / var(--sq) var(--sq) repeat,
    linear-gradient(-45deg, transparent 75%, var(--checker-blue) 75%) calc(-1 * var(--sq)/2) 0 / var(--sq) var(--sq) repeat,
    #fff; /* base white */
  border-top: 0px solid rgba(0,0,0,.2);
  border-bottom: 0px solid rgba(0,0,0,.2);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.3);
}

/* Mobile override */
@media (max-width: 640px){
  :root{ --sq: 40px; }        /* smaller squares on mobile */
}


/* subtle base feet */
.bin::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 7%;
  width: 86%;
  height: 4%;
  background: #0c0e2e;
  border-radius: 1px;
}


