/*
 * OneClick Directory — styles.css
 * Single stylesheet for all pages.
 * To rebrand: change the 4 variables in :root only.
 * ─────────────────────────────────────────────────
 */

/* ── BRAND VARIABLES ─────────────────────────────────────────────
   These are written by the PHP engine from site_config.json.
   To override manually, edit these 4 lines only.
*/
:root {
  --primary:       #dc2626;
  --primary-light: rgba(220,38,38,0.08);
  --primary-glow:  rgba(220,38,38,0.35);
  --accent:        #facc15;
  --dark:          #0a0a0a;
  --darkgray:      #171717;
  --text:          #111111;
  --text-2:        #6b7280;
  --text-3:        #9ca3af;
  --surface:       #ffffff;
  --surface-2:     #f9fafb;
  --border:        rgba(0,0,0,0.08);
  --border-strong: rgba(0,0,0,0.14);
  --radius-sm:     0.75rem;
  --radius-md:     1.5rem;
  --radius-lg:     2rem;
  --radius-xl:     2.5rem;
  --shadow-sm:     0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.03);
  --shadow-md:     0 10px 30px -10px rgba(0,0,0,0.06), 0 2px 6px rgba(0,0,0,0.03);
  --shadow-lg:     0 20px 50px -15px rgba(0,0,0,0.08), 0 4px 10px rgba(0,0,0,0.03);
  --shadow-hover:  0 30px 60px -15px rgba(0,0,0,0.12);
  --font:          'Inter', system-ui, -apple-system, sans-serif;
  --max-w:         85rem;
}

/* ── RESET ───────────────────────────────────────────────────────*/
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--surface-2);
  background-image:
    radial-gradient(at 90% 0%,   rgba(0,0,0,0.025) 0, transparent 50%),
    radial-gradient(at 10% 100%, rgba(0,0,0,0.025) 0, transparent 50%);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font); }
::selection { background: var(--primary); color: white; }

/* ── LAYOUT ──────────────────────────────────────────────────────*/
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }
main { flex: 1; }

/* ── NAV ─────────────────────────────────────────────────────────*/
.nav-wrap {
  position: fixed;
  top: 1.25rem;
  left: 0; right: 0;
  z-index: 100;
  padding: 0 1rem;
  pointer-events: none;
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 9999px;
  height: 4.5rem;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-md);
  pointer-events: auto;
}
@media (min-width: 768px) { .nav-inner { padding: 0 2rem; } }

.nav-logo {
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: -0.04em;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.nav-logo-dot {
  width: 1.75rem; height: 1.75rem;
  border-radius: 50%;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 20px var(--primary-glow);
  flex-shrink: 0;
}
.nav-logo-dot::after {
  content: '';
  width: 0.5rem; height: 0.5rem;
  background: white;
  border-radius: 50%;
}
.nav-logo-text { color: var(--dark); }
.nav-logo-text span { color: var(--primary); }

.nav-cta {
  background: var(--nav-btn, var(--dark));
  color: white;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.2s, box-shadow 0.2s;
  display: flex; align-items: center; gap: 0.4rem;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--nav-btn-hover, var(--primary));
  box-shadow: 0 0 20px var(--primary-glow);
}

/* ── BUTTONS ─────────────────────────────────────────────────────*/
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  font-weight: 800; font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.875rem 1.75rem; border-radius: var(--radius-sm);
  border: none; transition: all 0.25s; cursor: pointer;
}
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { filter: brightness(1.08); box-shadow: 0 0 25px var(--primary-glow); transform: translateY(-1px); }
.btn-dark { background: var(--dark); color: white; }
.btn-dark:hover { background: #222; transform: translateY(-1px); }
.btn-accent { background: var(--accent); color: var(--dark); }
.btn-accent:hover { filter: brightness(1.05); transform: translateY(-1px); }
.btn-ghost { background: var(--surface-2); color: var(--text); border: 1px solid var(--border-strong); }
.btn-ghost:hover { background: white; border-color: var(--border-strong); }
.btn-pill { border-radius: 9999px; }
.btn-lg { padding: 1.125rem 2.25rem; font-size: 0.9rem; }
.btn-xl { padding: 1.375rem 2.75rem; font-size: 1rem; }
.btn-block { width: 100%; }

/* ── CARDS ───────────────────────────────────────────────────────*/
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.3s, transform 0.3s;
  overflow: hidden;
}
.card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.card-xl { border-radius: var(--radius-xl); }

