:root {
  --ink: #17201b;
  --muted: #66736b;
  --line: #d9dfd8;
  --paper: #f7f4ed;
  --panel: #ffffff;
  --field: #fbfaf6;
  --gum: #0c66b4;
  --gum-dark: #064681;
  --leaf: #2f8a2f;
  --leaf-soft: #e3f2dc;
  --gold: #d9a441;
  --sky: #dceefa;
  --shadow: 0 18px 55px rgba(31, 42, 36, 0.12);
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(110deg, rgba(220, 238, 250, 0.95), transparent 42%),
    linear-gradient(160deg, transparent 55%, rgba(227, 242, 220, 0.86)),
    var(--paper);
  color: var(--ink);
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.app-shell {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  min-height: 100vh;
}

.sidebar {
  position: sticky;
  top: 0;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100vh;
  padding: 24px;
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
}

.brand,
.provider-topline,
.panel-heading,
.travel-metrics,
.topbar,
.topbar-actions,
.map-strip,
.tabs,
.section-heading,
.card-actions,
.checkbox-row {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  min-height: 72px;
}

.brand-mark {
  position: relative;
  flex: 0 0 62px;
  width: 62px;
  height: 62px;
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 38%, #ffffff 0 18px, transparent 19px),
    linear-gradient(145deg, #0b72c9, #064681);
  box-shadow: inset 0 -8px 14px rgba(0, 0, 0, 0.16);
}

.brand-mark::after {
  position: absolute;
  right: -5px;
  bottom: 8px;
  left: 6px;
  height: 23px;
  border-radius: 50% 0 0 50%;
  background: linear-gradient(140deg, #2f8a2f, #7fbd30);
  content: "";
  transform: rotate(-16deg);
}

.brand-mark .pin-ring {
  position: absolute;
  top: 9px;
  left: 16px;
  z-index: 2;
  width: 31px;
  height: 31px;
  border: 6px solid #075aa3;
  border-radius: 50% 50% 50% 0;
  background: #fff;
  transform: rotate(-45deg);
}

.brand-mark .person {
  position: absolute;
  z-index: 3;
  border-radius: 999px 999px 8px 8px;
  background: #0d5dae;
}

.brand-mark .person::before {
  position: absolute;
  top: -9px;
  left: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: inherit;
  content: "";
  transform: translateX(-50%);
}

.person-main {
  top: 30px;
  left: 26px;
  width: 13px;
  height: 21px;
}

.person-left,
.person-right {
  top: 36px;
  width: 9px;
  height: 15px;
  background: #4f9d2f;
}

.person-left {
  left: 17px;
}

.person-right {
  right: 15px;
}

.brand p,
.eyebrow,
.provider-meta,
.section-heading p,
.coverage-copy span,
.council-grid p,
.admin-item p,
.admin-item small {
  margin: 0;
  color: var(--muted);
}

.brand p {
  font-size: 13px;
}

.brand strong {
  display: block;
  font-size: 19px;
  line-height: 1;
}

.brand-tagline {
  display: block;
  max-width: 190px;
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
}

.panel,
.provider-card,
.council-grid article,
.admin-summary article,
.admin-board section,
.modal {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 8px 24px rgba(31, 42, 36, 0.06);
}

.panel {
  padding: 16px;
}

label {
  display: grid;
  gap: 7px;
  color: #344239;
  font-size: 13px;
  font-weight: 700;
}

.search-panel {
  display: grid;
  gap: 14px;
}

.input-with-icon {
  position: relative;
}

.input-with-icon span {
  position: absolute;
  top: 50%;
  left: 12px;
  color: var(--muted);
  transform: translateY(-52%);
}

input,
select,
textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--field);
  color: var(--ink);
  outline: none;
}

input,
select {
  padding: 0 12px;
}

textarea {
  resize: vertical;
  padding: 12px;
}

.input-with-icon input {
  padding-left: 34px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--leaf);
  box-shadow: 0 0 0 3px rgba(38, 101, 83, 0.12);
}

.quick-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip,
.tab,
.ghost-button,
.provider-button,
.secondary-action,
.text-action,
.primary-action,
.icon-button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}

.chip {
  padding: 0 10px;
  font-size: 12px;
  font-weight: 800;
}

.chip.active,
.tab.active {
  border-color: var(--leaf);
  background: var(--leaf-soft);
  color: var(--leaf);
}

.panel-heading,
.travel-metrics,
.topbar,
.section-heading {
  justify-content: space-between;
  gap: 16px;
}

.panel-heading h2 {
  margin: 0;
  font-size: 16px;
}

