:root {
  --ink: #20242a;
  --ink-soft: #566055;
  --green: #54813e;
  --green-dark: #3f652f;
  --green-pale: #e4ecdf;
  --paper: #f5f1e8;
  --card: #ffffff;
  --line: #d8dfd4;
  --land: #eceee8;
  --land-outside: #dfe3da;
  --parcel: #fbfcf9;
  --parcel-line: #8f9a8b;
  --road: #979f96;
  --road-casing: #fbfaf6;
  --water: #b7d4d8;
  --water-line: #75a5ad;
  --shadow: 0 20px 55px rgb(31 42 29 / 13%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 82% 0%, rgb(84 129 62 / 12%), transparent 36rem),
    var(--paper);
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.page-shell {
  width: min(1500px, calc(100% - 48px));
  margin: 0 auto;
  padding: 44px 0 64px;
}

.prototype-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 24px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.lede {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
}

.parcel-count {
  display: grid;
  flex: 0 0 auto;
  min-width: 142px;
  padding: 14px 18px;
  border-left: 3px solid var(--green);
  background: rgb(255 255 255 / 62%);
}

.parcel-count strong {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--green-dark);
  font-size: 1.85rem;
  font-weight: 500;
  line-height: 1;
}

.parcel-count span {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.map-card {
  overflow: hidden;
  border: 1px solid rgb(63 101 47 / 18%);
  border-radius: 4px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.map-toolbar {
  display: flex;
  align-items: flex-end;
  gap: 18px;
  min-height: 82px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: #fbfcf9;
}

.parcel-search {
  display: grid;
  flex: 1 1 420px;
  max-width: 540px;
  gap: 6px;
}

.parcel-search label,
.toggle-control {
  color: var(--ink-soft);
  font-size: 0.77rem;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.search-row {
  display: flex;
}

.search-row input {
  min-width: 0;
  flex: 1;
  height: 42px;
  padding: 0 13px;
  border: 1px solid #c9d1c5;
  border-radius: 4px 0 0 4px;
  color: var(--ink);
  background: white;
  outline: none;
}

.search-row input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgb(84 129 62 / 14%);
}

.search-row button,
.button-group button {
  min-height: 42px;
  border: 1px solid var(--green-dark);
  color: white;
  background: var(--green-dark);
  font-weight: 700;
}

.search-row button {
  padding: 0 18px;
  border-radius: 0 4px 4px 0;
}

.search-row button:hover,
.button-group button:hover {
  background: #314e25;
}

.button-group {
  display: flex;
}

.button-group button {
  min-width: 42px;
  padding: 0 13px;
  border-right-width: 0;
}

.button-group button:first-child {
  border-radius: 4px 0 0 4px;
}

.button-group button:last-child {
  min-width: 72px;
  border-right-width: 1px;
  border-radius: 0 4px 4px 0;
}

.toggle-control {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  gap: 8px;
  white-space: nowrap;
}

.toggle-control input {
  width: 18px;
  height: 18px;
  accent-color: var(--green-dark);
}

.map-stage {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: var(--land-outside);
}

#main-map {
  display: block;
  width: 100%;
  height: min(72vh, 820px);
  min-height: 520px;
  touch-action: none;
  cursor: grab;
  background: var(--land-outside);
  user-select: none;
}

#main-map.is-dragging {
  cursor: grabbing;
}

.map-land {
  fill: var(--land-outside);
}

.pda-land {
  fill: var(--land);
}

.context-land {
  fill: #f4f5f1;
}

.waterbody {
  fill: var(--water);
  fill-opacity: 0.72;
  stroke: none;
}

