/* ============================================================
   PlumberData — design system
   Derived from "PlumberData Website.dc.html" (Claude Design)
   on the evyAI design system (Poppins / Nunito / Inter).
   Brand accent overridden from evyAI purple to PlumberData copper.
   ============================================================ */

:root {
  /* Type */
  --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Nunito', -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-metric: 'Inter', -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* Brand — copper */
  --copper: #B87333;
  --copper-dark: #8F5726;
  --copper-light: #D9A05B;
  --bone: #F6F2EC;
  --bone-border: #E5D8C6;
  --bone-muted: #8A8177;
  --bone-line: #C9B79C;

  /* Ink + text */
  --ink-900: #0F1113;
  --ink: #23252A;
  --ink-700: #4B5058;
  --muted: #737A85;
  --muted-light: #A8AEB8;

  /* Lines + surfaces */
  --line: #EDEFF2;
  --line-mid: #E5E8EC;
  --line-strong: #D7DBE0;
  --surface: #FFFFFF;
  --surface-alt: #F8F9FA;
  --surface-gray: #F1F3F5;

  /* Dark chrome */
  --dark: #23252A;
  --dark-deep: #1A1C20;
  --dark-line: #3A3D44;

  /* Status */
  --green: #067A55;
  --amber: #B4690E;
  --red: #B42318;

  --wrap: 1280px;
  --radius: 12px;
  --radius-lg: 18px;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-primary);
  color: var(--ink-700);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { max-width: 100%; }
h1, h2, h3, h4 { margin: 0; color: var(--ink-900); letter-spacing: -0.015em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

a { color: var(--copper); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--copper-dark); }

:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 2px;
  border-radius: 6px;
}

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 32px; }
.tnum { font-variant-numeric: tabular-nums; }
.eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted);
}
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: 12px 18px;
  border-radius: 0 0 10px 0; font-size: 14px; font-weight: 600;
}
.skip-link:focus { left: 0; color: #fff; }

/* ---------------------------------------------------------- Nav */
.nav {
  height: 64px; display: flex; align-items: center; gap: 26px;
  background: transparent;
}
.nav-bar { border-bottom: 1px solid var(--line); background: var(--surface); }
.nav-bar--bone { background: var(--bone); border-bottom: none; }
.nav-bar--dark { background: var(--dark); border-bottom: none; }

.brand { display: flex; align-items: center; gap: 9px; flex: none; }
.brand-name { font-size: 15px; font-weight: 700; letter-spacing: .02em; white-space: nowrap; }
.brand-name .a { color: var(--ink); }
.brand-name .b { color: var(--copper); }
.nav-bar--dark .brand-name .a { color: #fff; }
.nav-bar--dark .brand-name .b { color: var(--copper-light); }

.nav-links { display: flex; align-items: center; gap: 22px; font-size: 13.5px; font-weight: 500; }
.nav-links a { color: var(--ink-700); }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--ink); font-weight: 600; }
.nav-bar--dark .nav-links a { color: var(--muted-light); }
.nav-bar--dark .nav-links a:hover,
.nav-bar--dark .nav-links a[aria-current="page"] { color: #fff; font-weight: 600; }

.nav-right { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.nav-signin { font-size: 13.5px; font-weight: 600; color: var(--ink-700); }
.nav-bar--dark .nav-signin { color: var(--muted-light); }
.nav-bar--dark .nav-signin:hover { color: #fff; }

.nav-toggle {
  display: none; margin-left: auto; background: none; border: 0;
  padding: 8px; color: var(--ink-700); cursor: pointer; border-radius: 8px;
}
.nav-bar--dark .nav-toggle { color: var(--muted-light); }

/* Nav search (directory / profile chrome) */
.nav-search {
  flex: 1; max-width: 520px; height: 38px; border: 1px solid var(--line-strong);
  border-radius: 10px; display: flex; align-items: center; gap: 9px; padding: 0 12px;
  background: var(--surface); min-width: 0;
}
.nav-search span { font-size: 13.5px; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.nav-search .loc { margin-left: auto; font-size: 12px; color: var(--muted-light); flex: none; }

/* ---------------------------------------------------------- Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 44px; padding: 0 22px; border-radius: 10px; border: 1px solid transparent;
  font-family: inherit; font-size: 14px; font-weight: 700; cursor: pointer;
  white-space: nowrap; transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.btn-sm { height: 36px; padding: 0 16px; font-size: 13px; }
.btn-lg { height: 52px; padding: 0 30px; font-size: 16px; }
.btn-block { width: 100%; }

.btn-copper { background: var(--copper); color: #fff; }
.btn-copper:hover { background: var(--copper-dark); color: #fff; }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: #000; color: #fff; }
.btn-gold { background: var(--copper-light); color: var(--ink); }
.btn-gold:hover { background: #C9924D; color: var(--ink); }
.btn-outline { border-color: var(--line-strong); color: var(--ink); background: transparent; }
.btn-outline:hover { border-color: var(--ink); color: var(--ink); }
.btn-outline-bone { border-color: var(--bone-line); color: var(--ink); background: transparent; }
.btn-outline-bone:hover { border-color: var(--copper); color: var(--copper-dark); }

/* ---------------------------------------------------------- Verified badge */
.badge-verified {
  display: inline-flex; align-items: center; gap: 6px; height: 28px;
  padding: 0 12px 0 8px; border-radius: 14px;
  background: var(--bone); border: 1px solid var(--bone-border);
  font-size: 12px; font-weight: 700; color: var(--ink); white-space: nowrap;
}
.badge-verified--sm {
  height: 22px; padding: 0 8px 0 6px; border-radius: 11px;
  font-size: 10px; letter-spacing: .04em; color: var(--copper-dark);
}

.status { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; }
.status::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; flex: none; }
.status-active { color: var(--green); }
.status-due { color: var(--amber); }
.status-expired { color: var(--red); }
.status-none { color: var(--muted-light); }

.chip {
  display: inline-block; font-size: 11.5px; font-weight: 600; color: var(--ink-700);
  background: var(--surface-gray); border-radius: 6px; padding: 3px 8px;
}
.chip-lg { font-size: 13px; border-radius: 8px; padding: 7px 12px; color: var(--ink); }

/* ---------------------------------------------------------- Hero */
.hero { padding: 64px 0 56px; text-align: center; }
.hero h1 {
  font-size: clamp(32px, 5vw, 54px); line-height: 1.08; font-weight: 800;
  letter-spacing: -.03em; max-width: 820px; margin: 0 auto;
}
.hero-sub {
  font-size: 17px; line-height: 1.6; color: var(--ink-700);
  max-width: 600px; margin: 14px auto 0;
}

.searchbar {
  max-width: 820px; margin: 28px auto 0; display: flex; gap: 10px;
  background: var(--surface); border: 1px solid var(--line-strong);
  border-radius: 14px; padding: 10px; align-items: center;
  box-shadow: 0 1px 2px rgba(15,17,19,.04);
}
.searchbar-field { flex: 2; display: flex; align-items: center; gap: 10px; padding: 0 12px; min-width: 0; }
.searchbar-field--loc { flex: 1.2; }
.searchbar input {
  border: 0; outline: 0; font-family: inherit; font-size: 16px;
  color: var(--ink); background: transparent; width: 100%; min-width: 0; padding: 12px 0;
}
.searchbar input::placeholder { color: var(--muted-light); }
.searchbar-div { width: 1px; height: 28px; background: var(--line); flex: none; }

.popular {
  display: flex; align-items: center; gap: 10px; justify-content: center;
  flex-wrap: wrap; font-size: 13px; color: var(--muted); margin-top: 12px;
}
.popular a { font-weight: 600; color: var(--ink-700); }
.popular a:hover { color: var(--copper); }

/* ---------------------------------------------------------- Stat band */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid var(--line); }
.stat { padding: 28px 32px; border-right: 1px solid var(--line); display: flex; flex-direction: column; gap: 4px; }
.stat:last-child { border-right: 0; }
.stat-n { font-size: 34px; font-weight: 800; letter-spacing: -.02em; color: var(--ink-900); }
.stat-n--copper { color: var(--copper); }
.stat-l { font-size: 13px; color: var(--muted); }

/* ---------------------------------------------------------- Sections */
.section { padding: 48px 0; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 16px; }
.section-head h2, .section-head h3 { font-size: 22px; font-weight: 700; letter-spacing: -.01em; }
.section-head a { font-size: 13px; font-weight: 700; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.grid-2--tight { gap: 24px; }

.city-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
}
.city-cell {
  background: var(--surface); padding: 13px 14px; display: flex;
  flex-direction: column; gap: 2px; transition: background .15s ease;
}
.city-cell:hover { background: var(--bone); }
.city-cell .n { font-size: 14px; font-weight: 600; color: var(--ink); }
.city-cell .c { font-size: 12px; color: var(--muted); }

.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.svc-cell {
  border: 1px solid var(--line-mid); border-radius: var(--radius); padding: 14px 16px;
  display: flex; align-items: center; gap: 12px; transition: border-color .15s ease, background .15s ease;
}
.svc-cell:hover { border-color: var(--bone-border); background: var(--bone); }
.svc-icon {
  width: 34px; height: 34px; border-radius: 9px; background: var(--bone);
  display: inline-flex; align-items: center; justify-content: center; flex: none;
}
.svc-cell .n { font-size: 14px; font-weight: 600; color: var(--ink); }
.svc-cell .c { font-size: 12px; color: var(--muted); }

/* Verification band */
.verify-band {
  background: var(--surface-alt); border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line); padding: 48px 0;
}
.verify-grid { display: grid; grid-template-columns: 340px 1fr; gap: 48px; align-items: center; }
.verify-intro { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.verify-intro h2 { font-size: 26px; font-weight: 700; }
.verify-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.verify-col { display: flex; flex-direction: column; gap: 8px; }
.verify-col .n { font-size: 13px; font-weight: 700; color: var(--copper); }
.verify-col .t { font-size: 16px; font-weight: 600; color: var(--ink); }
.verify-col .b { font-size: 13.5px; line-height: 1.6; color: var(--muted); }

/* Audience cards */
.aud-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.aud {
  border: 1px solid var(--line-mid); border-radius: var(--radius-lg);
  padding: 32px; display: flex; flex-direction: column; gap: 16px;
}
.aud--bone { border-color: var(--bone-border); background: var(--bone); }
.aud .k { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.aud--bone .k { color: var(--bone-muted); }
.aud h2, .aud h3 { font-size: 26px; font-weight: 700; }
.aud p { font-size: 15px; line-height: 1.6; color: var(--ink-700); }
.aud-actions { display: flex; gap: 10px; margin-top: 4px; flex-wrap: wrap; }

/* ---------------------------------------------------------- Footer */
.footer { background: var(--dark); padding: 44px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr; gap: 32px; }
.footer-about { display: flex; flex-direction: column; gap: 14px; }
.footer-tag { font-size: 10px; font-weight: 600; letter-spacing: .28em; color: var(--muted); }
.footer-blurb { font-size: 13px; line-height: 1.6; color: var(--muted-light); }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h2 { font-size: 11.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.footer-col a { font-size: 13px; color: var(--line-strong); }
.footer-col a:hover { color: #fff; }
.footer-rule { height: 1px; background: var(--dark-line); margin: 32px 0; }
.footer-states { display: flex; flex-wrap: wrap; gap: 8px 14px; align-items: center; }
.footer-states h2 { font-size: 11.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-right: 6px; }
.footer-states a { font-size: 12.5px; color: var(--muted-light); }
.footer-states a:hover { color: #fff; }
.footer-states .all { font-weight: 700; color: var(--copper-light); }
.footer-base {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap; font-size: 12px; color: var(--muted); margin-top: 32px;
}
.footer-base nav { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-base a { color: var(--muted); }
.footer-base a:hover { color: #fff; }

/* ---------------------------------------------------------- Directory */
.dir-layout { display: grid; grid-template-columns: 264px 1fr; align-items: start; }
.filters {
  border-right: 1px solid var(--line); padding: 24px 20px;
  display: flex; flex-direction: column; gap: 22px; position: sticky; top: 0;
}
.filters-head { display: flex; align-items: center; justify-content: space-between; }
.filters-head h2 { font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ink); }
.filters-head a { font-size: 12.5px; font-weight: 600; }
.fgroup { display: flex; flex-direction: column; gap: 10px; }
.fgroup > .eyebrow { margin-bottom: 0; }
.finput {
  height: 38px; border: 1px solid var(--line-strong); border-radius: 10px;
  display: flex; align-items: center; padding: 0 12px; gap: 8px;
  font-size: 13.5px; color: var(--ink); background: var(--surface);
}
.frange { display: flex; align-items: center; gap: 9px; }
.frange-track { flex: 1; height: 4px; border-radius: 2px; background: var(--line); position: relative; }
.frange-fill { position: absolute; inset: 0 55% 0 0; background: var(--copper); border-radius: 2px; }
.frange-val { font-size: 12px; font-weight: 600; color: var(--ink-700); white-space: nowrap; }

.fcheck { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--ink); cursor: pointer; }
.fcheck input { position: absolute; opacity: 0; width: 0; height: 0; }
.fbox {
  width: 16px; height: 16px; border-radius: 4px; border: 1.5px solid var(--line-strong);
  display: inline-flex; align-items: center; justify-content: center; flex: none; transition: all .15s ease;
}
.fbox svg { opacity: 0; }
.fcheck input:checked + .fbox { background: var(--copper); border-color: var(--copper); }
.fcheck input:checked + .fbox svg { opacity: 1; }
.fcheck input:focus-visible + .fbox { outline: 2px solid var(--copper); outline-offset: 2px; }
.fcount { margin-left: auto; font-size: 12px; color: var(--muted-light); }

.ftoggle { display: flex; align-items: center; justify-content: space-between; font-size: 13.5px; color: var(--ink); cursor: pointer; }
.ftoggle input { position: absolute; opacity: 0; width: 0; height: 0; }
.fswitch {
  width: 38px; height: 22px; border-radius: 11px; background: var(--line-strong);
  display: inline-flex; align-items: center; padding: 0 3px; flex: none; transition: background .15s ease;
}
.fswitch::after { content: ""; width: 16px; height: 16px; border-radius: 50%; background: #fff; transition: transform .15s ease; }
.ftoggle input:checked + .fswitch { background: var(--copper); }
.ftoggle input:checked + .fswitch::after { transform: translateX(16px); }
.ftoggle input:focus-visible + .fswitch { outline: 2px solid var(--copper); outline-offset: 2px; }

.fseg { display: flex; border: 1px solid var(--line-strong); border-radius: 10px; overflow: hidden; font-size: 12.5px; font-weight: 600; }
.fseg button {
  flex: 1; padding: 8px 0; border: 0; background: transparent; font-family: inherit;
  font-size: inherit; font-weight: inherit; color: var(--ink-700); cursor: pointer;
}
.fseg button + button { border-left: 1px solid var(--line-strong); }
.fseg button[aria-pressed="true"] { background: var(--bone); color: var(--copper-dark); }

.fdivider { height: 1px; background: var(--line); }

.results-head { padding: 22px 24px 16px; display: flex; flex-direction: column; gap: 14px; border-bottom: 1px solid var(--line); }
.results-top { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.crumb { font-size: 11.5px; font-weight: 500; color: var(--muted); }
.crumb a { font-weight: 600; }
.crumb span { color: var(--muted); }
.results-head h1 { font-size: 26px; font-weight: 700; letter-spacing: -.01em; margin: 4px 0; }
.results-meta { font-size: 13.5px; color: var(--ink-700); }
.results-meta strong { color: var(--ink); }
.sort { display: flex; align-items: center; gap: 10px; }
.sort-label { font-size: 12.5px; color: var(--muted); }
.sort select {
  height: 36px; border: 1px solid var(--line-strong); border-radius: 10px; padding: 0 34px 0 12px;
  font-family: inherit; font-size: 13px; font-weight: 600; color: var(--ink); background: var(--surface);
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%23737A85' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
}
.active-filters { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.active-filters .lbl { font-size: 12px; color: var(--muted); }
.afchip {
  display: inline-flex; align-items: center; gap: 7px; height: 28px;
  padding: 0 9px 0 11px; border-radius: 8px; background: var(--surface-gray);
  font-size: 12.5px; font-weight: 600; color: var(--ink); border: 0;
  font-family: inherit; cursor: pointer;
}
.afchip:hover { background: var(--line); }

.rtable-head, .rrow {
  display: grid; grid-template-columns: 2.5fr 1.1fr 1.7fr 1.15fr 108px;
  gap: 18px; padding: 16px 24px; border-bottom: 1px solid var(--line); align-items: center;
}
.rtable-head {
  padding: 11px 24px; font-size: 12px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; color: var(--muted);
}
.rrow { transition: background .15s ease; }
.rrow:hover { background: var(--surface-alt); }
.rname { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.rname a { font-size: 16px; font-weight: 600; color: var(--ink); }
.rname a:hover { color: var(--copper-dark); }
.rmeta { font-size: 12px; font-weight: 500; color: var(--muted); margin-top: 4px; }
.rcity { font-size: 14px; color: var(--ink-700); }
.rtags { display: flex; gap: 6px; flex-wrap: wrap; }
.rview { font-size: 13px; font-weight: 700; text-align: right; }

.pager { padding: 18px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.pager-count { font-size: 13px; color: var(--muted); }
.pager-nav { display: flex; align-items: center; gap: 6px; }
.pager-nav a, .pager-nav span {
  min-width: 32px; height: 32px; border: 1px solid var(--line-strong); border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600; color: var(--ink-700); padding: 0 6px;
}
.pager-nav a:hover { border-color: var(--ink); color: var(--ink); }
.pager-nav .cur { background: var(--ink); border-color: var(--ink); color: #fff; font-weight: 700; }
.pager-nav .gap { border: 0; color: var(--muted-light); min-width: 0; }
.pager-nav .off { color: var(--muted-light); }

/* ---------------------------------------------------------- Profile */
.prof-layout { display: grid; grid-template-columns: 1fr 344px; gap: 32px; align-items: start; padding: 16px 0 48px; }
.prof-main { display: flex; flex-direction: column; gap: 24px; min-width: 0; }
.prof-head { display: flex; gap: 20px; align-items: flex-start; flex-wrap: wrap; }
.prof-mark {
  width: 72px; height: 72px; border-radius: 14px; background: var(--bone);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 700; color: var(--copper); flex: none;
}
.prof-titles { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.prof-titles h1 { font-size: clamp(24px, 4vw, 32px); font-weight: 700; letter-spacing: -.015em; }
.prof-title-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.prof-sub { font-size: 14px; color: var(--ink-700); }
.prof-facts { display: flex; align-items: center; gap: 14px; font-size: 13px; color: var(--muted); flex-wrap: wrap; }

.tabs { display: flex; gap: 26px; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.tabs a { font-size: 14px; font-weight: 500; color: var(--muted); padding: 0 0 12px; border-bottom: 2px solid transparent; }
.tabs a:hover { color: var(--ink); }
.tabs a[aria-current="true"] { font-weight: 700; color: var(--ink); border-bottom-color: var(--copper); }

.prof-lede { font-size: 15px; line-height: 1.65; color: var(--ink-700); max-width: 640px; text-wrap: pretty; }
.block { display: flex; flex-direction: column; gap: 12px; }

.dtable { border: 1px solid var(--line-mid); border-radius: var(--radius); overflow: hidden; }
.dtable table { width: 100%; border-collapse: collapse; }
.dtable th {
  text-align: left; padding: 10px 16px; background: var(--surface-alt);
  border-bottom: 1px solid var(--line); font-size: 12px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; color: var(--muted);
}
.dtable td { padding: 13px 16px; border-bottom: 1px solid var(--line); font-size: 14px; color: var(--ink-700); }
.dtable tr:last-child td { border-bottom: 0; }
.dtable td.k { font-weight: 500; color: var(--ink); }

.hours { display: flex; flex-direction: column; }
.hours-row { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.hours-row dt { color: var(--ink-700); }
.hours-row dd { margin: 0; color: var(--ink); font-weight: 500; }

.panel { border: 1px solid var(--line-mid); border-radius: var(--radius); padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.panel p { font-size: 14px; color: var(--ink-700); line-height: 1.6; }

.nearby { border: 1px solid var(--line-mid); border-radius: var(--radius); overflow: hidden; }
.nearby-row {
  display: grid; grid-template-columns: 2fr 1fr 1fr 84px; gap: 16px;
  padding: 12px 16px; border-bottom: 1px solid var(--line); align-items: center;
}
.nearby-row:last-child { border-bottom: 0; }
.nearby-row:hover { background: var(--surface-alt); }
.nearby-name { display: flex; align-items: center; gap: 8px; }
.nearby-name a { font-size: 14px; font-weight: 600; color: var(--ink); }
.nearby-name a:hover { color: var(--copper-dark); }
.nearby-row .c { font-size: 13.5px; color: var(--ink-700); }
.nearby-row .m { font-size: 13px; color: var(--muted); }
.nearby-row .v { font-size: 13px; font-weight: 700; text-align: right; }

.rail { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 16px; }
.rail-card { border: 1px solid var(--line-mid); border-radius: 16px; padding: 20px; display: flex; flex-direction: column; gap: 14px; }
.rail-card--alt { background: var(--surface-alt); border-color: var(--line); padding: 16px 20px; gap: 8px; }
.rail-phone { font-size: 24px; font-weight: 700; letter-spacing: -.01em; color: var(--ink-900); }
.rail-phone:hover { color: var(--copper-dark); }
.rail-split { display: flex; gap: 8px; }
.rail-split .btn { flex: 1; height: 38px; padding: 0 10px; font-size: 13px; font-weight: 600; color: var(--ink-700); }
.rail-facts { display: flex; flex-direction: column; gap: 8px; font-size: 13.5px; }
.rail-facts > div { display: flex; justify-content: space-between; gap: 16px; }
.rail-facts dt { color: var(--muted); }
.rail-facts dd { margin: 0; color: var(--ink); font-weight: 500; text-align: right; }
.prov { display: flex; flex-direction: column; gap: 10px; font-size: 13.5px; }
.prov-item { display: flex; align-items: center; gap: 9px; color: var(--ink-700); }
.prov-dot { width: 7px; height: 7px; border-radius: 50%; flex: none; background: var(--green); }
.prov-dot--old { background: var(--muted-light); }
.rail-card--alt .t { font-size: 13.5px; font-weight: 600; color: var(--ink); }
.rail-card--alt .b { font-size: 13px; line-height: 1.55; color: var(--muted); }

/* Thin-record promoted contact */
.thin-contact {
  border: 1px solid var(--bone-border); background: var(--bone); border-radius: 16px;
  padding: 20px; display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.notice {
  border: 1px solid var(--line-mid); background: var(--surface-alt); border-radius: var(--radius);
  padding: 14px 16px; font-size: 13.5px; line-height: 1.6; color: var(--ink-700);
  display: flex; gap: 10px; align-items: flex-start;
}

/* ---------------------------------------------------------- Claim */
.claim-layout { display: grid; grid-template-columns: 1fr 460px; gap: 48px; align-items: start; padding: 56px 0; }
.claim-intro { display: flex; flex-direction: column; gap: 32px; }
.claim-kicker { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--copper); }
.claim-intro h1 { font-size: clamp(30px, 4.6vw, 44px); line-height: 1.1; font-weight: 800; letter-spacing: -.025em; max-width: 620px; }
.claim-intro .lede { font-size: 16px; line-height: 1.65; color: var(--ink-700); max-width: 600px; }
.value-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.value {
  border: 1px solid var(--line-mid); border-radius: 14px; padding: 18px;
  display: flex; gap: 14px; align-items: flex-start;
}
.value-n {
  width: 32px; height: 32px; border-radius: 8px; background: var(--bone);
  display: inline-flex; align-items: center; justify-content: center; flex: none;
  font-size: 13px; font-weight: 700; color: var(--copper);
}
.value .t { font-size: 15px; font-weight: 600; color: var(--ink); }
.value .b { font-size: 13px; line-height: 1.55; color: var(--muted); margin-top: 4px; }

.badge-block {
  border: 1px solid var(--bone-border); background: var(--bone); border-radius: var(--radius-lg);
  padding: 28px; display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
}
.badge-block h2 { font-size: 20px; font-weight: 700; letter-spacing: -.01em; }
.badge-block p { font-size: 14.5px; line-height: 1.6; color: var(--ink-700); margin: 10px 0; }
.badge-pill {
  display: inline-flex; align-items: center; gap: 7px; height: 30px;
  padding: 0 13px 0 9px; border-radius: 15px; background: #fff; border: 1px solid var(--bone-border);
  font-size: 12.5px; font-weight: 700; color: var(--ink);
}

.form-card {
  border: 1px solid var(--line-strong); border-radius: var(--radius-lg); padding: 28px;
  display: flex; flex-direction: column; gap: 20px; background: var(--surface);
  position: sticky; top: 24px;
}
.form-card h2 { font-size: 20px; font-weight: 700; letter-spacing: -.01em; }
.form-step { font-size: 13.5px; color: var(--muted); margin-top: 6px; }
.progress { display: flex; gap: 6px; }
.progress span { flex: 1; height: 4px; border-radius: 2px; background: var(--line); }
.progress span.on { background: var(--copper); }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 13px; font-weight: 600; color: var(--ink); }
.field input, .field select {
  height: 44px; border: 1px solid var(--line-strong); border-radius: 10px;
  padding: 0 13px; font-family: inherit; font-size: 14.5px; color: var(--ink);
  background: var(--surface); width: 100%;
}
.field select {
  appearance: none; padding-right: 34px; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%23737A85' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 13px center;
}
.field input::placeholder { color: var(--muted-light); }
.field input:focus, .field select:focus { outline: 0; border-color: var(--copper); border-width: 1.5px; }
.field .hint { font-size: 12px; color: var(--muted); }
.field .hint-ok { font-size: 12px; color: var(--green); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-fine { font-size: 12px; line-height: 1.55; color: var(--muted); text-align: center; }
.form-note {
  border: 1px solid var(--bone-border); background: var(--bone);
  border-radius: 10px; padding: 12px 14px; font-size: 13px; line-height: 1.55; color: var(--ink-700);
}

/* ---------------------------------------------------------- Verification page */
.page-hero { background: var(--bone); padding: 56px 0; }
.page-hero h1 { font-size: clamp(30px, 4.6vw, 44px); line-height: 1.12; font-weight: 800; letter-spacing: -.025em; max-width: 720px; }
.page-hero .lede { font-size: 17px; line-height: 1.6; color: var(--ink-700); max-width: 640px; margin-top: 14px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step { border: 1px solid var(--line-mid); border-radius: var(--radius-lg); padding: 28px; display: flex; flex-direction: column; gap: 10px; }
.step .n { font-size: 13px; font-weight: 700; color: var(--copper); }
.step h2 { font-size: 20px; font-weight: 700; }
.step p { font-size: 14px; line-height: 1.6; color: var(--muted); }
.faq { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); padding: 18px 0; }
.faq summary {
  font-size: 16px; font-weight: 600; color: var(--ink); cursor: pointer;
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-size: 22px; font-weight: 400; color: var(--copper); flex: none; line-height: 1;
}
.faq details[open] summary::after { content: "–"; }
.faq p { font-size: 14.5px; line-height: 1.7; color: var(--ink-700); margin-top: 12px; max-width: 760px; }

.cta-band { background: var(--dark); padding: 56px 0; text-align: center; }
.cta-band h2 { font-size: clamp(26px, 3.6vw, 34px); font-weight: 800; letter-spacing: -.02em; color: #fff; }
.cta-band p { font-size: 16px; line-height: 1.6; color: var(--muted-light); max-width: 560px; margin: 14px auto 24px; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------------------------------------------------------- Responsive */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .verify-grid { grid-template-columns: 1fr; gap: 32px; }
  .claim-layout { grid-template-columns: 1fr; gap: 32px; }
  .form-card { position: static; }
  .prof-layout { grid-template-columns: 1fr; }
  .rail { position: static; }
}

@media (max-width: 900px) {
  .wrap { padding: 0 20px; }
  .nav-links, .nav-right, .nav-search { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-bar.open .nav-links {
    display: flex; position: absolute; left: 0; right: 0; top: 64px; z-index: 60;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--surface); border-bottom: 1px solid var(--line); padding: 8px 20px 16px;
  }
  .nav-bar--dark.open .nav-links { background: var(--dark); border-color: var(--dark-line); }
  .nav-bar.open .nav-links a { padding: 12px 0; width: 100%; border-bottom: 1px solid var(--line); }
  .nav-bar--dark.open .nav-links a { border-color: var(--dark-line); }
  .nav-bar.open .nav-right {
    display: flex; position: absolute; left: 0; right: 0; top: auto; z-index: 60;
    padding: 16px 20px; background: var(--surface); border-bottom: 1px solid var(--line);
    margin-left: 0;
  }
  .nav-bar { position: relative; }

  .stats { grid-template-columns: 1fr 1fr; }
  .stat { border-bottom: 1px solid var(--line); padding: 18px 20px; }
  .stat:nth-child(2n) { border-right: 0; }
  .stat-n { font-size: 24px; }

  .grid-2, .aud-grid, .verify-cols, .steps, .value-grid, .field-row { grid-template-columns: 1fr; gap: 24px; }
  .value-grid { gap: 14px; }
  .city-grid { grid-template-columns: 1fr 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .searchbar { flex-direction: column; align-items: stretch; gap: 8px; }
  .searchbar-div { width: auto; height: 1px; }
  .searchbar .btn { width: 100%; }
  .hero { padding: 40px 0 40px; }

  /* Directory → card list */
  .dir-layout { grid-template-columns: 1fr; }
  .filters {
    border-right: 0; border-bottom: 1px solid var(--line); position: static;
    max-height: 0; overflow: hidden; padding: 0 20px; gap: 0;
  }
  .filters.open { max-height: none; padding: 20px; gap: 22px; }
  .filters-trigger {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    width: 100%; padding: 14px 20px; border: 0; border-bottom: 1px solid var(--line);
    background: var(--surface); font-family: inherit; font-size: 14px; font-weight: 600;
    color: var(--ink); cursor: pointer;
  }
  .rtable-head { display: none; }
  .rrow {
    grid-template-columns: 1fr; gap: 8px; padding: 16px 20px;
  }
  .rview { text-align: left; }
  .results-head { padding: 20px; }
  .pager { padding: 16px 20px; }
  .prof-layout { padding: 8px 0 32px; }
  .nearby-row { grid-template-columns: 1fr auto; gap: 6px 12px; }
  .nearby-row .m { display: none; }
  .thin-contact { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .city-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .aud, .step, .form-card, .badge-block { padding: 22px; }
  .btn { width: 100%; }
  .aud-actions .btn, .cta-actions .btn { width: 100%; }
  .rail-split .btn { width: auto; }
  .badge-block { gap: 18px; }
}

.filters-trigger { display: none; }
@media (max-width: 900px) { .filters-trigger { display: flex; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

@media print {
  .nav-bar, .footer, .rail, .filters, .cta-band { display: none; }
}

/* Visually hidden (labels that the design shows only as placeholders) */
.sr-only {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0;
}
