/* ============================================================
   Directory Core - Stylesheet
   Version: 0.4.2

   RE-SKINNING A CLONE FOR ANOTHER TRADE:
   Edit the variables in :root below. Nothing else needs
   touching for a colour change.
   ============================================================ */

:root {
  /* Palette - "fresh laundry" */
  --foam:       #F7FAF9;   /* page background, fresh tinted white   */
  --card:       #FFFFFF;   /* cards and panels                      */
  --pine:       #14302A;   /* ink and dark buttons                  */
  --pine-soft:  #21443C;   /* dark button hover                     */
  --fresh:      #0E8A70;   /* the verified green: badge and links   */
  --fresh-deep: #0B6E59;   /* green button hover                    */
  --fresh-tint: #E2F2ED;   /* soft green wash                       */
  --citrus:     #E8A33D;   /* star ratings                          */
  --mist:       #DCE7E2;   /* borders and dividers                  */
  --sage:       #5C6F69;   /* secondary text                        */
  --danger:     #B3402E;   /* failed checks                         */

  /* Type */
  --font-display: "Bricolage Grotesque", "Segoe UI", system-ui, sans-serif;
  --font-body: "Figtree", "Segoe UI", system-ui, sans-serif;

  /* Shape */
  --radius: 16px;
  --radius-pill: 999px;
  --shadow: 0 10px 30px rgba(20, 48, 42, 0.08);
  --shadow-soft: 0 4px 14px rgba(20, 48, 42, 0.06);
}

/* ---------- Reset essentials ---------- */
*, *::before, *::after { box-sizing: border-box; }
body, h1, h2, h3, p, ul, figure { margin: 0; }
ul { padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; }
input, select, button { font: inherit; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--pine);
  background: var(--foam);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.1rem, 6.5vw, 3.4rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.1rem); }
h3 { font-size: 1.15rem; }

a { color: var(--fresh); }

.container {
  width: min(100% - 2.5rem, 1060px);
  margin-inline: auto;
}
.container-narrow { max-width: 680px; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--pine);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 0 0 var(--radius) 0;
  z-index: 50;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 50px;
  padding: 0.7rem 1.5rem;
  border: 0;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.18s ease, transform 0.18s ease;
}
.btn:active { transform: scale(0.98); }

.btn-dark { background: var(--pine); color: #fff; }
.btn-dark:hover { background: var(--pine-soft); }

.btn-fresh { background: var(--fresh); color: #fff; }
.btn-fresh:hover { background: var(--fresh-deep); }

.btn-light { background: #fff; color: var(--pine); }
.btn-light:hover { background: var(--fresh-tint); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 250, 249, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--mist);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.8rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--pine);
}

.brand-mark {
  display: inline-flex;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--fresh);
  align-items: center;
  justify-content: center;
}
.brand-mark svg { width: 20px; height: 20px; fill: #fff; }

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}
.site-nav a {
  color: var(--pine);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}
.site-nav a:hover { color: var(--fresh); }

.nav-cta {
  background: var(--fresh-tint);
  border-radius: var(--radius-pill);
  padding: 0.5rem 1rem;
}

/* Tight screens: keep the one essential nav action */
@media (max-width: 480px) {
  .site-nav a:not(.nav-cta) { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  padding-block: clamp(2.6rem, 8vw, 5rem) clamp(2.2rem, 6vw, 3.6rem);
  background:
    radial-gradient(680px 340px at 85% -10%, var(--fresh-tint), transparent 70%),
    radial-gradient(520px 300px at -10% 20%, rgba(232, 163, 61, 0.10), transparent 70%);
  text-align: center;
}

.hero-eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fresh);
  margin-bottom: 1rem;
}

.hero h1 { max-width: 17ch; margin-inline: auto; }

.hero-sub {
  max-width: 52ch;
  margin: 1.1rem auto 0;
  color: var(--sage);
  font-size: 1.06rem;
}

/* ---------- Search panel ---------- */
.search-panel {
  display: grid;
  gap: 0.8rem;
  background: var(--card);
  border: 1px solid var(--mist);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 1rem;
  margin: 1.8rem auto 0;
  max-width: 860px;
  text-align: left;
}

.search-field { display: grid; gap: 0.25rem; }

.search-field label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
  padding-left: 0.3rem;
}

.search-field input,
.search-field select {
  min-height: 52px;
  border: 1px solid var(--mist);
  border-radius: 12px;
  padding: 0.6rem 0.9rem;
  background: var(--foam);
  color: var(--pine);
  width: 100%;
}

.search-field input:focus,
.search-field select:focus {
  outline: 3px solid var(--fresh-tint);
  border-color: var(--fresh);
}