/* ── BADGES ──────────────────────────────────────────────────────*/
.badge {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.07em; text-transform: uppercase;
}
.badge-live {
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text-2);
}
.badge-live::before {
  content: '';
  width: 0.5rem; height: 0.5rem;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34,197,94,0.4);
  animation: pulse-green 1.5s infinite;
}
@keyframes pulse-green {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  70%  { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
.badge-top {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  color: var(--dark);
  border: 1px solid var(--border);
}
.badge-featured {
  background: var(--primary);
  color: white;
}

/* ── STARS ───────────────────────────────────────────────────────*/
.stars { color: var(--accent); letter-spacing: 0.05em; }
.stars-lg { font-size: 2rem; }
.stars-sm { font-size: 1rem; }

/* ── SECTION DIVIDER ─────────────────────────────────────────────*/
.section-head {
  display: flex; align-items: center; gap: 1.25rem;
  margin-bottom: 1.75rem;
}
.section-head h2 {
  font-weight: 900; font-size: 1.5rem;
  letter-spacing: -0.03em; text-transform: uppercase;
  white-space: nowrap;
  color: var(--text);
}
.section-head-line {
  height: 2px; flex: 1;
  background: var(--border);
  border-radius: 9999px;
}

/* ── LISTING CARD — T1 HERO ──────────────────────────────────────*/
.listing-hero {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  transition: box-shadow 0.3s, transform 0.3s;
}
.listing-hero:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
@media (min-width: 768px) { .listing-hero { flex-direction: row; } }

.listing-hero-img {
  width: 100%;
  height: 14rem;
  object-fit: cover;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .listing-hero-img { width: 36%; height: auto; min-height: 18rem; }
}

.listing-hero-body {
  flex: 1;
  padding: 1.75rem 1.5rem;
  display: flex; flex-direction: column; justify-content: space-between;
}
@media (min-width: 768px) { .listing-hero-body { padding: 2.5rem; } }

.listing-hero-img-wrap { position: relative; }
.listing-hero-img-wrap .badge { position: absolute; top: 0.75rem; left: 0.75rem; }

.listing-hero-name {
  font-size: 1.875rem; font-weight: 900;
  letter-spacing: -0.04em; text-transform: uppercase;
  line-height: 1.1; color: var(--text);
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) { .listing-hero-name { font-size: 2.25rem; } }

.listing-hero-meta {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 0.875rem;
}
.listing-hero-sub {
  font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-3);
}
.listing-hero-desc {
  color: var(--text-2); font-weight: 500;
  font-size: 1rem; line-height: 1.65;
  margin-bottom: 1.5rem;
}
.listing-hero-phone {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--surface-2);
  color: var(--text);
  font-size: 1.25rem; font-weight: 900;
  letter-spacing: -0.02em;
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  transition: all 0.25s;
  width: 100%;
}
.listing-hero-phone:hover {
  background: var(--dark); color: white;
}

/* ── LISTING CARD — T2 ───────────────────────────────────────────*/
.listing-t2 {
  display: flex; flex-direction: column;
  background: var(--surface); border-radius: var(--radius-lg);
  border: 1px solid var(--border); box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}
.listing-t2:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
@media (min-width: 640px) { .listing-t2 { flex-direction: row; } }

.listing-t2-img {
  width: 100%; height: 6rem; object-fit: cover; flex-shrink: 0;
}
@media (min-width: 640px) { .listing-t2-img { width: 9rem; height: auto; min-height: 120px; } }

.listing-t2-body {
  flex: 1; padding: 1.25rem 1rem;
  display: flex; flex-direction: column; justify-content: space-between;
}
@media (min-width: 640px) { .listing-t2-body { padding: 1.5rem; } }

.listing-t2-name {
  font-size: 1.375rem; font-weight: 900;
  letter-spacing: -0.03em; text-transform: uppercase;
  margin-bottom: 0.25rem; color: var(--text);
}
.listing-t2-phone {
  display: block; width: 100%; text-align: center;
  background: var(--surface-2); color: var(--text);
  font-size: 1.1rem; font-weight: 900;
  padding: 0.75rem; border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  transition: all 0.2s; margin-top: 0.875rem;
}
.listing-t2-phone:hover { background: var(--dark); color: white; }