.panel-heading span {
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--sky);
  color: #2f5662;
  font-size: 12px;
  font-weight: 800;
}

.travel-panel {
  display: grid;
  gap: 12px;
}

input[type="range"] {
  min-height: auto;
  padding: 0;
  accent-color: var(--leaf);
}

.travel-metrics span {
  display: grid;
  gap: 2px;
  color: var(--muted);
  font-size: 12px;
}

.travel-metrics strong {
  color: var(--ink);
  font-size: 18px;
}

.primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 0 16px;
  border-color: var(--gum-dark);
  background: linear-gradient(135deg, var(--gum), var(--gum-dark));
  color: #fff;
  font-weight: 900;
}

.main {
  min-width: 0;
  padding: 28px;
}

.topbar {
  margin-bottom: 20px;
}

.eyebrow {
  margin-bottom: 5px;
  color: var(--leaf);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1;
  letter-spacing: 0;
}

.topbar-actions {
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.ghost-button,
.provider-button,
.secondary-action,
.text-action {
  padding: 0 14px;
  font-weight: 850;
}

.ghost-button span {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  margin-left: 6px;
  border-radius: 999px;
  background: var(--leaf);
  color: #fff;
  font-size: 12px;
}

.provider-button {
  border-color: #b9903f;
  background: #fff6df;
  color: #6a4b0e;
}

.map-strip {
  position: relative;
  justify-content: space-between;
  gap: 18px;
  min-height: 134px;
  margin-bottom: 18px;
  overflow: hidden;
  border: 1px solid #b9d1d9;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.58)),
    #d8eef7;
}

.map-art {
  position: relative;
  flex: 0 0 250px;
  height: 134px;
  background:
    radial-gradient(circle at 20% 30%, #8fc385 0 14px, transparent 15px),
    radial-gradient(circle at 74% 65%, #7fbd30 0 18px, transparent 19px),
    linear-gradient(135deg, #9ed0ed, #eef8e9);
}

.road {
  position: absolute;
  inset: 58px -20px auto 0;
  height: 14px;
  background: #f7f4ed;
  transform: rotate(-10deg);
  box-shadow: 0 0 0 2px rgba(86, 97, 90, 0.14);
}

.pin {
  position: absolute;
  width: 15px;
  height: 15px;
  border: 3px solid #fff;
  border-radius: 50% 50% 50% 0;
  background: var(--gum);
  transform: rotate(-45deg);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
}

.p1 {
  left: 52px;
  top: 38px;
}

.p2 {
  left: 110px;
  top: 74px;
}

.p3 {
  left: 170px;
  top: 42px;
}

.p4 {
  left: 216px;
  top: 82px;
}

.coverage-copy {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.coverage-copy strong {
  font-size: 20px;
}

.coverage-stat {
  display: grid;
  place-items: center;
  align-self: stretch;
  min-width: 110px;
  border-left: 1px solid rgba(47, 86, 98, 0.18);
  background: rgba(255, 255, 255, 0.35);
}

.coverage-stat strong {
  font-size: 38px;
}

.coverage-stat span {
  color: var(--muted);
  font-weight: 800;
}

.google-map-panel {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 24px rgba(31, 42, 36, 0.06);
}

.google-map-panel iframe {
  width: 100%;
  height: 310px;
  border: 0;
  border-radius: 8px;
  background: var(--sky);
}

.map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  text-decoration: none;
}

.tabs {
  gap: 8px;
  margin-bottom: 18px;
}

.tab {
  padding: 0 16px;
  font-weight: 900;
}

.tab-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.view {
  display: none;
}

.view.active {
  display: block;
}

.section-heading {
  margin-bottom: 14px;
}

.section-heading h2 {
  margin: 0 0 4px;
  font-size: 22px;
}

.section-heading select {
  width: 210px;
}

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

.provider-card {
  display: grid;
  gap: 14px;
  min-height: 330px;
  min-width: 0;
  overflow: hidden;
  padding: 16px;
}

.provider-topline {
  align-items: flex-start;
  gap: 12px;
}

.provider-avatar {
  display: grid;
  place-items: center;
  flex: 0 0 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--leaf-soft);
  color: var(--leaf);
  font-weight: 950;
}

.provider-card h3 {
  margin: 0 0 4px;
  font-size: 18px;
  line-height: 1.15;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.provider-meta {
  font-size: 13px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.badge {
  max-width: 100%;
  padding: 5px 8px;
  border-radius: 999px;
  background: #eef1ed;
  color: #425047;
  font-size: 11px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.badge.verified,
.badge.available {
  background: var(--leaf-soft);
  color: var(--leaf);
}

.badge.featured {
  background: #fff6df;
  color: #6a4b0e;
}

.badge.emergency {
  background: #fde5df;
  color: var(--gum-dark);
}

.badge.ndis {
  background: #e9e4fa;
  color: #514082;
}

.description {
  margin: 0;
  color: #3f4b44;
  line-height: 1.48;
  display: -webkit-box;
  overflow: hidden;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.provider-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: auto;
}

.provider-stats span {
  display: grid;
  gap: 2px;
  min-width: 0;
  min-height: 56px;
  padding: 9px;
  border-radius: 8px;
  background: #f4f6f2;
  color: var(--muted);
  font-size: 11px;
}

.provider-stats strong {
  color: var(--ink);
  font-size: 15px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.card-actions {
  gap: 8px;
  min-width: 0;
}

.secondary-action {
  flex: 1;
  border-color: var(--leaf);
  background: var(--leaf);
  color: #fff;
}

.secondary-action.selected {
  border-color: var(--gold);
  background: #fff6df;
  color: #6a4b0e;
}

.text-action {
  background: transparent;
}

.jobs-list {
  display: grid;
  gap: 12px;
}

.job-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.job-row h3 {
  margin: 0 0 6px;
}

.job-row p {
  margin: 0;
  color: var(--muted);
}

.job-row strong {
  align-self: start;
  padding: 6px 9px;
  border-radius: 999px;
  background: #eef1ed;
}

.council-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.council-grid article {
  padding: 18px;
}

.council-grid span {
  color: var(--muted);
  font-weight: 800;
}

.council-grid strong {
  display: block;
  margin: 8px 0;
  font-size: 25px;
}

.admin-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  max-width: 620px;
}

.admin-actions .text-action {
  min-height: 36px;
  padding: 0 10px;
  font-size: 12px;
}

.danger-action {
  border-color: #e4b6ad;
  color: #8f3328;
}

.admin-summary article {
  padding: 16px;
}

.admin-summary span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.admin-summary strong {
  display: block;
  margin-top: 6px;
  font-size: 34px;
}

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

.admin-board section {
  min-width: 0;
  padding: 16px;
}

.admin-board h3 {
  margin: 0 0 12px;
  font-size: 18px;
}

.admin-list {
  display: grid;
  gap: 10px;
}

.admin-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 118px;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf6;
}

.provider-admin-item {
  grid-template-columns: 1fr;
}

.admin-item-main {
  min-width: 0;
}

.admin-item h4 {
  margin: 0 0 5px;
  font-size: 15px;
}

.admin-item p {
  font-size: 13px;
  line-height: 1.35;
}

.admin-item small {
  display: block;
  margin-top: 7px;
  font-size: 11px;
  font-weight: 750;
}

.admin-item select {
  min-height: 34px;
  padding: 0 8px;
  font-size: 12px;
}

.provider-approval-controls {
  display: grid;
  gap: 9px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.approval-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.approval-buttons button {
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-weight: 850;
}

.mini-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.mini-check input {
  width: 16px;
  min-height: 16px;
  accent-color: var(--leaf);
}

.admin-notes-label {
  font-size: 12px;
}

.admin-notes-label textarea {
  min-height: 76px;
}

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

.admin-field-grid label {
  font-size: 12px;
}

.admin-field-grid input,
.admin-field-grid select {
  min-height: 36px;
  padding: 0 8px;
  font-size: 12px;
}

.admin-wide-field {
  grid-column: 1 / -1;
}

.admin-empty {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.landing-page {
  display: grid;
  min-height: 100vh;
}

.landing-main {
  width: min(1120px, calc(100% - 32px));
  margin: auto;
  padding: 40px 0;
}

.landing-hero {
  display: grid;
  gap: 18px;
  min-height: 66vh;
  align-content: center;
}

.landing-brand {
  margin-bottom: 10px;
}

.landing-hero h1 {
  max-width: 820px;
}

.landing-copy {
  max-width: 740px;
  margin: 0;
  color: #3f4b44;
  font-size: 20px;
  line-height: 1.45;
}

.landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.landing-primary,
.landing-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
}

.landing-primary {
  background: linear-gradient(135deg, var(--gum), var(--gum-dark));
  color: #fff;
}

.landing-secondary {
  border: 1px solid var(--line);
  background: #fff;
}

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

.landing-grid article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 8px 24px rgba(31, 42, 36, 0.06);
}

.landing-grid span {
  color: var(--leaf);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.landing-grid strong {
  display: block;
  margin: 8px 0;
  font-size: 20px;
}

.landing-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.pricing-page {
  background: var(--paper);
}

.pricing-main,
.info-main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 40px 0 70px;
}

.info-page {
  background: var(--paper);
}

.info-main h1,
.pricing-main h1 {
  margin: 10px 0 14px;
}

.info-grid,
.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

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

.info-grid article,
.step-grid article,
.info-band {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 8px 24px rgba(31, 42, 36, 0.06);
}

.info-grid span,
.step-grid span {
  color: var(--leaf);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.step-grid span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--leaf-soft);
}

.info-grid strong,
.step-grid strong {
  display: block;
  margin: 9px 0;
  font-size: 20px;
}

.info-grid p,
.step-grid p,
.info-band p {
  margin: 0;
  color: var(--muted);
  line-height: 1.48;
}

.info-band {
  margin-top: 14px;
}

.info-band h2 {
  margin: 0 0 12px;
}

.info-list {
  display: grid;
  gap: 10px;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-list span {
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--leaf-soft);
  color: var(--leaf);
  font-size: 13px;
  font-weight: 900;
}

.outreach-sheet {
  max-width: 920px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.pricing-grid article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 8px 24px rgba(31, 42, 36, 0.06);
}

.pricing-grid span {
  color: var(--leaf);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-grid strong {
  display: block;
  margin: 10px 0;
  font-size: 28px;
}

.pricing-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.featured-price {
  border-color: #b9903f !important;
  background: #fffaf0 !important;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 10;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(23, 32, 27, 0.46);
}

.modal-backdrop[hidden] {
  display: none;
}

.modal {
  position: relative;
  width: min(680px, 100%);
  max-height: calc(100vh - 36px);
  overflow: auto;
  padding: 22px;
  box-shadow: var(--shadow);
}

.modal h2 {
  margin: 0 40px 8px 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.modal p {
  margin: 0 0 16px;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.provider-detail-line {
  display: block;
  margin-bottom: 7px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  padding: 0;
  font-size: 26px;
  line-height: 1;
}

form {
  display: grid;
  gap: 13px;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

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

.provider-fields {
  display: grid;
  gap: 13px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7fbf4;
}

.provider-fields[hidden] {
  display: none;
}

.checkbox-row {
  grid-template-columns: auto 1fr;
  align-items: center;
  font-weight: 700;
}

.checkbox-row input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--leaf);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.form-note a,
.legal-main a,
.site-footer a {
  color: var(--gum-dark);
  font-weight: 850;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  padding: 18px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
  font-size: 13px;
}

.site-footer span {
  color: var(--ink);
  font-weight: 900;
}

.landing-footer {
  border-top: 0;
  background: transparent;
}

.legal-page {
  background: var(--paper);
}

.legal-main {
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
  padding: 40px 0 70px;
}

.legal-main h1 {
  margin: 16px 0 10px;
  font-size: clamp(32px, 6vw, 54px);
}

.legal-main section {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.legal-main h2 {
  margin: 0 0 10px;
  font-size: 22px;
}

.legal-main p {
  margin: 0 0 12px;
  color: #3f4b44;
  line-height: 1.58;
}

.legal-updated {
  color: var(--muted);
  font-weight: 800;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  text-decoration: none;
}

@media (max-width: 1100px) {
  .app-shell {
    grid-template-columns: 280px minmax(0, 1fr);
  }

  .provider-grid,
  .council-grid,
  .landing-grid,
  .pricing-grid,
  .info-grid,
  .step-grid,
  .admin-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .app-shell {
    display: block;
  }

  .sidebar {
    position: relative;
    height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .main {
    padding: 20px;
  }

  .topbar,
  .map-strip,
  .google-map-panel .section-heading,
  .section-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .topbar-actions,
  .admin-actions,
  .tabs {
    justify-content: flex-start;
  }

  .map-art {
    flex-basis: 110px;
    width: 100%;
  }

  .coverage-stat {
    min-height: 82px;
    border-top: 1px solid rgba(47, 86, 98, 0.18);
    border-left: 0;
  }

  .google-map-panel iframe {
    height: 260px;
  }

  .section-heading select {
    width: 100%;
  }

  .provider-grid,
  .council-grid,
  .landing-grid,
  .pricing-grid,
  .info-grid,
  .step-grid,
  .admin-summary,
  .admin-board {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .main,
  .sidebar {
    padding: 16px;
  }

  .tabs {
    display: grid;
    grid-template-columns: 1fr;
  }

  .job-row {
    grid-template-columns: 1fr;
  }

  .form-grid,
  .admin-field-grid,
  .admin-item {
    grid-template-columns: 1fr;
  }

  .no-print {
    display: none;
  }

  .card-actions {
    align-items: stretch;
    flex-direction: column;
  }
}