.watercourse {
  fill: none;
  stroke: var(--water-line);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.road-casing,
.road-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.road-casing {
  stroke: var(--road-casing);
}

.road-line {
  stroke: var(--road);
}

.road-casing[data-class="Secondary"] { stroke-width: 8; }
.road-line[data-class="Secondary"] { stroke-width: 4; }
.road-casing[data-class="Connector"] { stroke-width: 6.4; }
.road-line[data-class="Connector"] { stroke-width: 3.2; }
.road-casing[data-class="Local"] { stroke-width: 4.2; }
.road-line[data-class="Local"] { stroke-width: 1.8; }
.road-casing[data-class="Track"],
.road-casing[data-class="Non-vehicular Track"] { stroke-width: 2.8; }
.road-line[data-class="Track"],
.road-line[data-class="Non-vehicular Track"] {
  stroke-width: 1.2;
  stroke-dasharray: 4 4;
}

.parcel {
  fill: var(--parcel);
  fill-opacity: 0.82;
  stroke: var(--parcel-line);
  stroke-width: 0.72;
  vector-effect: non-scaling-stroke;
  transition: fill 120ms ease, fill-opacity 120ms ease;
  cursor: pointer;
}

.context-parcel {
  fill: none;
  stroke: #aab3a7;
  stroke-width: 0.62;
  vector-effect: non-scaling-stroke;
  pointer-events: none;
}

.outside-context-wash {
  fill: #f8f9f5;
  pointer-events: none;
}

.parcel:hover {
  fill: #dbe8d4;
  fill-opacity: 1;
}

.parcel:focus {
  outline: none;
}

.parcel:focus-visible {
  fill: #dbe8d4;
  fill-opacity: 1;
  stroke: var(--green-dark);
  stroke-width: 2;
}

.parcel.is-selected {
  fill: var(--green);
  fill-opacity: 0.72;
  stroke: var(--green-dark);
  stroke-width: 2.4;
}

.parcel.is-highlighted {
  fill: #79a36a;
  fill-opacity: 0.84;
  stroke: #3f652f;
  stroke-width: 2;
}

.development-shape {
  fill: #79a36a;
  fill-opacity: 0.84;
  stroke: #3f652f;
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
  cursor: pointer;
  transition: fill 120ms ease, fill-opacity 120ms ease, stroke 120ms ease;
}

.development-shape:hover,
.development-shape:focus-visible {
  fill: #659255;
  fill-opacity: 0.94;
  stroke: #2f5125;
  stroke-width: 2.5;
  outline: none;
}

.development-shape.is-development-selected,
.development-shape.is-development-selected:hover,
.development-shape.is-development-selected:focus-visible {
  fill: var(--green-dark);
  fill-opacity: 0.96;
  stroke: #213a1a;
  stroke-width: 2.8;
}

.business-centre-shape,
.business-centre-point {
  fill: #79a36a;
  fill-opacity: 0.9;
  stroke: #3f652f;
  stroke-width: 2.4;
  vector-effect: non-scaling-stroke;
  cursor: pointer;
  transition: fill 120ms ease, fill-opacity 120ms ease, stroke 120ms ease;
}

.business-centre-point {
  stroke: #ffffff;
  stroke-width: 3.2;
  paint-order: stroke;
}

.business-centre-shape:hover,
.business-centre-shape:focus-visible,
.business-centre-point:hover,
.business-centre-point:focus-visible {
  fill: #659255;
  fill-opacity: 0.98;
  stroke: #2f5125;
  outline: none;
}

.business-centre-point:hover,
.business-centre-point:focus-visible {
  stroke: #ffffff;
}

.business-centre-shape.is-business-centre-selected,
.business-centre-shape.is-business-centre-selected:hover,
.business-centre-shape.is-business-centre-selected:focus-visible,
.business-centre-point.is-business-centre-selected,
.business-centre-point.is-business-centre-selected:hover,
.business-centre-point.is-business-centre-selected:focus-visible {
  fill: var(--green-dark);
  fill-opacity: 1;
  stroke: #213a1a;
  stroke-width: 3;
}

.business-centre-point.is-business-centre-selected,
.business-centre-point.is-business-centre-selected:hover,
.business-centre-point.is-business-centre-selected:focus-visible {
  stroke: #ffffff;
  stroke-width: 3.6;
}

.pda-boundary {
  fill: none;
  stroke: var(--green-dark);
  stroke-width: 3;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.road-label,
.water-label,
.parcel-label,
.map-annotation {
  paint-order: stroke;
  stroke: rgb(245 241 232 / 94%);
  stroke-linejoin: round;
  pointer-events: none;
}

.road-label {
  fill: #4e574d;
  stroke-width: 5px;
  font-weight: 700;
  letter-spacing: 0.025em;
}

.water-label {
  fill: #4d8089;
  stroke-width: 4px;
  font-style: italic;
  font-weight: 650;
}

.parcel-label {
  display: none;
  fill: #354034;
  stroke: rgb(251 252 249 / 92%);
  stroke-width: 3px;
  font-weight: 750;
  text-anchor: middle;
}

#main-map.show-parcel-labels .parcel-label {
  display: block;
}

.map-annotation {
  fill: var(--green-dark);
  stroke-width: 5px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.north-arrow line,
.north-arrow path,
.scale-bar line {
  fill: none;
  stroke: #334032;
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.north-arrow text,
.scale-bar text {
  fill: #334032;
  font-size: 12px;
  font-weight: 800;
  paint-order: stroke;
  stroke: var(--land-outside);
  stroke-width: 4px;
}

.map-key {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 8px 16px;
  padding: 12px 14px;
  border: 1px solid rgb(32 42 32 / 14%);
  border-radius: 4px;
  background: rgb(255 255 255 / 92%);
  box-shadow: 0 7px 20px rgb(32 42 32 / 12%);
  font-size: 0.75rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.map-key > span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.map-key > span[hidden] {
  display: none;
}

.map-key-label {
  font-weight: inherit;
}

.map-key i {
  display: inline-block;
  width: 23px;
  height: 10px;
}

.key-pda {
  border: 2px solid var(--green-dark);
  background: var(--land);
}

.key-parcel {
  border: 1px solid var(--parcel-line);
  background: var(--parcel);
}

.key-context-parcel {
  border: 1px solid #aab3a7;
  background: #f5f6f2;
  opacity: 0.72;
}

.key-road {
  height: 4px !important;
  border-top: 2px solid var(--road);
  border-bottom: 2px solid var(--road-casing);
}

.key-water {
  border-radius: 4px;
  background: var(--water);
}

.key-highlight {
  border: 1px solid #3f652f;
  background: #79a36a;
}

.key-selected-development {
  border: 1px solid #213a1a;
  background: var(--green-dark);
}

.key-centre-area {
  border: 1px solid #3f652f;
  background: #79a36a;
}

.map-key i.key-centre-point {
  width: 12px;
  height: 12px;
  margin-inline: 5px 6px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: #79a36a;
  box-shadow: 0 0 0 1px #3f652f;
}

.development-map-label {
  position: absolute;
  z-index: 4;
  left: 16px;
  bottom: 16px;
  width: min(340px, calc(100% - 32px));
  padding: 16px 44px 16px 18px;
  color: #eef5eb;
  background: rgb(32 42 32 / 96%);
  border-left: 4px solid #9fbd8f;
  border-radius: 4px;
  box-shadow: 0 9px 26px rgb(20 29 20 / 24%);
  backdrop-filter: blur(8px);
}

.development-map-label[hidden] {
  display: none;
}

.development-map-label-kicker {
  margin: 0 0 4px;
  color: #b9d0ae;
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.development-map-label > strong {
  display: block;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  line-height: 1.25;
}

.development-map-label-copy,
.development-map-label-meta {
  margin: 6px 0 0;
  color: #d9e6d3;
  font-size: 0.78rem;
  line-height: 1.4;
}

.development-map-label-meta {
  color: #b9cbb2;
}

.development-map-label-links {
  margin-top: 11px;
  display: grid;
  gap: 6px;
}

.development-map-label-links a {
  color: #dcebd5;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.development-map-label-links a:hover,
.development-map-label-links a:focus-visible {
  color: #ffffff;
}

.development-map-label-close {
  position: absolute;
  top: 8px;
  right: 9px;
  width: 30px;
  height: 30px;
  padding: 0;
  display: grid;
  place-items: center;
  color: #dcebd5;
  background: transparent;
  border: 0;
  border-radius: 50%;
  font-size: 1.35rem;
  line-height: 1;
}

.development-map-label-close:hover,
.development-map-label-close:focus-visible {
  color: #ffffff;
  background: rgb(255 255 255 / 12%);
}

.parcel-details {
  position: absolute;
  left: 16px;
  bottom: 16px;
  width: min(330px, calc(100% - 32px));
  padding: 14px 16px;
  border: 1px solid rgb(32 42 32 / 14%);
  border-left: 4px solid var(--green);
  border-radius: 4px;
  background: rgb(255 255 255 / 94%);
  box-shadow: 0 7px 20px rgb(32 42 32 / 12%);
  backdrop-filter: blur(8px);
}

.parcel-details .details-kicker {
  margin: 0 0 4px;
  color: var(--green-dark);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.parcel-details strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 600;
}

.parcel-details p:last-child {
  margin: 5px 0 0;
  color: var(--ink-soft);
  font-size: 0.8rem;
  line-height: 1.45;
}

.map-tooltip {
  position: absolute;
  z-index: 5;
  max-width: 260px;
  padding: 8px 10px;
  border-radius: 4px;
  color: white;
  background: rgb(32 42 32 / 94%);
  box-shadow: 0 7px 18px rgb(0 0 0 / 18%);
  font-size: 0.74rem;
  line-height: 1.35;
  pointer-events: none;
}

.map-loading {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--ink-soft);
  background: var(--land-outside);
  font-weight: 700;
}

.map-loading[hidden] {
  display: none;
}

.map-footer {
  display: grid;
  grid-template-columns: minmax(220px, 0.6fr) minmax(480px, 1.4fr);
  gap: 24px;
  align-items: start;
  padding: 13px 18px 15px;
  border-top: 1px solid var(--line);
  background: #fbfcf9;
}

.map-footer p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.72rem;
  line-height: 1.5;
}

.map-footer a {
  color: var(--green-dark);
  font-weight: 700;
}

.visually-hidden {
  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;
}

.display-mode {
  height: 100vh;
  overflow: hidden;
  background: transparent;
}

.display-map-shell {
  width: 100%;
}

.display-mode .display-map-shell,
.display-mode .map-card {
  height: 100%;
}

.display-mode .map-card {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  border-radius: 4px;
  box-shadow: none;
}

.display-mode .map-stage,
.display-mode #main-map {
  height: 100%;
  min-height: 0;
}

.display-mode .parcel {
  cursor: grab;
}

.display-mode .parcel:hover {
  fill: var(--parcel);
  fill-opacity: 0.82;
}

.display-mode.parcel-detail-mode .parcel.is-detail-interactive {
  cursor: pointer;
}

.display-mode.parcel-detail-mode .parcel.is-detail-interactive:hover,
.display-mode.parcel-detail-mode .parcel.is-detail-interactive:focus-visible {
  fill: #659255;
  fill-opacity: 0.94;
  stroke: #2f5125;
  stroke-width: 2.5;
}

.display-mode.parcel-detail-mode .parcel.is-detail-interactive.is-selected,
.display-mode.parcel-detail-mode .parcel.is-detail-interactive.is-selected:hover,
.display-mode.parcel-detail-mode .parcel.is-detail-interactive.is-selected:focus-visible {
  fill: var(--green-dark);
  fill-opacity: 0.96;
  stroke: #213a1a;
  stroke-width: 2.8;
}

.display-mode .road-casing-layer,
.display-mode .road-line-layer,
.display-mode .label-layer,
.display-mode .outside-context-wash,
.display-mode .pda-boundary {
  pointer-events: none;
}

.display-mode #main-map.is-dragging .parcel {
  cursor: grabbing;
}

.display-mode #main-map.is-dragging .development-shape {
  cursor: grabbing;
}

.display-mode #main-map.is-dragging .business-centre-target {
  cursor: grabbing;
}