/* ── LISTING ROW — REGULAR ───────────────────────────────────────*/
.listing-row {
  display: flex; flex-direction: column;
  background: var(--surface); border-radius: var(--radius-md);
  border: 1px solid var(--border); padding: 1.125rem 1.25rem;
  transition: box-shadow 0.2s, border-color 0.2s;
  gap: 0.75rem;
}
.listing-row:hover { box-shadow: var(--shadow-md); border-color: var(--border-strong); }
@media (min-width: 640px) {
  .listing-row { flex-direction: row; align-items: center; }
}
.listing-row-info { flex: 1; min-width: 0; }
.listing-row-name {
  font-size: 1.1rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: -0.02em;
  color: var(--text); margin-bottom: 0.125rem;
}
.listing-row-sub {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--text-3);
}
.listing-row-cta {
  background: var(--surface-2); color: var(--text);
  font-size: 0.8rem; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.625rem 1.25rem; border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  transition: all 0.2s; white-space: nowrap;
  display: inline-flex; align-items: center;
}
.listing-row-cta:hover { background: var(--primary); color: white; border-color: var(--primary); }

/* ── MAP ─────────────────────────────────────────────────────────*/
.map-wrap {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.map-wrap iframe { display: block; width: 100%; border: 0; }

/* ── NEARBY CHIPS ────────────────────────────────────────────────*/
.nearby-chips {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-top: 1.5rem;
}
.nearby-chip {
  padding: 0.5rem 1rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--text-2);
  transition: all 0.2s;
}
.nearby-chip:hover {
  background: var(--primary); color: white;
  border-color: var(--primary);
}

/* ── CONTENT BLOCKS (city article sections) ──────────────────────*/
.content-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.3s;
}
.content-block:hover { box-shadow: var(--shadow-hover); }
@media (min-width: 768px) { .content-block { padding: 3rem; } }