.search-btn { width: 100%; }

@media (min-width: 760px) {
  .search-panel {
    grid-template-columns: 1.25fr 1fr auto;
    align-items: end;
    padding: 1.1rem;
  }
  .search-btn { width: auto; padding-inline: 2rem; }
}

/* ---------- Trust strip ---------- */
.trust-strip {
  display: grid;
  gap: 1rem;
  margin: 2.2rem auto 0;
  max-width: 860px;
  text-align: left;
}

.trust-strip li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.trust-strip svg {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  fill: var(--fresh);
  margin-top: 0.15rem;
}

.trust-strip strong { display: block; font-size: 0.98rem; }
.trust-strip span { color: var(--sage); font-size: 0.9rem; }

@media (min-width: 760px) {
  .trust-strip { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Sections ---------- */
.section { padding-block: clamp(2.4rem, 7vw, 4.2rem); }

.section-sub {
  color: var(--sage);
  max-width: 56ch;
  margin-top: 0.6rem;
  margin-bottom: 1.8rem;
}

/* ---------- Listing card ---------- */
.listing-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 1.2rem;
  max-width: 640px;
}

.results-list .listing-card { margin-bottom: 1.1rem; }

.demo-tag {
  position: absolute;
  top: -0.7rem;
  left: 1.1rem;
  background: var(--pine);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-pill);
}

.card-head {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.logo-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  border-radius: 14px;
  background: var(--fresh-tint);
  color: var(--fresh-deep);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
}

.card-title { flex: 1 1 12rem; min-width: 0; }
.card-title h3 { overflow-wrap: anywhere; }

.card-rating {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.92rem;
  margin-top: 0.15rem;
}

.stars { color: var(--citrus); letter-spacing: 0.08em; }
.rating-num { font-weight: 700; }
.rating-count, .rating-none { color: var(--sage); }

.badge-verified {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--fresh);
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.badge-verified svg { width: 15px; height: 15px; fill: #fff; }

.card-desc { color: var(--sage); margin-top: 0.9rem; }

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.9rem;
}

.chip {
  background: var(--foam);
  border: 1px solid var(--mist);
  border-radius: var(--radius-pill);
  padding: 0.22rem 0.75rem;
  font-size: 0.84rem;
  color: var(--sage);
}

.card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--mist);
}

.price-guide {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
}
.price-guide-muted { color: var(--sage); font-weight: 600; font-size: 0.95rem; }

/* ---------- Results page ---------- */
.results-head {
  padding-block: clamp(1.8rem, 5vw, 3rem) 0.5rem;
  background: radial-gradient(680px 300px at 85% -30%, var(--fresh-tint), transparent 70%);
}

.results-head .search-panel { margin-top: 1.4rem; }

@media (min-width: 760px) {
  .search-panel-compact { grid-template-columns: 1fr auto; }
}

.results-count {
  color: var(--sage);
  font-weight: 600;
  margin-bottom: 1.4rem;
}

.empty-state {
  background: var(--card);
  border: 1px dashed var(--mist);
  border-radius: var(--radius);
  padding: 2rem 1.4rem;
  text-align: center;
  max-width: 640px;
}
.empty-state h2 { margin-bottom: 0.5rem; }
.empty-state p { color: var(--sage); margin-bottom: 0.8rem; }
.empty-state .btn { margin-top: 0.4rem; }

/* ---------- For-cleaners band ---------- */
.cta-band {
  background: var(--pine);
  color: #fff;
  padding-block: clamp(2.6rem, 7vw, 4rem);
  text-align: center;
}

.cta-band h2 { color: #fff; }

.cta-band p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 54ch;
  margin: 0.9rem auto 1.5rem;
}

.cta-note {
  font-size: 0.85rem;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ---------- Setup check ---------- */
.check-list { display: grid; gap: 0.8rem; margin-bottom: 1.6rem; }

.check-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
}

.check-item strong { display: block; }
.check-item span:not(.check-icon) { color: var(--sage); font-size: 0.92rem; }

.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
}

.check-pass .check-icon { background: var(--fresh); }
.check-fail .check-icon { background: var(--danger); }
.check-done { text-align: left; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--mist);
  padding-block: 2.2rem;
  background: var(--card);
}

.footer-inner {
  display: grid;
  gap: 1rem;
}

.footer-brand { font-size: 1.1rem; }

.footer-line {
  color: var(--sage);
  font-size: 0.9rem;
  max-width: 46ch;
  margin-top: 0.3rem;
}

.footer-meta { color: var(--sage); font-size: 0.85rem; }

@media (min-width: 760px) {
  .footer-inner {
    grid-template-columns: 1fr auto;
    align-items: end;
  }
}