.display-zoom-controls {
  position: absolute;
  z-index: 4;
  top: 14px;
  left: 14px;
  border-radius: 4px;
  box-shadow: 0 7px 20px rgb(32 42 32 / 14%);
}

.display-map-footer {
  padding: 8px 12px;
  border-top: 1px solid var(--line);
  background: #fbfcf9;
}

.display-map-footer p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.65rem;
  line-height: 1.4;
}

.display-map-footer a {
  color: var(--green-dark);
  font-weight: 700;
}

@media (max-width: 820px) {
  .page-shell {
    width: min(100% - 24px, 1500px);
    padding-top: 24px;
  }

  .prototype-header {
    align-items: flex-start;
  }

  .parcel-count {
    display: none;
  }

  .map-toolbar {
    flex-wrap: wrap;
    align-items: center;
  }

  .parcel-search {
    flex-basis: 100%;
    max-width: none;
  }

  .map-footer {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  #main-map {
    height: 66vh;
  }
}

@media (max-width: 560px) {
  .page-shell {
    width: 100%;
    padding: 18px 0 0;
  }

  .prototype-header {
    padding: 0 16px;
  }

  .map-card {
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .map-toolbar {
    gap: 11px;
    padding: 12px;
  }

  .toggle-control {
    margin-left: auto;
  }

  .map-stage,
  #main-map {
    min-height: 480px;
  }

  .map-key {
    top: 12px;
    right: 12px;
    bottom: auto;
    grid-template-columns: 1fr;
  }

  .parcel-details {
    left: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
  }

  .development-map-label {
    left: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
  }
}

