    :root {
      --green-950: #103f2a;
      --green-900: #154e34;
      --green-800: #176038;
      --green-700: #227843;
      --green-600: #2f8a4d;
      --green-200: #e6f2e7;
      --green-100: #f1f8ef;
      --blue-600: #1689d7;
      --blue-100: #e6f5ff;
      --amber-600: #dc8a10;
      --amber-100: #fff3df;
      --red-600: #d71938;
      --red-100: #ffeaed;
      --ink: #141715;
      --muted: #646b66;
      --line: #dfe3df;
      --surface: #ffffff;
      --soft: #f8faf8;
      --shadow: 0 10px 26px rgba(18, 54, 37, 0.14);
      --radius: 14px;
      --radius-sm: 10px;
      --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
      --font-hand: "Caveat", cursive;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      background: #fff;
    }

    body {
      margin: 0;
      color: var(--ink);
      background: #fff;
      font-family: var(--font-body);
      font-size: 14px;
      line-height: 1.45;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    img {
      display: block;
      width: 100%;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button,
    input {
      font: inherit;
    }

    button,
    a {
      -webkit-tap-highlight-color: transparent;
    }

    .shell {
      width: min(1380px, calc(100% - 40px));
      margin-inline: auto;
    }

    .wide-shell {
      width: min(1584px, calc(100% - 80px));
      margin-inline: auto;
    }

    .sr-only {
      position: absolute !important;
      width: 1px !important;
      height: 1px !important;
      padding: 0 !important;
      margin: -1px !important;
      overflow: hidden !important;
      clip: rect(0, 0, 0, 0) !important;
      white-space: nowrap !important;
      border: 0 !important;
    }

    /* ============================
       TOP BAR
       ============================ */
    .topbar {
      height: 29px;
      background: var(--green-950);
      color: #fff;
      font-size: 12px;
    }

    .topbar__inner {
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
    }

    .topbar__left,
    .topbar__right {
      display: flex;
      align-items: center;
      gap: 14px;
      min-width: 0;
    }

    .topbar__item {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      white-space: nowrap;
      color: rgba(255,255,255,.96);
    }

    .topbar__divider {
      width: 1px;
      height: 15px;
      background: rgba(255,255,255,.24);
    }

    .a11y {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-weight: 700;
      letter-spacing: .03em;
    }

    /* ============================
       MAIN HEADER / NAVIGATION
       ============================ */
    .site-header {
      height: 57px;
      background: rgba(255,255,255,.97);
      border-bottom: 1px solid rgba(20,65,42,.08);
      position: relative;
      z-index: 30;
    }

    .site-header__inner {
      height: 100%;
      display: grid;
      grid-template-columns: 288px 1fr 236px;
      align-items: center;
      gap: 28px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 11px;
      min-width: 0;
    }

    .brand__mark {
      width: 74px;
      height: 44px;
      flex: 0 0 auto;
      position: relative;
    }

    .brand__mark svg {
      width: 100%;
      height: 100%;
    }

    .brand__title {
      margin: 0;
      font-family: var(--font-display);
      font-size: 27px;
      line-height: .98;
      letter-spacing: .02em;
      font-weight: 800;
      color: #143e2a;
    }

    .brand__sub {
      margin-top: 4px;
      color: #222;
      font-size: 9.7px;
      line-height: 1.1;
      white-space: nowrap;
    }

    .main-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 25px;
      min-width: 0;
    }

    .main-nav > a,
    .main-nav > .nav-dropdown > summary {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 5px;
      height: 57px;
      font-family: var(--font-display);
      font-size: 15px;
      font-weight: 700;
      white-space: nowrap;
      cursor: pointer;
      list-style: none;
    }

    .main-nav > .nav-dropdown > summary::-webkit-details-marker {
      display: none;
    }

    .main-nav > a.active::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 2px;
      border-radius: 2px;
      background: var(--green-700);
    }

    .main-nav a:hover,
    .nav-dropdown > summary:hover {
      color: var(--green-800);
    }

    .nav-dropdown {
      position: relative;
    }

    .nav-dropdown[open] .dropdown-menu {
      display: grid;
    }

    .dropdown-menu {
      display: none;
      position: absolute;
      left: 0;
      top: 51px;
      min-width: 190px;
      padding: 8px;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 12px;
      box-shadow: var(--shadow);
      gap: 2px;
      z-index: 40;
    }

    .dropdown-menu a {
      padding: 8px 10px;
      border-radius: 8px;
      font-size: 12px;
    }

    .dropdown-menu a:hover {
      background: var(--green-100);
    }

    .header-search {
      display: flex;
      height: 32px;
      border: 1px solid #cdd5cf;
      border-radius: 7px;
      overflow: hidden;
      background: #fff;
    }

    .header-search input {
      width: 100%;
      min-width: 0;
      border: 0;
      outline: 0;
      padding: 0 12px;
      font-size: 11px;
      color: #2d332f;
    }

    .header-search button {
      width: 40px;
      border: 0;
      color: #fff;
      background: var(--green-700);
      cursor: pointer;
    }

    .mobile-menu {
      display: none;
      position: relative;
    }

    .mobile-menu > summary {
      width: 40px;
      height: 40px;
      border: 1px solid var(--line);
      border-radius: 10px;
      display: grid;
      place-items: center;
      cursor: pointer;
      list-style: none;
    }

    .mobile-menu > summary::-webkit-details-marker {
      display: none;
    }

    .mobile-menu__panel {
      position: absolute;
      top: 47px;
      right: 0;
      width: min(320px, calc(100vw - 32px));
      padding: 12px;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 14px;
      box-shadow: var(--shadow);
      display: grid;
      gap: 4px;
    }

    .mobile-menu__panel a {
      padding: 10px 11px;
      border-radius: 9px;
      font-weight: 700;
      color: #233227;
    }

    .mobile-menu__panel a:hover {
      background: var(--green-100);
    }

    /* ============================
       HERO
       ============================ */
    .hero {
      height: 305px;
      position: relative;
      overflow: hidden;
      isolation: isolate;
      background: #dfe9df;
    }

    .hero__image {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 53%;
      z-index: -4;
      filter: saturate(.94) contrast(.98);
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -3;
      background:
        linear-gradient(90deg, rgba(255,255,255,.91) 0%, rgba(255,255,255,.83) 30%, rgba(255,255,255,.40) 49%, rgba(10,40,26,.02) 74%),
        linear-gradient(0deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: auto 0 0 0;
      height: 60px;
      z-index: -2;
      background: linear-gradient(0deg, rgba(15,63,42,.06), transparent);
    }

    .hero__inner {
      height: 100%;
      display: flex;
      align-items: flex-start;
      position: relative;
      padding-top: 41px;
    }

    .hero-copy {
      width: 600px;
      position: relative;
      z-index: 2;
    }

    .eyebrow {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 8px;
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 15px;
      letter-spacing: .02em;
      color: #173122;
    }

    .eyebrow::after {
      content: "";
      width: 27px;
      height: 2px;
      background: var(--green-800);
      border-radius: 999px;
    }

    .hero h1 {
      margin: 0;
      max-width: 560px;
      font-family: var(--font-display);
      font-size: clamp(42px, 3.4vw, 53px);
      line-height: .92;
      letter-spacing: .005em;
      font-weight: 800;
      color: #111;
    }

    .hero h1 span {
      color: var(--green-900);
    }

    .hero-copy > p {
      margin: 10px 0 0;
      max-width: 510px;
      font-size: 15.5px;
      line-height: 1.42;
      color: #313633;
    }

    .hero-actions {
      display: flex;
      gap: 12px;
      margin-top: 13px;
    }

    .btn {
      min-height: 39px;
      padding: 0 19px;
      border-radius: 7px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      font-weight: 700;
      font-size: 12.5px;
      transition: .18s ease;
      border: 1px solid transparent;
    }

    .btn:hover {
      transform: translateY(-1px);
    }

    .btn--primary {
      color: #fff;
      background: linear-gradient(180deg, #2c874b, #1d6a3c);
      box-shadow: 0 6px 14px rgba(25, 99, 55, .18);
    }

    .btn--light {
      color: #173b27;
      background: rgba(255,255,255,.91);
      border-color: rgba(23,59,39,.12);
      box-shadow: 0 5px 12px rgba(35,53,41,.07);
    }

    .hero-note {
      position: absolute;
      right: 310px;
      top: 57px;
      width: 215px;
      font-family: var(--font-hand);
      font-size: 25px;
      line-height: 1.08;
      color: #fff;
      transform: rotate(-2deg);
      text-shadow: 0 2px 3px rgba(0,0,0,.42);
    }

    .hero-note::after {
      content: "";
      display: block;
      width: 87px;
      height: 3px;
      margin-top: 7px;
      border-radius: 999px;
      background: #d8f22f;
      transform: rotate(-5deg);
    }

    .water-feature {
      position: absolute;
      right: -24px;
      bottom: 0;
      width: 336px;
      height: 218px;
      border-radius: 18px 0 0 0;
      overflow: hidden;
      box-shadow: -10px 10px 25px rgba(22,48,33,.16);
    }

    .water-feature img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      filter: saturate(.9) contrast(1.03);
    }

    .water-feature::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent 5%, rgba(8,13,11,.05) 42%, rgba(4,6,5,.64) 100%);
    }

    .water-feature figcaption {
      position: absolute;
      z-index: 2;
      right: 22px;
      top: 47px;
      width: 120px;
      font-family: var(--font-hand);
      font-size: 31px;
      line-height: .95;
      color: #fff;
      text-align: left;
      text-shadow: 0 2px 4px rgba(0,0,0,.35);
    }

    /* ============================
       QUICK ACTION STRIP
       ============================ */
    .quick-strip-wrap {
      position: relative;
      z-index: 12;
      margin-top: -51px;
      margin-bottom: 7px;
    }

    .quick-strip {
      min-height: 84px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 9px;
      padding: 8px 10px;
      background: #fff;
      border-radius: 13px;
      box-shadow: 0 9px 26px rgba(18,50,33,.18);
      border: 1px solid rgba(15,66,40,.08);
    }

    .quick-card {
      min-height: 66px;
      display: grid;
      grid-template-columns: 46px 1fr 24px;
      align-items: center;
      gap: 12px;
      padding: 10px 13px;
      border-radius: 10px;
      border: 1px solid rgba(0,0,0,.015);
      transition: .18s ease;
    }

    .quick-card:hover {
      transform: translateY(-1px);
      box-shadow: 0 8px 18px rgba(17,54,34,.08);
    }

    .quick-card--green { background: linear-gradient(90deg, #eef8e9, #f7fbf5); }
    .quick-card--amber { background: linear-gradient(90deg, #fff5e2, #fffaf1); }
    .quick-card--blue  { background: linear-gradient(90deg, #e8f7ff, #f2fbff); }
    .quick-card--red   { background: linear-gradient(90deg, #ffedf0, #fff7f8); }

    .quick-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      font-size: 22px;
    }

    .quick-card--green .quick-icon { color: var(--green-700); background: #dff1dd; }
    .quick-card--amber .quick-icon { color: #c77400; background: #ffead0; }
    .quick-card--blue .quick-icon  { color: #067ec6; background: #dcefff; }
    .quick-card--red .quick-icon   { color: var(--red-600); background: #ffe0e6; }

    .quick-card h3 {
      margin: 0;
      font-family: var(--font-display);
      font-size: 19px;
      line-height: 1;
    }

    .quick-card p {
      margin: 4px 0 0;
      font-size: 11px;
      line-height: 1.25;
      color: #26302a;
    }

    .quick-arrow {
      font-size: 17px;
      color: #23382a;
      justify-self: end;
    }

    /* ============================
       CONTENT GRID
       ============================ */
    main {
      padding-bottom: 12px;
    }

    .content-grid {
      display: grid;
      grid-template-columns: minmax(0, 2.05fr) minmax(330px, 1.02fr) minmax(385px, 1.12fr);
      gap: 24px;
      align-items: start;
    }

    .section-head {
      min-height: 31px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 6px;
    }

    .section-head h2 {
      margin: 0;
      font-family: var(--font-display);
      font-size: 22px;
      line-height: 1;
      letter-spacing: .005em;
    }

    .section-link {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      color: #2a6c3e;
      font-size: 10px;
      font-weight: 800;
      white-space: nowrap;
    }

    .section-link i {
      font-size: 10px;
    }

    .news-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap: 15px;
    }

    .news-card {
      overflow: hidden;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 9px;
      min-height: 199px;
    }

    .news-card__media {
      height: 72px;
      overflow: hidden;
      position: relative;
    }

    .news-card__media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .news-card__body {
      padding: 8px 13px 9px;
    }

    .news-date {
      display: flex;
      align-items: center;
      gap: 5px;
      font-size: 9px;
      color: #555d58;
      margin-bottom: 3px;
    }

    .news-card h3 {
      margin: 0;
      min-height: 30px;
      font-family: var(--font-display);
      font-size: 16px;
      line-height: .98;
      font-weight: 800;
    }

    .news-card p {
      margin: 6px 0 6px;
      min-height: 42px;
      font-size: 10px;
      line-height: 1.28;
      color: #454d48;
    }

    .read-more {
      font-size: 9.5px;
      font-weight: 800;
      color: #2b703f;
    }

    /* services */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0,1fr));
      gap: 8px;
    }

    .service-card {
      min-height: 85px;
      padding: 9px 7px 7px;
      border: 1px solid var(--line);
      border-radius: 9px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      background: #fff;
      transition: .18s ease;
    }

    .service-card:hover {
      transform: translateY(-2px);
      border-color: #c9d7cb;
      box-shadow: 0 7px 18px rgba(23,73,45,.08);
    }

    .service-icon {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      margin-bottom: 7px;
      font-size: 18px;
    }

    .service-card:nth-child(4n+1) .service-icon { color: var(--green-700); background: #e6f3e5; }
    .service-card:nth-child(4n+2) .service-icon { color: #245fb0; background: #e9f0fc; }
    .service-card:nth-child(4n+3) .service-icon { color: #447a35; background: #eef5e8; }
    .service-card:nth-child(4n+4) .service-icon { color: #1687cc; background: #e4f3fb; }
    .service-card:nth-child(5) .service-icon { color: #d26a0a; background: #fff1df; }
    .service-card:nth-child(6) .service-icon { color: #bf1535; background: #ffe7ec; }
    .service-card:nth-child(7) .service-icon { color: #176fb5; background: #e5f3ff; }
    .service-card:nth-child(8) .service-icon { color: #d51633; background: #ffe8ec; }

    .service-card span {
      font-family: var(--font-display);
      font-size: 12px;
      line-height: 1.04;
      font-weight: 700;
    }

    /* APBDes */
    .budget-card {
      height: 199px;
      padding: 0 12px 10px;
      border: 1px solid var(--line);
      border-radius: 9px;
      background: #fff;
    }

    .budget-tabs {
      height: 30px;
      margin-inline: -12px;
      padding: 4px 5px;
      display: grid;
      grid-template-columns: repeat(3,1fr);
      background: #f5f7f5;
      border-radius: 9px 9px 0 0;
      border-bottom: 1px solid var(--line);
    }

    .budget-tab {
      display: grid;
      place-items: center;
      font-family: var(--font-display);
      font-size: 12px;
      font-weight: 700;
      color: #202621;
      border-radius: 5px;
    }

    .budget-tab.active {
      color: #fff;
      background: var(--green-700);
    }

    .budget-content {
      height: calc(100% - 30px);
      display: grid;
      grid-template-columns: 45% 55%;
      align-items: center;
    }

    .donut-wrap {
      display: grid;
      place-items: center;
      position: relative;
    }

    .donut {
      width: 144px;
      height: 144px;
      border-radius: 50%;
      background: conic-gradient(
        #176b36 0 58%,
        #168cd8 58% 80%,
        #d89022 80% 88%,
        #f28b12 88% 94%,
        #2d8a48 94% 100%
      );
      position: relative;
    }

    .donut::after {
      content: "";
      position: absolute;
      inset: 23px;
      border-radius: 50%;
      background: #fff;
      box-shadow: inset 0 0 0 1px #edf0ed;
    }

    .donut-label {
      position: absolute;
      z-index: 2;
      text-align: center;
      font-size: 10px;
      line-height: 1.14;
      color: #202420;
    }

    .donut-label strong {
      display: block;
      font-family: var(--font-display);
      font-size: 22px;
      margin-top: 4px;
    }

    .legend {
      display: grid;
      gap: 8px;
      padding-left: 6px;
    }

    .legend-row {
      display: grid;
      grid-template-columns: 11px 1fr auto;
      align-items: center;
      gap: 8px;
      font-size: 10px;
    }

    .legend-dot {
      width: 10px;
      height: 10px;
      border-radius: 3px;
    }

    .legend-row strong {
      font-size: 10px;
    }

    /* lower content */
    .lower-grid {
      display: grid;
      grid-template-columns: minmax(0, 2.05fr) minmax(330px, 1.02fr) minmax(385px, 1.12fr);
      gap: 24px;
      margin-top: 9px;
      align-items: start;
    }

    .program-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap: 15px;
    }

    .program-card {
      height: 128px;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: 9px;
      background: #fff;
    }

    .program-card img {
      width: 100%;
      height: 66px;
      object-fit: cover;
    }

    .program-card__body {
      min-height: 62px;
      display: grid;
      grid-template-columns: 38px 1fr 18px;
      align-items: center;
      gap: 8px;
      padding: 6px 9px;
    }

    .program-icon {
      width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      color: var(--green-700);
      font-size: 23px;
    }

    .program-card:first-child .program-icon { color: #0d8ce2; }

    .program-card h3 {
      margin: 0;
      font-family: var(--font-display);
      font-size: 16px;
      line-height: 1;
    }

    .program-card p {
      margin: 4px 0 0;
      font-size: 9.2px;
      line-height: 1.25;
      color: #49504b;
    }

    .data-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap: 8px;
    }

    .data-card {
      height: 64px;
      display: grid;
      grid-template-columns: 52px 1fr;
      align-items: center;
      gap: 9px;
      border-radius: 9px;
      padding: 6px 8px;
      border: 1px solid rgba(0,0,0,.015);
    }

    .data-card:nth-child(1) { background: #e9f4df; }
    .data-card:nth-child(2) { background: #e1f1fb; }
    .data-card:nth-child(3) { background: #fff5df; }
    .data-card:nth-child(4) { background: #ffe8e7; }

    .data-icon {
      width: 45px;
      height: 45px;
      display: grid;
      place-items: center;
      font-size: 28px;
    }

    .data-card:nth-child(1) .data-icon { color: #287c3d; }
    .data-card:nth-child(2) .data-icon { color: #1b86cf; }
    .data-card:nth-child(3) .data-icon { color: #d1780a; }
    .data-card:nth-child(4) .data-icon { color: #b51635; }

    .data-value {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 20px;
      line-height: .9;
    }

    .data-label {
      margin-top: 3px;
      font-size: 9.5px;
      line-height: 1.1;
    }

    .map-card {
      height: 132px;
      position: relative;
      overflow: hidden;
      border-radius: 9px;
      border: 1px solid var(--line);
      background: #305b43;
      isolation: isolate;
    }

    .map-card::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -3;
      background-image: var(--boto-map-background, none);
      background-size: cover;
      background-position: center;
      filter: saturate(.65) brightness(.64) contrast(1.05);
    }

    .map-card::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -2;
      background: rgba(18,63,38,.25);
    }

    .map-svg {
      position: absolute;
      inset: 11px 25px 9px 50px;
      width: calc(100% - 75px);
      height: calc(100% - 20px);
      filter: drop-shadow(0 1px 1px rgba(0,0,0,.25));
    }

    .map-badge {
      position: absolute;
      left: 7px;
      top: 9px;
      display: grid;
      gap: 2px;
    }

    .map-badge span,
    .map-fullscreen {
      width: 24px;
      height: 24px;
      display: grid;
      place-items: center;
      border-radius: 4px;
      background: rgba(255,255,255,.92);
      color: #17221b;
      font-size: 12px;
      font-weight: 800;
      box-shadow: 0 1px 4px rgba(0,0,0,.18);
    }

    .map-fullscreen {
      position: absolute;
      right: 6px;
      bottom: 6px;
    }

    .map-pin {
      position: absolute;
      left: 49%;
      top: 49%;
      transform: translate(-50%,-50%);
      color: #fff;
      font-size: 22px;
      text-shadow: 0 2px 4px rgba(0,0,0,.35);
    }

    .map-name {
      position: absolute;
      left: 50%;
      top: 66%;
      transform: translateX(-50%);
      color: #fff;
      font-size: 10px;
      font-weight: 800;
      text-shadow: 0 1px 3px rgba(0,0,0,.65);
      white-space: nowrap;
    }

    .map-route {
      position: absolute;
      color: #fff;
      font-size: 8.5px;
      font-weight: 700;
      text-shadow: 0 1px 3px rgba(0,0,0,.9);
    }

    .map-route::before {
      content: "";
      display: inline-block;
      width: 19px;
      height: 1px;
      margin-right: 5px;
      vertical-align: middle;
      background: #fff;
    }

    .map-route--a { right: 24px; top: 27px; }
    .map-route--b { right: 17px; top: 66px; }
    .map-route--c { right: 22px; bottom: 24px; }
    .map-route--d { left: 53px; bottom: 23px; }

    /* ============================
       FOOTER
       ============================ */
    .site-footer {
      margin-top: 8px;
      background: linear-gradient(90deg, #153d2b, #113625 58%, #0d3323);
      color: #fff;
    }

    .footer-inner {
      min-height: 98px;
      display: grid;
      grid-template-columns: 280px 350px 280px 1fr;
      gap: 25px;
      align-items: center;
      padding: 12px 0;
    }

    .footer-col {
      min-width: 0;
    }

    .footer-col + .footer-col {
      border-left: 1px solid rgba(255,255,255,.22);
      padding-left: 28px;
    }

    .footer-brand {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .footer-brand .brand__mark {
      width: 58px;
      height: 39px;
    }

    .footer-brand h3 {
      margin: 0;
      font-family: var(--font-display);
      font-size: 20px;
      line-height: 1;
    }

    .footer-brand p {
      margin: 5px 0 0;
      font-size: 9px;
      color: rgba(255,255,255,.88);
    }

    .footer-title {
      margin: 0 0 5px;
      font-family: var(--font-display);
      font-size: 12px;
      font-weight: 700;
    }

    .footer-address {
      display: grid;
      grid-template-columns: 19px 1fr;
      gap: 9px;
      align-items: start;
      font-size: 9.5px;
      line-height: 1.35;
      color: rgba(255,255,255,.92);
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 4px 15px;
      font-size: 9.2px;
      color: rgba(255,255,255,.94);
    }

    .footer-links a:hover {
      text-decoration: underline;
    }

    .footer-right {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 24px;
      align-items: center;
    }

    .socials {
      display: flex;
      gap: 9px;
      margin-top: 8px;
    }

    .socials a {
      width: 23px;
      height: 23px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: #fff;
      font-size: 12px;
    }

    .socials a:nth-child(1) { background: #1877f2; }
    .socials a:nth-child(2) { background: linear-gradient(135deg,#764ba2,#f80759,#ffb900); }
    .socials a:nth-child(3) { background: #f10c22; }

    .opensid {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 8px;
      color: rgba(255,255,255,.9);
    }

    .opensid strong {
      display: block;
      font-size: 12px;
      color: #fff;
    }

    .opensid-mark {
      width: 23px;
      height: 23px;
      display: grid;
      grid-template-columns: repeat(2, 10px);
      grid-template-rows: repeat(2, 10px);
      gap: 2px;
      transform: rotate(45deg);
    }

    .opensid-mark span {
      border-radius: 4px 8px 4px 8px;
    }

    .opensid-mark span:nth-child(1) { background: #5fc35e; }
    .opensid-mark span:nth-child(2) { background: #f3c232; }
    .opensid-mark span:nth-child(3) { background: #20a8e0; }
    .opensid-mark span:nth-child(4) { background: #ec6e3a; }

    .policy-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 5px 11px;
      font-size: 8.5px;
      color: rgba(255,255,255,.84);
      margin-top: 7px;
    }

    /* ============================
       RESPONSIVE
       ============================ */
    @media (max-width: 1450px) {
      .shell {
        width: min(1260px, calc(100% - 36px));
      }
      .wide-shell {
        width: min(1380px, calc(100% - 48px));
      }
      .site-header__inner {
        grid-template-columns: 255px 1fr 205px;
        gap: 18px;
      }
      .main-nav {
        gap: 16px;
      }
      .main-nav > a,
      .main-nav > .nav-dropdown > summary {
        font-size: 14px;
      }
      .hero-note {
        right: 286px;
      }
      .content-grid,
      .lower-grid {
        grid-template-columns: minmax(0, 1.85fr) minmax(300px, .92fr) minmax(340px, 1fr);
        gap: 17px;
      }
      .footer-inner {
        grid-template-columns: 240px 300px 260px 1fr;
        gap: 18px;
      }
    }

    @media (max-width: 1200px) {
      .topbar__item--service,
      .topbar__item--email,
      .a11y span:last-child {
        display: none;
      }

      .site-header__inner {
        grid-template-columns: 240px 1fr 42px;
      }

      .main-nav,
      .header-search {
        display: none;
      }

      .mobile-menu {
        display: block;
        justify-self: end;
      }

      .hero-note {
        right: 295px;
      }

      .water-feature {
        right: -70px;
        width: 340px;
      }

      .quick-strip {
        grid-template-columns: repeat(2, 1fr);
      }

      .quick-strip-wrap {
        margin-top: -58px;
      }

      main {
        padding-top: 12px;
      }

      .content-grid,
      .lower-grid {
        grid-template-columns: 1fr 1fr;
      }

      .news-section,
      .program-section {
        grid-column: 1 / -1;
      }

      .news-card__media {
        height: 115px;
      }

      .news-card {
        min-height: 245px;
      }

      .footer-inner {
        grid-template-columns: repeat(2, 1fr);
      }

      .footer-col + .footer-col {
        border-left: 0;
        padding-left: 0;
      }

      .footer-right {
        align-items: start;
      }
    }

    @media (max-width: 900px) {
      .shell,
      .wide-shell {
        width: min(100% - 28px, 720px);
      }

      .topbar {
        height: auto;
        min-height: 30px;
      }

      .topbar__inner {
        padding: 6px 0;
      }

      .topbar__right .topbar__divider,
      .topbar__right .a11y,
      .topbar__item--phone {
        display: none;
      }

      .site-header {
        height: 64px;
      }

      .site-header__inner {
        height: 64px;
      }

      .brand__mark {
        width: 62px;
      }

      .brand__title {
        font-size: 25px;
      }

      .brand__sub {
        font-size: 8.7px;
      }

      .hero {
        height: 410px;
      }

      .hero::before {
        background: linear-gradient(90deg, rgba(255,255,255,.93), rgba(255,255,255,.78) 64%, rgba(255,255,255,.12));
      }

      .hero__inner {
        padding-top: 42px;
      }

      .hero-copy {
        width: 74%;
      }

      .hero h1 {
        font-size: 50px;
      }

      .hero-note {
        display: none;
      }

      .water-feature {
        width: 260px;
        height: 170px;
        opacity: .96;
      }

      .water-feature figcaption {
        font-size: 26px;
        width: 100px;
      }

      .quick-strip-wrap {
        margin-top: -44px;
      }

      .quick-strip {
        grid-template-columns: 1fr 1fr;
        min-height: 0;
      }

      .content-grid,
      .lower-grid {
        grid-template-columns: 1fr;
      }

      .news-section,
      .program-section {
        grid-column: auto;
      }

      .budget-card {
        height: auto;
        min-height: 210px;
      }

      .map-card {
        height: 210px;
      }

      .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
      }
    }

    @media (max-width: 680px) {
      body {
        font-size: 13px;
      }

      .shell,
      .wide-shell {
        width: calc(100% - 24px);
      }

      .topbar__inner {
        justify-content: center;
      }

      .topbar__left .topbar__divider,
      .topbar__left .topbar__item:first-child {
        display: none;
      }

      .site-header__inner {
        grid-template-columns: 1fr 42px;
      }

      .brand {
        gap: 8px;
      }

      .brand__mark {
        width: 56px;
      }

      .brand__title {
        font-size: 23px;
      }

      .brand__sub {
        white-space: normal;
        font-size: 8px;
      }

      .hero {
        height: 430px;
      }

      .hero__image {
        object-position: 63% center;
      }

      .hero::before {
        background: linear-gradient(90deg, rgba(255,255,255,.96), rgba(255,255,255,.90) 58%, rgba(255,255,255,.48));
      }

      .hero-copy {
        width: 100%;
      }

      .eyebrow {
        font-size: 14px;
      }

      .hero h1 {
        max-width: 430px;
        font-size: 46px;
      }

      .hero-copy > p {
        max-width: 430px;
        font-size: 14px;
      }

      .water-feature {
        width: 230px;
        height: 135px;
        opacity: .88;
      }

      .water-feature figcaption {
        top: 25px;
        right: 12px;
        font-size: 22px;
      }

      .quick-strip-wrap {
        margin-top: -26px;
      }

      .quick-strip {
        grid-template-columns: 1fr;
        padding: 8px;
      }

      .quick-card {
        min-height: 64px;
      }

      main {
        padding-top: 8px;
      }

      .news-grid,
      .program-grid {
        grid-template-columns: 1fr;
      }

      .news-card {
        min-height: 0;
      }

      .news-card__media {
        height: 190px;
      }

      .news-card h3,
      .news-card p {
        min-height: 0;
      }

      .services-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
      }

      .budget-content {
        grid-template-columns: 1fr;
        padding-top: 14px;
      }

      .legend {
        width: min(290px, 100%);
        margin: 8px auto 0;
        padding: 0 8px 10px;
      }

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

      .map-card {
        height: 230px;
      }

      .footer-inner {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 20px 0;
      }

      .footer-right {
        grid-template-columns: 1fr;
      }

      .policy-links {
        justify-content: flex-start;
      }
    }

    @media (max-width: 430px) {
      .hero h1 {
        font-size: 40px;
      }

      .hero-actions {
        flex-wrap: wrap;
      }

      .btn {
        width: 100%;
      }

      .water-feature {
        width: 185px;
        height: 112px;
      }

      .water-feature figcaption {
        width: 84px;
        font-size: 18px;
      }

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