/* ---------- Motion and focus ---------- */
.hero > .container {
  animation: rise 0.55s ease both;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

:focus-visible {
  outline: 3px solid var(--fresh);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero > .container { animation: none; }
  .btn { transition: none; }
}

/* ============================================================
   Phase 2 additions (v0.2.0)
   Profiles, area pages, grids, breadcrumbs and forms
   ============================================================ */

/* ---------- Buttons ---------- */
.btn-outline {
  background: var(--card);
  color: var(--pine);
  border: 1.5px solid var(--mist);
}
.btn-outline:hover { border-color: var(--fresh); color: var(--fresh-deep); }

.btn-small { min-height: 42px; padding: 0.45rem 1.1rem; font-size: 0.92rem; }

/* ---------- Card grid ---------- */
.card-grid { display: grid; gap: 1.1rem; }
.card-grid .listing-card { margin: 0; max-width: none; }

@media (min-width: 760px) {
  .card-grid { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }
}

.card-link { color: inherit; text-decoration: none; }
.card-link:hover { color: var(--fresh-deep); text-decoration: underline; }

.card-actions { display: inline-flex; gap: 0.5rem; flex-wrap: wrap; }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  font-size: 0.88rem;
  color: var(--sage);
  margin-bottom: 1.1rem;
}
.breadcrumbs a { color: var(--sage); text-decoration: none; }
.breadcrumbs a:hover { color: var(--fresh-deep); text-decoration: underline; }
.breadcrumbs span:last-child {
  color: var(--pine);
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 16rem;
}

/* ---------- Profile page ---------- */
.profile-head {
  padding-block: clamp(1.6rem, 5vw, 2.8rem) 0;
  background: radial-gradient(680px 300px at 85% -30%, var(--fresh-tint), transparent 70%);
}

.profile-card {
  background: var(--card);
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.4rem;
}

.profile-card h1 { font-size: clamp(1.5rem, 4.5vw, 2.2rem); }

.logo-circle-lg { width: 64px; height: 64px; font-size: 1.3rem; border-radius: 18px; }

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

.verified-note {
  margin-top: 1rem;
  padding: 0.7rem 0.9rem;
  background: var(--fresh-tint);
  border-radius: 12px;
  color: var(--fresh-deep);
  font-size: 0.9rem;
  font-weight: 500;
}

.profile-body h2 {
  margin-top: 2rem;
  margin-bottom: 0.7rem;
  font-size: 1.25rem;
}
.profile-body h2:first-child { margin-top: 0; }

.prose { max-width: 64ch; color: var(--pine); }

.muted { color: var(--sage); }

/* ---------- Reviews ---------- */
.review-list { display: grid; gap: 0.9rem; max-width: 720px; }

.review-card {
  background: var(--card);
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
}

.review-title { font-weight: 700; margin-top: 0.4rem; }
.review-card p + p { margin-top: 0.4rem; }

.owner-response {
  margin-top: 0.8rem;
  padding: 0.7rem 0.9rem;
  background: var(--foam);
  border-left: 3px solid var(--fresh);
  border-radius: 0 10px 10px 0;
  font-size: 0.93rem;
}
.owner-response-label { font-weight: 700; font-size: 0.82rem; color: var(--fresh-deep); }

/* ---------- Area pages and chips ---------- */
.chip-link { text-decoration: none; display: inline-block; }
a.chip-link:hover { border-color: var(--fresh); color: var(--fresh-deep); background: var(--fresh-tint); }

.chip-cloud { margin-top: 0.4rem; }

.section-tint { background: linear-gradient(var(--fresh-tint), transparent 85%); }

.nearby-heading { margin-top: 2.4rem; margin-bottom: 0.8rem; font-size: 1.2rem; }

/* ---------- Forms (add listing) ---------- */
.field { display: grid; gap: 0.3rem; margin-bottom: 1rem; }

.field label { font-weight: 600; font-size: 0.95rem; }

.field input,
.field select,
.field textarea {
  min-height: 50px;
  border: 1px solid var(--mist);
  border-radius: 12px;
  padding: 0.6rem 0.9rem;
  background: var(--card);
  color: var(--pine);
  width: 100%;
}
.field textarea { min-height: 120px; resize: vertical; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 3px solid var(--fresh-tint);
  border-color: var(--fresh);
}

.field-note { font-size: 0.85rem; color: var(--sage); }

form h2 { margin-top: 1.8rem; margin-bottom: 0.8rem; font-size: 1.2rem; }