/* Website R60: Roads & Transport planning overlays. */
.transport-overlay-layer {
  pointer-events: none;
}

.transport-future-road,
.transport-road-design,
.transport-active-route {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.transport-future-road {
  stroke: #5e7e4f;
  stroke-width: 4.4;
  stroke-dasharray: 11 7;
  opacity: 0.92;
}

.transport-road-design {
  opacity: 0.94;
}

.transport-road-design-2 {
  stroke: #45663d;
  stroke-width: 6.4;
}

.transport-road-design-4 {
  stroke: #274c2f;
  stroke-width: 10;
}

.transport-road-design-other {
  stroke: #6e7650;
  stroke-width: 8;
}

.transport-active-route {
  stroke: #c57435;
  stroke-width: 3.8;
  stroke-dasharray: 3 6;
  opacity: 0.95;
}

.transport-intersection-point {
  fill: #fff;
  stroke: #263c22;
  stroke-width: 3;
  vector-effect: non-scaling-stroke;
}

.map-key i.key-future-road {
  height: 4px;
  border-top: 3px dashed #5e7e4f;
}

.map-key i.key-road-design-2 {
  height: 6px;
  background: #45663d;
  border-radius: 4px;
}

.map-key i.key-road-design-4 {
  height: 10px;
  background: #274c2f;
  border-radius: 4px;
}

.map-key i.key-road-design-other {
  height: 8px;
  background: #6e7650;
  border-radius: 4px;
}

.map-key i.key-active-transport {
  height: 4px;
  border-top: 3px dotted #c57435;
}

.map-key i.key-intersection {
  width: 11px;
  height: 11px;
  margin-inline: 6px 9px;
  border: 2px solid #263c22;
  border-radius: 50%;
  background: #fff;
}

/* Website R62: Sewer & Water Treatment planning overlays. */
.sewer-overlay-layer {
  pointer-events: none;
}

.sewer-catchment {
  fill: #6d9bad;
  fill-opacity: 0.14;
  stroke: #527f91;
  stroke-width: 1.8;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.sewer-catchment-b {
  fill: #78a9a0;
  stroke: #5a887f;
}

.sewer-catchment-c {
  fill: #7e91b3;
  stroke: #60749a;
}

.sewer-catchment-d {
  fill: #8999a8;
  stroke: #687987;
}

.sewer-catchment-label {
  fill: #355868;
  paint-order: stroke;
  stroke: rgb(255 255 255 / 90%);
  stroke-width: 7px;
  stroke-linejoin: round;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.sewer-main {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.sewer-gravity-main {
  stroke: #2f7189;
  stroke-width: 3.7;
}

.sewer-rising-main {
  stroke: #725f9a;
  stroke-width: 4;
  stroke-dasharray: 9 6;
}

.sewer-nontrunk-main {
  stroke: #c84a3d;
  stroke-width: 3.4;
}

.sewer-pump-station {
  fill: #ffffff;
  stroke: #5d4b82;
  stroke-width: 3;
  vector-effect: non-scaling-stroke;
}

.sewer-treatment-point {
  fill: #a85d3b;
  stroke: #ffffff;
  stroke-width: 3;
  vector-effect: non-scaling-stroke;
}

.map-key i.key-sewer-catchment {
  width: 18px;
  height: 12px;
  border: 1.5px solid #527f91;
  background: rgb(109 155 173 / 24%);
}

.map-key i.key-sewer-gravity {
  height: 4px;
  border-top: 4px solid #2f7189;
}

.map-key i.key-sewer-rising {
  height: 4px;
  border-top: 4px dashed #725f9a;
}

.map-key i.key-sewer-main {
  height: 4px;
  border-top: 4px solid #c84a3d;
}

.map-key i.key-sewer-pump {
  width: 11px;
  height: 11px;
  margin-inline: 6px 9px;
  border: 2px solid #5d4b82;
  border-radius: 50%;
  background: #fff;
}

.map-key i.key-sewer-treatment {
  width: 12px;
  height: 12px;
  margin-inline: 6px 8px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #a85d3b;
  box-shadow: 0 0 0 1px #a85d3b;
}

/* Website R76: Parks & Open Space planning overlays. */
.open-space-overlay-layer {
  pointer-events: none;
}

.open-space-context-shape {
  fill: #a9c89a;
  fill-opacity: 0.22;
  stroke: #789d69;
  stroke-width: 1.6;
  stroke-dasharray: 7 5;
  vector-effect: non-scaling-stroke;
}

.open-space-park-shape {
  stroke-width: 2.8;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  transition: fill-opacity 120ms ease, stroke-width 120ms ease;
}

.open-space-recreation-shape {
  fill: #5f8f4d;
  fill-opacity: 0.78;
  stroke: #355b2d;
}

.open-space-sports-shape {
  fill: #8daf5d;
  fill-opacity: 0.82;
  stroke: #536f2f;
}

.open-space-park-shape.is-open-space-selected {
  fill-opacity: 0.98;
  stroke-width: 4;
}

.map-key i.key-open-space-context {
  width: 18px;
  height: 12px;
  border: 1.5px dashed #789d69;
  background: rgb(169 200 154 / 35%);
}

.map-key i.key-open-space-recreation {
  width: 18px;
  height: 12px;
  border: 1.5px solid #355b2d;
  background: #5f8f4d;
}

.map-key i.key-open-space-sports {
  width: 18px;
  height: 12px;
  border: 1.5px solid #536f2f;
  background: #8daf5d;
}

/* Website R78: Schools planning overlays. */
.school-overlay-layer {
  pointer-events: none;
}

.school-existing-shape {
  fill: #5e7d9b;
  fill-opacity: 0.30;
  stroke: #35556f;
  stroke-width: 2.6;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.school-proposed-point {
  fill: #fff;
  stroke: #8b622e;
  stroke-width: 4;
  vector-effect: non-scaling-stroke;
}

.school-proposed-label {
  fill: #60421f;
  stroke: #fff;
  stroke-width: 6px;
  paint-order: stroke fill;
  font-weight: 900;
  pointer-events: none;
}

.school-existing-shape.is-school-selected,
.school-proposed-marker.is-school-selected .school-proposed-point {
  stroke: #182f43;
  stroke-width: 5;
}

.map-key i.key-school-existing {
  width: 18px;
  height: 12px;
  border: 2px solid #35556f;
  background: rgb(94 125 155 / 30%);
}

.map-key i.key-school-proposed {
  width: 12px;
  height: 12px;
  margin-inline: 6px 8px;
  border: 3px solid #8b622e;
  border-radius: 50%;
  background: #fff;
}

/* Website R82: Environment planning overlays. */
.environment-overlay-layer {
  pointer-events: none;
}

.environment-green-space-shape {
  fill: #8fb27b;
  fill-opacity: 0.24;
  stroke: #5f8b51;
  stroke-width: 1.8;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.environment-habitat-shape {
  fill: url(#habitat-investigation-hatch);
  fill-opacity: 1;
  stroke: #4f8042;
  stroke-width: 1.35;
  stroke-dasharray: 3.5 3;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.map-key i.key-environment-habitat {
  width: 18px;
  height: 12px;
  border: 1.5px dashed #4f8042;
  background: repeating-linear-gradient(
    135deg,
    rgb(183 214 156 / 55%) 0 3px,
    rgb(255 255 255 / 25%) 3px 6px
  );
}

.map-key i.key-environment-green-space {
  width: 18px;
  height: 12px;
  border: 1.5px solid #5f8b51;
  background: rgb(143 178 123 / 38%);
}

/* Website R89: overview layers used by the public Maps hub. */
.overview-plan-layer { pointer-events: none; }
.overview-plan-shape {
  vector-effect: non-scaling-stroke;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.overview-plan-shape-residential {
  fill: rgb(139 167 113 / 28%);
  stroke: #55713f;
  stroke-width: 2.2;
}
.overview-plan-shape-shopping-centres {
  fill: rgb(128 89 154 / 38%);
  stroke: #69477e;
  stroke-width: 2.8;
}
.overview-plan-shape-industry-enterprise {
  fill: rgb(71 107 137 / 32%);
  stroke: #385f7d;
  stroke-width: 2.5;
}
.overview-plan-shape-green-space {
  fill: rgb(56 139 99 / 38%);
  stroke: #28734f;
  stroke-width: 2.8;
}
.overview-plan-shape-future-roads {
  fill: none;
  stroke: #4f5554;
  stroke-width: 5.2;
  stroke-dasharray: 13 8;
}
.overview-plan-shape-sewer {
  fill: none;
  stroke: #8f4b7f;
  stroke-width: 3.7;
  stroke-dasharray: 8 5;
}
.overview-plan-shape-parks {
  fill: rgb(29 104 68 / 52%);
  stroke: #165b3a;
  stroke-width: 3.2;
}
.overview-plan-shape-habitat {
  fill: rgb(186 64 131 / 18%);
  stroke: #a73376;
  stroke-width: 2.4;
  stroke-dasharray: 7 5;
}
.overview-plan-point {
  vector-effect: non-scaling-stroke;
  stroke: #fff;
  stroke-width: 3;
}
.overview-plan-point-shopping-centres { fill: #76508c !important; stroke: #4f315f !important; }
.overview-plan-point-sewer { fill: #8f4b7f; r: 7; }
.overview-plan-point-schools { fill: #d5842f !important; stroke: #7a4618 !important; }
.overview-point-label {
  display: none;
  fill: #263126;
  stroke: rgb(251 252 249 / 94%);
  stroke-width: 4px;
  paint-order: stroke fill;
  font-weight: 750;
  letter-spacing: 0.01em;
  pointer-events: none;
}

/* Website R106: map-first PDA property exploration. Published property-linked
 * parcels use a softer fill than development parcels; selecting a property
 * darkens every current parcel that belongs to that public property record. */
.display-mode.property-map-mode .parcel.is-property-interactive {
  cursor: pointer;
  fill: #b8cdaa;
  fill-opacity: 0.72;
  stroke: #64805b;
  stroke-width: 1.5;
}

.display-mode.property-map-mode .parcel.is-property-interactive:hover,
.display-mode.property-map-mode .parcel.is-property-interactive:focus-visible {
  fill: #8fae80;
  fill-opacity: 0.94;
  stroke: #3f652f;
  stroke-width: 2.4;
}

.display-mode.property-map-mode .parcel.is-property-interactive.is-property-selected,
.display-mode.property-map-mode .parcel.is-property-interactive.is-property-selected:hover,
.display-mode.property-map-mode .parcel.is-property-interactive.is-property-selected:focus-visible {
  fill: var(--green-dark);
  fill-opacity: 0.96;
  stroke: #213a1a;
  stroke-width: 2.8;
}

.display-mode.property-map-mode .parcel:not(.is-property-interactive):hover {
  fill: var(--parcel);
  fill-opacity: 0.82;
}

/* Website R110: property-detail planning overlays. Future roads remain
 * a separate optional property layer and are drawn only as a thick dotted
 * indicative centreline with no width, area or percentage implication. */
.property-profile-overlay-layer { pointer-events: none; }

.property-profile-shape,
.property-profile-sewer-line,
.property-profile-future-road-line,
.property-profile-boundary {
  vector-effect: non-scaling-stroke;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.property-profile-land-use {
  fill-opacity: 0.58;
  stroke-width: 1.9;
  stroke-opacity: 0.92;
}

.property-profile-habitat {
  fill: url(#habitat-investigation-hatch);
  stroke: #4f8042;
  stroke-width: 2.1;
  stroke-dasharray: 6 4;
}

.property-profile-sewer-catchment {
  fill: rgb(83 143 184 / 19%);
  stroke: #3c7192;
  stroke-width: 2.1;
  stroke-dasharray: 8 5;
}

.property-profile-park {
  stroke-width: 2.8;
}

.property-profile-park-dr01 {
  fill: rgb(61 137 88 / 38%);
  stroke: #266d45;
}

.property-profile-park-ds01 {
  fill: rgb(39 117 80 / 48%);
  stroke: #185b3b;
  stroke-dasharray: 8 4;
}

.property-profile-sewer-line {
  fill: none;
  stroke-width: 4;
}

.property-profile-sewer-gravity { stroke: #7b3f72; }
.property-profile-sewer-rising { stroke: #a35b92; stroke-dasharray: 8 5; }
.property-profile-sewer-main { stroke: #5a4f88; stroke-dasharray: 5 4; }

.property-profile-sewer-point {
  vector-effect: non-scaling-stroke;
  fill: #7b3f72;
  stroke: #fff;
  stroke-width: 2.5;
}

.property-profile-sewer-pump { fill: #7b3f72; }
.property-profile-sewer-treatment { fill: #54476f; }

.property-profile-future-road-line {
  fill: none;
  stroke: #9a5d28;
  stroke-width: 7;
  stroke-dasharray: 2 12;
  stroke-linecap: round;
}

.property-profile-boundary {
  fill: none;
  stroke: #152a18;
  stroke-width: 4.2;
  stroke-opacity: 0.98;
}

.display-mode.property-profile-map-mode .parcel.is-property-interactive,
.display-mode.property-profile-map-mode .parcel.is-property-interactive.is-property-selected {
  fill: #eef3eb;
  fill-opacity: 0.75;
  stroke: #55744c;
  stroke-width: 1.8;
  cursor: default;
}

.display-mode.property-profile-map-mode .parcel.is-property-interactive:hover,
.display-mode.property-profile-map-mode .parcel.is-property-interactive:focus-visible,
.display-mode.property-profile-map-mode .parcel.is-property-interactive.is-property-selected:hover,
.display-mode.property-profile-map-mode .parcel.is-property-interactive.is-property-selected:focus-visible {
  fill: #eef3eb;
  fill-opacity: 0.75;
  stroke: #55744c;
  stroke-width: 1.8;
}

.map-key i.key-property-map3 {
  width: 18px;
  height: 12px;
  border: 1.5px solid #506b49;
  background: linear-gradient(
    90deg,
    #a8c28f 0 25%,
    #8aa5b4 25% 50%,
    #7eb07a 50% 75%,
    #8b6aa0 75% 100%
  );
}

.display-mode.property-profile-map-mode .map-key i.key-selected-development {
  background: transparent;
  border: 3px solid #152a18;
}

.display-mode.property-profile-map-mode .map-key i.key-future-road {
  height: 5px;
  border-top: 4px dotted #9a5d28;
}