.content-block-dark {
  background: var(--darkgray);
  color: white;
  border-color: rgba(255,255,255,0.06);
}
.content-block-num {
  width: 2.75rem; height: 2.75rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 900;
  flex-shrink: 0;
}
.content-block-num-red   { background: rgba(220,38,38,0.08);  color: var(--primary); border: 1px solid rgba(220,38,38,0.15); }
.content-block-num-gold  { background: rgba(250,204,21,0.12); color: #92400e;         border: 1px solid rgba(250,204,21,0.25); }
.content-block-num-gray  { background: var(--surface-2);      color: var(--text);     border: 1px solid var(--border); }
.content-block-num-white { background: var(--primary);        color: white;            border: 1px solid rgba(220,38,38,0.5); }

.content-block h3 {
  font-size: 1.5rem; font-weight: 900;
  letter-spacing: -0.03em; text-transform: uppercase;
  line-height: 1.2;
}
@media (min-width: 768px) { .content-block h3 { font-size: 1.875rem; } }

.content-block p {
  color: var(--text-2); font-weight: 500;
  font-size: 1rem; line-height: 1.75;
  margin-top: 1rem;
}
.content-block-dark p { color: #d1d5db; }

/* ── HERO (homepage + city page) ────────────────────────────────*/
.hero-card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
}
@media (min-width: 1024px) { .hero-card { flex-direction: row; } }

.hero-body {
  padding: 2.5rem 2rem;
  display: flex; flex-direction: column; justify-content: center;
  flex: 1;
}
@media (min-width: 768px)  { .hero-body { padding: 3rem; } }
@media (min-width: 1024px) { .hero-body { padding: 4rem; } }

.hero-title {
  font-size: var(--hero-font-size, clamp(2rem, 7vw, 6.5rem));
  font-weight: 900; letter-spacing: -0.05em;
  line-height: 0.92; color: var(--dark);
  margin-bottom: 1rem;
  overflow-wrap: break-word;
  word-break: break-word;
}
.hero-title span { color: var(--primary); }

.hero-subtitle {
  font-size: 1.5rem; font-weight: 800;
  letter-spacing: -0.03em; color: var(--text);
  margin-bottom: 0.75rem;
}

.hero-desc {
  color: var(--text-2); font-size: 1.1rem;
  font-weight: 500; line-height: 1.65;
  max-width: 32rem; margin-bottom: 1.75rem;
}

.hero-cta-panel {
  background: var(--darkgray);
  padding: 2.5rem 2rem;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  min-height: 18rem;
}
@media (min-width: 1024px) { .hero-cta-panel { width: 42%; } }

.hero-cta-panel::before {
  content: '';
  position: absolute;
  right: -5rem; top: -5rem;
  width: 20rem; height: 20rem;
  border-radius: 50%;
  background: var(--primary);
  filter: blur(80px);
  opacity: 0.18;
}

.hero-cta-btn {
  position: relative; z-index: 1;
  width: 100%; max-width: 22rem;
  background: var(--accent); color: var(--dark);
  padding: 1.5rem 1rem; border-radius: var(--radius-lg);
  text-align: center; display: flex; flex-direction: column;
  align-items: center; gap: 0.2rem;
  font-weight: 900; transition: all 0.3s;
  border: none; cursor: pointer; overflow: hidden;
}
.hero-cta-btn:hover {
  background: var(--primary); color: white;
  box-shadow: 0 0 40px var(--primary-glow);
  transform: translateY(-2px);
}
.hero-cta-label {
  font-size: 0.65rem; letter-spacing: 0.12em;
  text-transform: uppercase; opacity: 0.75; white-space: nowrap;
}
.hero-cta-phone {
  font-size: clamp(1.4rem, 3vw, 2.5rem);
  letter-spacing: -0.02em;
  white-space: nowrap;
  line-height: 1.1;
}

/* ── SEARCH (homepage) ───────────────────────────────────────────*/
.search-wrap {
  position: relative; width: 100%; max-width: 36rem;
}
.search-input {
  width: 100%;
  padding: 1rem 3.5rem 1rem 1.25rem;
  border: 2px solid var(--border-strong);
  border-radius: var(--radius-md);
  font-size: 1rem; font-weight: 500;
  font-family: var(--font);
  background: var(--surface);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.search-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}
.search-input::placeholder { color: var(--text-3); }
.search-icon {
  position: absolute; right: 1rem; top: 50%;
  transform: translateY(-50%);
  color: var(--text-3); pointer-events: none;
}
.search-results {
  position: absolute; top: calc(100% + 0.5rem);
  left: 0; right: 0;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 200; overflow: hidden;
  max-height: 20rem; overflow-y: auto;
  display: none;
}
.search-results.open { display: block; }
.search-result-item {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem 1.1rem;
  cursor: pointer; transition: background 0.1s;
  border-bottom: 1px solid var(--border);
}
.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover, .search-result-item.active {
  background: var(--primary-light);
}
.search-result-city { font-weight: 700; font-size: 0.95rem; }
.search-result-state { font-size: 0.8rem; color: var(--text-3); font-weight: 500; }
.search-result-pop { font-size: 0.75rem; color: var(--text-3); margin-left: auto; font-weight: 600; }
.search-no-results {
  padding: 1.25rem; text-align: center;
  color: var(--text-3); font-size: 0.9rem;
}

/* ── CITY GRID (homepage + state page) ──────────────────────────*/
.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr));
  gap: 0.625rem;
}
.city-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.85rem; font-weight: 700;
  color: var(--text-2); text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: all 0.2s;
  text-align: center;
}
.city-card:hover {
  background: var(--primary); color: white;
  border-color: var(--primary);
  transform: translateY(-1px);
}
.city-card-featured {
  background: var(--primary-light);
  border-color: rgba(220,38,38,0.2);
  color: var(--primary);
}
.city-card-featured:hover { background: var(--primary); color: white; }

/* ── STATE CARD (locations page) ────────────────────────────────*/
.state-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.2s; gap: 0.75rem;
}
.state-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}
.state-card-name { font-weight: 800; font-size: 1rem; }
.state-card-count {
  font-size: 0.75rem; font-weight: 700;
  color: var(--text-3); text-transform: uppercase;
  letter-spacing: 0.05em; white-space: nowrap;
}
.state-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.625rem;
}
@media (min-width: 640px)  { .state-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .state-grid { grid-template-columns: repeat(3, 1fr); } }

/* ── BREADCRUMB ──────────────────────────────────────────────────*/
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; font-weight: 600;
  color: var(--text-3); text-transform: uppercase;
  letter-spacing: 0.05em; flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb-sep { opacity: 0.4; }

