:root {
  color-scheme: light;
  font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  color: #1d2825;
  background: #f7f8f5;
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; }
button, input, select { font: inherit; }
a { color: #185f51; text-underline-offset: 3px; }
button, select { cursor: pointer; }

.shell { width: min(100% - 48px, 1120px); margin: 0 auto; }
.topbar {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid #d9ded9;
}
.brand {
  color: #18231f;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -.075em;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}
.brand-mark, .brand-dot { display: none; }
.pilot-tag { color: #59665f; font-size: 13px; font-weight: 600; white-space: nowrap; }

.intro { padding: 47px 0 32px; }
.eyebrow { margin: 0 0 12px; color: #40675a; font-size: 13px; font-weight: 700; letter-spacing: -.015em; }
.intro h1 {
  margin: 0 0 13px;
  font-size: clamp(35px, 4.5vw, 54px);
  font-weight: 800;
  letter-spacing: -.075em;
  line-height: 1.22;
}
.intro h1 em { color: inherit; font-style: normal; }
.intro > p:last-child { margin: 0; color: #607069; font-size: 15px; line-height: 1.55; }

.finder {
  display: grid;
  grid-template-columns: minmax(310px, .86fr) minmax(0, 1.14fr);
  background: #fff;
  border: 1px solid #d9ded9;
  border-radius: 12px;
  overflow: hidden;
}
.fields { min-width: 0; padding: 31px 32px 25px; background: #fff; border-right: 1px solid #e3e6e2; }
.fields label {
  display: block;
  margin: 0 0 8px;
  color: #26342e;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -.025em;
}
.fields select, .fields input, .fee-list select {
  display: block;
  width: 100%;
  min-height: 47px;
  margin: 0 0 19px;
  padding: 11px 13px;
  border: 1px solid #cbd3cd;
  border-radius: 7px;
  outline: none;
  background: #fff;
  color: #1d2825;
  font-size: 14px;
  line-height: 1.35;
}
.fields select:hover, .fields input:hover, .fee-list select:hover { border-color: #97aaa0; }
.fields select:focus-visible, .fields input:focus-visible, .fee-list select:focus-visible,
.action:focus-visible, .suggestion:focus-visible, .chip:focus-visible { outline: 3px solid #a9d6c3; outline-offset: 2px; }
.fields input::placeholder { color: #87928b; }
.field-hint { margin: -6px 0 0; color: #79867e; font-size: 12px; line-height: 1.5; }
.search-wrap { position: relative; }
.suggestions {
  position: absolute;
  z-index: 3;
  top: calc(100% - 14px);
  right: 0;
  left: 0;
  max-height: 240px;
  overflow: auto;
  background: #fff;
  border: 1px solid #bdc9c0;
  border-radius: 7px;
  box-shadow: 0 8px 24px #25382d17;
}
.suggestion {
  display: block;
  width: 100%;
  padding: 11px 13px;
  border: 0;
  border-bottom: 1px solid #eff1ed;
  background: #fff;
  color: #26342e;
  text-align: left;
  font-size: 14px;
}
.suggestion:hover, .suggestion:focus-visible { background: #f3f7f3; }
.suggestion-empty { padding: 11px 13px; color: #6c7970; font-size: 13px; }
.dong-row[hidden], .housing-row[hidden], .category-row[hidden],
.search-row[hidden], .suggestions[hidden] { display: none; }

.result { min-width: 0; min-height: 430px; padding: 32px 36px 31px; }
.result:not(:has(.badge)) { display: flex; flex-direction: column; justify-content: center; background: #fbfcfa; }
.result:not(:has(.badge)) h2 { margin-top: 0; }
.result .badge {
  display: inline-block;
  padding: 0 0 8px;
  border-bottom: 2px solid #1c6d56;
  color: #1b6b55;
  background: none;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -.01em;
}
.result .badge.warn { color: #956924; border-color: #956924; }
.result h2 {
  margin: 17px 0 12px;
  font-size: clamp(24px, 2.7vw, 32px);
  font-weight: 800;
  letter-spacing: -.06em;
  line-height: 1.36;
  overflow-wrap: anywhere;
}
.result .lead {
  max-width: 64ch;
  margin: 0 0 25px;
  color: #45564d;
  font-size: 15px;
  line-height: 1.7;
  overflow-wrap: anywhere;
}
.answer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid #dbe1db;
  border-bottom: 1px solid #dbe1db;
}
.answer-grid.single { grid-template-columns: 1fr; }
.answer-cell { min-width: 0; padding: 16px 20px 18px 0; }
.answer-cell + .answer-cell { padding-left: 20px; border-left: 1px solid #e1e5e0; }
.answer-cell strong { display: block; margin-bottom: 8px; color: #77867c; font-size: 12px; font-weight: 700; }
.answer-cell p { margin: 0; color: #25332b; font-size: 14px; font-weight: 700; line-height: 1.55; overflow-wrap: anywhere; }
.fee-list { margin: 25px 0 0; }
.fee-list h3, .fee-list label { display: block; margin: 0 0 9px; font-size: 14px; font-weight: 800; }
.fee-list select { margin: 0; }
.fee-row { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding: 10px 0; border-bottom: 1px solid #edf0eb; font-size: 13px; line-height: 1.5; }
.fee-row b { flex: none; font-size: 14px; white-space: nowrap; }
.selected-fee { margin: 9px 0 0; color: #165b46; font-size: 22px; font-weight: 800; }
.caution { margin: 21px 0 0; padding: 12px 14px; background: #f7f6ef; border-left: 3px solid #bd9d52; color: #544f3e; font-size: 13px; line-height: 1.6; }
.actions { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; margin-top: 26px; }
.action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid #1d604d;
  border-radius: 6px;
  background: #1d604d;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
}
.action:hover { background: #124f3e; border-color: #124f3e; }
.action.secondary { background: #fff; color: #1d604d; }
.action.secondary:hover { background: #f2f7f2; }
.source-note { margin: 19px 0 0; color: #7b8980; font-size: 11px; line-height: 1.65; }
.source-note a { color: inherit; }
.chips { display: flex; flex-wrap: wrap; gap: 7px; }
.chip { padding: 7px 10px; border: 1px solid #c9d6cc; border-radius: 6px; background: #fff; color: #365849; font-size: 12px; }
.chip:hover, .chip.active { background: #1d604d; border-color: #1d604d; color: #fff; }

main { padding-bottom: 55px; }
footer { padding: 20px 0 30px; border-top: 1px solid #d9ded9; color: #758179; font-size: 12px; }
footer a { color: inherit; }
.report { max-width: 780px; margin: 44px auto 66px; line-height: 1.75; }
.report h1 { font-size: clamp(28px, 5vw, 38px); letter-spacing: -.06em; }
.report h2 { margin-top: 36px; font-size: 22px; }
.report li { margin: 12px 0; color: #425a50; }
.report a { overflow-wrap: anywhere; }

.district-directory { margin: 66px 0 0; padding-top: 36px; border-top: 1px solid #d9ded9; }
.directory-head h2, .disposal-steps h2 { margin: 0 0 9px; font-size: clamp(25px, 3vw, 32px); letter-spacing: -.055em; }
.directory-head > p:last-child { margin: 0 0 23px; color: #596960; font-size: 14px; line-height: 1.65; }
.district-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 9px; }
.district-grid a { display: flex; flex-direction: column; gap: 3px; min-height: 74px; padding: 12px 14px; border: 1px solid #d8dfd9; border-radius: 8px; background: #fff; color: #21382d; text-decoration: none; }
.district-grid a:hover, .district-grid a:focus-visible { border-color: #1d604d; background: #f3f8f4; }
.district-grid strong { font-size: 15px; }
.district-grid span { color: #6e7e72; font-size: 11px; }
.directory-note { margin: 17px 0 0; color: #6b776f; font-size: 12px; line-height: 1.65; }
.disposal-steps { margin-top: 54px; padding: 28px; border-radius: 10px; background: #eef4ee; }
.disposal-steps ol { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; padding: 0; margin: 24px 0 16px; list-style: none; counter-reset: steps; }
.disposal-steps li { display: flex; flex-direction: column; gap: 5px; color: #506156; font-size: 13px; line-height: 1.55; counter-increment: steps; }
.disposal-steps li strong::before { content: counter(steps) '. '; color: #1d604d; }
.disposal-steps li strong { color: #21382d; font-size: 15px; }
.disposal-steps > p { margin: 0; color: #748176; font-size: 12px; }

.district-page { max-width: 920px; margin: 0 auto; }
.breadcrumb { display: flex; gap: 10px; align-items: center; margin: 24px 0 35px; color: #6b786e; font-size: 12px; }
.breadcrumb a { color: inherit; }
.district-hero { padding-bottom: 40px; border-bottom: 1px solid #d9ded9; }
.district-hero h1 { margin: 9px 0 15px; font-size: clamp(34px, 5vw, 52px); letter-spacing: -.075em; line-height: 1.18; }
.district-hero > p:not(.eyebrow, .service-note) { max-width: 660px; margin: 0; color: #596960; font-size: 16px; line-height: 1.65; }
.service-note { margin: 16px 0 0; padding: 13px 15px; border-left: 3px solid #bd9d52; background: #f7f6ef; color: #574f3e; font-size: 13px; }
.item-jump { display: flex; flex-wrap: wrap; gap: 8px; margin: 26px 0 55px; }
.item-jump a { padding: 8px 13px; border: 1px solid #cbd7cd; border-radius: 99px; color: #285744; font-size: 13px; text-decoration: none; }
.item-jump a:hover { background: #eef4ee; }
.fees-intro h2, .district-extra h2, .district-sources h2 { margin: 0 0 10px; font-size: 27px; letter-spacing: -.05em; }
.fees-intro p, .district-extra p { margin: 0; color: #5b685f; font-size: 14px; line-height: 1.7; }
.fee-category { margin: 35px 0 0; padding: 27px; border: 1px solid #d9ded9; border-radius: 10px; background: #fff; scroll-margin-top: 20px; }
.fee-category h3 { margin: 0 0 6px; font-size: 22px; letter-spacing: -.045em; }
.fee-category h3 small { margin-left: 5px; color: #748176; font-size: 12px; font-weight: 600; letter-spacing: 0; }
.fee-category > p { margin: 0 0 21px; color: #657268; font-size: 13px; line-height: 1.6; }
.fee-table { overflow-x: auto; }
.fee-table table { width: 100%; border-collapse: collapse; text-align: left; table-layout: fixed; }
.fee-table caption { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.fee-table th { padding: 10px 8px; border-bottom: 2px solid #d3dfd5; color: #5d7061; font-size: 12px; }
.fee-table td { padding: 10px 8px; border-bottom: 1px solid #ecf0eb; color: #2a3930; font-size: 13px; line-height: 1.5; overflow-wrap: anywhere; }
.fee-table th:last-child, .fee-table td:last-child { width: 100px; text-align: right; white-space: nowrap; font-weight: 700; }
.fee-try { display: inline-block; margin-top: 18px; color: #1b604b; font-size: 13px; font-weight: 700; }
.district-extra, .district-sources { margin-top: 44px; padding-top: 37px; border-top: 1px solid #d9ded9; }
.district-extra ol { padding-left: 22px; color: #34453a; font-size: 14px; line-height: 1.85; }
.district-extra > a { display: inline-block; margin-top: 13px; font-size: 13px; }
.district-sources ul { padding-left: 20px; margin: 12px 0; line-height: 1.8; }
.district-sources li { font-size: 13px; }
.district-sources > p { color: #718077; font-size: 12px; line-height: 1.6; }
.related-links { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; margin-top: 44px; font-size: 14px; font-weight: 700; }

@media (max-width: 760px) {
  .shell { width: min(100% - 32px, 540px); }
  .topbar { min-height: 58px; }
  .brand { font-size: 18px; }
  .pilot-tag { font-size: 11px; }
  .intro { padding: 29px 0 23px; }
  .eyebrow { margin-bottom: 8px; font-size: 12px; }
  .intro h1 { margin-bottom: 8px; font-size: clamp(30px, 8vw, 39px); }
  .intro > p:last-child { font-size: 14px; }
  .finder { grid-template-columns: minmax(0, 1fr); border-radius: 9px; }
  .fields { padding: 21px 19px 16px; border-right: 0; border-bottom: 1px solid #e3e6e2; }
  .fields select, .fields input { min-height: 44px; margin-bottom: 15px; }
  .result { min-height: 0; padding: 24px 19px 26px; }
  .result:not(:has(.badge)) { display: block; }
  .result h2 { margin-top: 14px; font-size: 25px; }
  .result .lead { margin-bottom: 21px; font-size: 14px; }
  .answer-cell { padding: 14px 12px 15px 0; }
  .answer-cell + .answer-cell { padding-left: 12px; }
  .answer-cell p { font-size: 13px; }
  .actions { margin-top: 22px; }
  .action { min-height: 42px; }
  .chips { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: thin; padding-bottom: 4px; }
  .chip { flex: none; }
  .district-directory { margin-top: 45px; padding-top: 27px; }
  .district-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .disposal-steps { margin-top: 36px; padding: 23px 19px; }
  .disposal-steps ol { grid-template-columns: 1fr; gap: 14px; }
  .district-hero h1 { font-size: 36px; }
  .fee-category { padding: 20px 16px; }
  .fee-table th:last-child, .fee-table td:last-child { width: 82px; }
  main { padding-bottom: 35px; }
}

@media (max-width: 390px) {
  .answer-grid { grid-template-columns: 1fr; }
  .answer-cell + .answer-cell { padding-left: 0; border-left: 0; border-top: 1px solid #e1e5e0; }
  .action { width: 100%; }
}