.check-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.check-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--card);
  border: 1px solid var(--mist);
  border-radius: 10px;
  padding: 0.5rem 0.7rem;
  font-size: 0.9rem;
  cursor: pointer;
}
.check-pill:hover { border-color: var(--fresh); }
.check-pill input { accent-color: var(--fresh); width: 17px; height: 17px; }
.check-pill:has(input:checked) { border-color: var(--fresh); background: var(--fresh-tint); }

.notice {
  border-radius: 12px;
  padding: 0.8rem 1rem;
  margin-bottom: 0.9rem;
  font-size: 0.95rem;
}
.notice-good { background: var(--fresh-tint); color: var(--fresh-deep); }
.notice-good a { color: var(--fresh-deep); font-weight: 700; }
.notice-bad { background: #F7E6E2; color: var(--danger); }

/* ============================================================
   Phase 2.5 additions (v0.3.0)
   Join page: founding band, include grid, steps, FAQ
   ============================================================ */

.hero-compact { padding-block: clamp(2rem, 6vw, 3.4rem); }

/* ---------- Founding band ---------- */
.founding-band {
  display: grid;
  gap: 1.2rem;
  align-items: center;
  background: var(--pine);
  color: var(--foam);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 4vw, 2.2rem);
}
@media (min-width: 800px) {
  .founding-band { grid-template-columns: 1.6fr 1fr; }
}
.founding-band h2 { color: #fff; margin: 0.2rem 0 0.5rem; }
.founding-band p { color: var(--mist); }

.founding-tag {
  display: inline-block;
  background: var(--fresh);
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.3rem 0.8rem;
}

.founding-counter {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 1rem 1.2rem;
  text-align: center;
  font-size: 1.02rem;
  color: var(--foam) !important;
}
.founding-counter strong { font-size: 1.5rem; color: #fff; }

/* ---------- Include grid ---------- */
.include-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.2rem;
}
@media (min-width: 760px) {
  .include-grid { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
}

.include-card {
  background: var(--card);
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  padding: 1.2rem 1.3rem;
}
.include-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.include-card p { font-size: 0.95rem; color: var(--pine); }

.include-card-soon { background: var(--foam); border-style: dashed; }

.soon-tag {
  background: var(--citrus);
  color: var(--pine);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
}

.market-line {
  margin-top: 1.4rem;
  font-size: 0.95rem;
  color: var(--sage);
  max-width: 60ch;
}

/* ---------- Steps ---------- */
.steps {
  counter-reset: step;
  list-style: none;
  display: grid;
  gap: 0.9rem;
  margin-top: 1.2rem;
  max-width: 640px;
}
.steps li {
  counter-increment: step;
  position: relative;
  background: var(--card);
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  padding: 1rem 1.2rem 1rem 3.4rem;
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  background: var(--fresh);
  color: #fff;
  font-weight: 700;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
}

/* ---------- FAQ ---------- */
.faq-item {
  background: var(--card);
  border: 1px solid var(--mist);
  border-radius: 14px;
  padding: 0.9rem 1.1rem;
  margin-bottom: 0.7rem;
}
.faq-item summary {
  font-weight: 700;
  cursor: pointer;
  color: var(--pine);
}
.faq-item[open] summary { margin-bottom: 0.5rem; }
.faq-item p { font-size: 0.95rem; }

/* ---------- Honeypot (hidden from people, visible to bots) ---------- */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ============================================================
   v0.4.2 - One centre axis for the whole site
   The hero and the dark bands were already centred; these rules
   bring every section onto the same centre line.
   ============================================================ */

/* Section headings and their intro lines sit on the centre line. */
.section h2,
.section .section-sub {
  text-align: center;
}
.section .section-sub {
  max-width: 62ch;
  margin-inline: auto;
}

/* Exceptions where centred headings would hurt reading: profile
   detail headings and headings inside forms stay left. */
.profile-body h2,
form h2 { text-align: left; }

/* Results and area pages: the heading block centres, breadcrumbs
   included. The search-again panel centres via its own margins. */
.results-head { text-align: center; }
.results-head .breadcrumbs { justify-content: center; }
.results-head .section-sub { margin-inline: auto; max-width: 62ch; }
.results-head h1 { margin-bottom: 1rem; }
.results-count { text-align: center; }

/* Centre the verification steps, the area chip clouds and the
   market comparison line as blocks. */
.steps { margin-inline: auto; }
.chip-row.chip-cloud { justify-content: center; }
.results-list .chip-row { justify-content: center; }
.market-line { margin-inline: auto; text-align: center; }

/* A single search result takes the row, centred at a readable
   width instead of sitting as one skinny card. */
.card-grid .listing-card:only-child {
  grid-column: 1 / -1;
  max-width: 640px;
  margin-inline: auto;
}