/* ── BUSINESS PAGE ───────────────────────────────────────────────*/
.business-detail {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.business-detail-head {
  background: var(--darkgray); color: white;
  padding: 2.5rem 2rem;
  position: relative; overflow: hidden;
}
.business-detail-head::before {
  content: '';
  position: absolute; right: -4rem; top: -4rem;
  width: 16rem; height: 16rem; border-radius: 50%;
  background: var(--primary); filter: blur(60px); opacity: 0.2;
}
.business-detail-body { padding: 2rem; }
@media (min-width: 768px) { .business-detail-body { padding: 2.5rem; } }

.business-name {
  font-size: 2.5rem; font-weight: 900;
  letter-spacing: -0.04em; text-transform: uppercase;
  line-height: 1.1; position: relative; z-index: 1;
}
.business-detail-meta {
  display: flex; flex-wrap: wrap; gap: 1rem;
  margin-top: 1rem; position: relative; z-index: 1;
}
.business-detail-meta-item {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.9rem; font-weight: 600; color: rgba(255,255,255,0.8);
}
.business-call-btn {
  width: 100%; display: flex;
  align-items: center; justify-content: center;
  gap: 0.5rem;
  background: var(--primary); color: white;
  font-size: 1.2rem; font-weight: 900;
  padding: 1.125rem; border-radius: var(--radius-md);
  transition: all 0.2s; margin-bottom: 1.25rem;
}
.business-call-btn:hover {
  filter: brightness(1.08);
  box-shadow: 0 0 25px var(--primary-glow);
  transform: translateY(-1px);
}

/* ── OVERLAY (business page bulk) ───────────────────────────────*/
.overlay-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--darkgray); color: white;
  padding: 0.875rem 1.25rem;
  display: flex; align-items: center; gap: 1rem;
  z-index: 500; box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
.overlay-bar-text { flex: 1; font-size: 0.9rem; font-weight: 600; }
.overlay-bar-phone {
  background: var(--primary); color: white;
  padding: 0.625rem 1.25rem; border-radius: var(--radius-sm);
  font-weight: 800; font-size: 0.9rem; white-space: nowrap;
}
.overlay-close {
  background: rgba(255,255,255,0.12); border: none; color: white;
  width: 2rem; height: 2rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; cursor: pointer; flex-shrink: 0;
  transition: background 0.2s;
}
.overlay-close:hover { background: rgba(255,255,255,0.22); }

/* ── FEATURED CITY CARDS (homepage) ─────────────────────────────*/
.featured-city-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.25s;
  box-shadow: var(--shadow-sm);
}
.featured-city-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.featured-city-img {
  width: 100%; height: 10rem; object-fit: cover;
  background: var(--surface-2);
}
.featured-city-body { padding: 1.125rem 1.25rem; }
.featured-city-name {
  font-weight: 900; font-size: 1.1rem;
  letter-spacing: -0.03em; text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.featured-city-state { font-size: 0.75rem; font-weight: 700; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.05em; }

/* ── FOOTER ──────────────────────────────────────────────────────*/
footer {
  background: var(--darkgray); color: rgba(255,255,255,0.6);
  padding: 2.5rem 0; margin-top: auto;
  font-size: 0.85rem;
}
.footer-inner {
  display: flex; flex-direction: column;
  align-items: center; gap: 0.75rem; text-align: center;
}
@media (min-width: 768px) {
  .footer-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}
.footer-logo { font-weight: 900; color: white; font-size: 0.95rem; }
.footer-logo span { color: var(--primary); }
.footer-links { display: flex; gap: 1.25rem; flex-wrap: wrap; justify-content: center; }
.footer-links a { transition: color 0.2s; }
.footer-links a:hover { color: white; }

/* ── UTILITY ─────────────────────────────────────────────────────*/
.pt-nav   { padding-top: 7rem; }
.pb-page  { padding-bottom: 5rem; }
.section  { margin-bottom: 5rem; }
.section-sm { margin-bottom: 2.5rem; }
.text-center { text-align: center; }
.flex { display: flex; }
.items-center { align-items: center; }
.gap-4 { gap: 1rem; }
.w-full { width: 100%; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }

/* ── RESPONSIVE HELPERS ──────────────────────────────────────────*/
@media (max-width: 767px) {
  .hero-title { font-size: 3.25rem; }
  .listing-hero-name { font-size: 1.625rem; }
  .hero-cta-phone { font-size: 1.875rem; }
}

/* Footer disclaimer */
.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 1.25rem;
  padding-top: 1rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
  line-height: 1.7;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
