/* ═══════════════════════════════════════════════════
   VCShine — Premium Directory Styles
   Design: Cinematic, clean, California coastal vibe
════════════════════════════════════════════════════ */

:root {
  --gold:       #c9a84c;
  --gold-light: #e8c87a;
  --gold-dark:  #a07830;
  --navy:       #0d1b2a;
  --navy-mid:   #1a2f45;
  --navy-light: #243d57;
  --sky:        #4a9eca;
  --sky-light:  #7bbde0;
  --cream:      #fdf8f0;
  --white:      #ffffff;
  --gray-50:    #f9f9f7;
  --gray-100:   #f0ede7;
  --gray-200:   #e2ddd5;
  --gray-400:   #9d9489;
  --gray-600:   #6b6560;
  --gray-800:   #3d3830;
  --text:       #2c2820;
  --text-muted: #7a7468;

  --radius:     12px;
  --radius-lg:  20px;
  --shadow-sm:  0 2px 8px rgba(0,0,0,.06);
  --shadow-md:  0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.15);
  --shadow-xl:  0 20px 60px rgba(0,0,0,.20);

  --transition: .25s cubic-bezier(.4,0,.2,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ───────────────────────────── */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
}
.section-subtitle { color: var(--text-muted); margin-top: 8px; font-size: 17px; }
.section-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(201,168,76,.12); color: var(--gold-dark);
  border: 1px solid rgba(201,168,76,.3);
  font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px; margin-bottom: 16px;
}

/* ── Buttons ──────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-weight: 600; font-size: 15px; letter-spacing: .02em;
  padding: 14px 28px; border-radius: var(--radius);
  border: none; cursor: pointer; text-decoration: none;
  box-shadow: 0 4px 16px rgba(201,168,76,.4);
  transition: var(--transition);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,.5);
}
.btn-claim {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-weight: 600; font-size: 14px;
  padding: 10px 20px; border-radius: 100px;
  text-decoration: none; transition: var(--transition);
  box-shadow: 0 4px 14px rgba(201,168,76,.35);
}
.btn-claim:hover { transform: translateY(-1px); opacity: .9; }
.btn-retry {
  background: var(--navy); color: var(--white);
  font-weight: 600; padding: 10px 22px; border-radius: var(--radius);
  border: none; cursor: pointer; transition: var(--transition);
}
.btn-retry:hover { background: var(--navy-mid); }
.btn-load-more {
  background: var(--white); color: var(--navy);
  font-weight: 600; font-size: 15px;
  padding: 14px 32px; border-radius: var(--radius);
  border: 2px solid var(--gray-200); cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.btn-load-more:hover {
  border-color: var(--gold); color: var(--gold-dark);
  box-shadow: var(--shadow-md);
}

/* ── Header ───────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  padding: 0 24px;
  background: rgba(13, 27, 42, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(13, 27, 42, 0.97);
  box-shadow: 0 4px 24px rgba(0,0,0,.3);
}
.header-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; gap: 32px;
  height: 64px;
}
.logo { display: flex; align-items: center; text-decoration: none; }
.logo-shine {
  font-family: 'Playfair Display', serif;
  font-size: 24px; font-weight: 700; color: var(--gold);
  letter-spacing: -1px;
}
.logo-text { font-size: 20px; font-weight: 600; color: var(--white); }
.header-nav { display: flex; gap: 28px; margin-left: auto; }
.header-nav a {
  color: rgba(255,255,255,.75); text-decoration: none;
  font-size: 14px; font-weight: 500;
  transition: color var(--transition);
}
.header-nav a:hover { color: var(--gold-light); }
.header-actions { margin-left: 20px; }
.mobile-menu-btn { display: none; background: none; border: none; color: var(--white); font-size: 22px; cursor: pointer; }
.desktop-only { display: block; }
@media (max-width: 768px) {
  .header-nav, .header-actions { display: none; }
  .mobile-menu-btn { display: block; margin-left: auto; }
  .desktop-only { display: none; }
}

/* ── Hero ─────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(
    145deg,
    #0a1628 0%,
    #0d1b2a 30%,
    #112436 60%,
    #0f2233 100%
  );
}
.hero-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(74,158,202,.15), transparent),
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(201,168,76,.12), transparent),
    radial-gradient(ellipse 50% 50% at 50% 100%, rgba(201,168,76,.08), transparent);
}
.hero-particles {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(201,168,76,.3) 1px, transparent 1px),
    radial-gradient(circle at 80% 15%, rgba(201,168,76,.2) 1px, transparent 1px),
    radial-gradient(circle at 60% 70%, rgba(74,158,202,.25) 1px, transparent 1px),
    radial-gradient(circle at 35% 80%, rgba(201,168,76,.15) 1px, transparent 1px),
    radial-gradient(circle at 90% 60%, rgba(74,158,202,.2) 1px, transparent 1px),
    radial-gradient(circle at 15% 60%, rgba(201,168,76,.2) 1px, transparent 1px),
    radial-gradient(circle at 70% 40%, rgba(255,255,255,.1) 1px, transparent 1px);
  background-size: 300px 300px, 250px 250px, 200px 200px, 280px 280px, 320px 320px, 180px 180px, 240px 240px;
  animation: particles-drift 20s linear infinite;
}
@keyframes particles-drift {
  0% { transform: translateY(0); }
  100% { transform: translateY(-30px); }
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 800px; margin: 0 auto;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.35);
  color: var(--gold-light);
  font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px; margin-bottom: 28px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 700; line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-highlight {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,.65);
  margin-bottom: 36px;
  line-height: 1.7;
}

/* Search Bar */
.hero-search {
  display: flex; gap: 12px;
  max-width: 640px; margin: 0 auto 40px;
}
.search-box {
  flex: 1; position: relative;
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  display: flex; align-items: center;
  transition: border-color var(--transition), background var(--transition);
}
.search-box:focus-within {
  background: rgba(255,255,255,.12);
  border-color: rgba(201,168,76,.6);
}
.search-icon { position: absolute; left: 16px; font-size: 16px; pointer-events: none; }
.search-box input {
  width: 100%; background: none; border: none; outline: none;
  padding: 14px 44px 14px 44px;
  color: var(--white); font-size: 15px; font-family: inherit;
}
.search-box input::placeholder { color: rgba(255,255,255,.4); }
.search-clear {
  position: absolute; right: 12px;
  background: rgba(255,255,255,.15); border: none;
  color: rgba(255,255,255,.6); cursor: pointer;
  width: 24px; height: 24px; border-radius: 50%;
  font-size: 12px; display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.search-clear:hover { background: rgba(255,255,255,.25); }
.search-clear.hidden { display: none; }
.search-category {
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  color: rgba(255,255,255,.75);
  font-size: 14px; font-family: inherit;
  padding: 0 16px;
  cursor: pointer; outline: none;
  transition: var(--transition);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='rgba(255,255,255,0.5)'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}
.search-category:focus { border-color: rgba(201,168,76,.6); }
.search-category option { background: var(--navy); color: var(--white); }
@media (max-width: 600px) {
  .hero-search { flex-direction: column; }
  .search-category { padding: 14px 32px 14px 16px; width: 100%; }
}

/* Hero Stats */
.hero-stats {
  display: flex; align-items: center; justify-content: center; gap: 24px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  display: block; font-size: 32px; font-weight: 700;
  color: var(--gold-light); line-height: 1;
}
.stat-label { font-size: 13px; color: rgba(255,255,255,.5); margin-top: 4px; }
.stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,.15); }

/* Scroll cue */
.hero-scroll-cue {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,.4); font-size: 12px; text-transform: uppercase;
  letter-spacing: .12em;
  animation: scroll-bob 2s ease-in-out infinite;
  transition: color var(--transition);
}
.hero-scroll-cue:hover { color: rgba(255,255,255,.7); }
.scroll-arrow { font-size: 18px; }
@keyframes scroll-bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── Category Pills Strip ─────────────────── */
.categories-strip {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 16px 0;
  position: sticky; top: 64px; z-index: 100;
  box-shadow: var(--shadow-sm);
}
.category-pills {
  display: flex; gap: 8px;
  overflow-x: auto; padding: 4px 0;
  scrollbar-width: none;
}
.category-pills::-webkit-scrollbar { display: none; }
.pill-loading { color: var(--text-muted); font-size: 14px; padding: 6px; }
.cat-pill {
  flex-shrink: 0;
  background: var(--gray-50); border: 1.5px solid var(--gray-200);
  color: var(--gray-600); font-size: 13px; font-weight: 500;
  padding: 7px 16px; border-radius: 100px;
  cursor: pointer; transition: var(--transition);
  white-space: nowrap; user-select: none;
}
.cat-pill:hover { border-color: var(--gold); color: var(--gold-dark); background: rgba(201,168,76,.06); }
.cat-pill.active {
  background: var(--navy); border-color: var(--navy);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(13,27,42,.3);
}
.cat-pill-all.active { background: var(--navy); border-color: var(--navy); color: var(--white); }

/* ── Directory Section ────────────────────── */
.directory-section { padding: 60px 0 80px; }
.directory-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 32px; gap: 16px; flex-wrap: wrap;
}
.directory-title-group {}
.directory-count { color: var(--text-muted); font-size: 15px; margin-top: 4px; }
.directory-controls { display: flex; align-items: center; gap: 12px; }
.view-toggle { display: flex; gap: 4px; }
.view-btn {
  background: var(--gray-50); border: 1.5px solid var(--gray-200);
  color: var(--gray-600); width: 36px; height: 36px;
  border-radius: 8px; cursor: pointer; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.view-btn.active, .view-btn:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }
.sort-select {
  background: var(--white); border: 1.5px solid var(--gray-200);
  border-radius: 8px; padding: 8px 30px 8px 12px;
  font-size: 14px; font-family: inherit; color: var(--text);
  cursor: pointer; outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%239d9489'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  transition: var(--transition);
}
.sort-select:focus { border-color: var(--gold); }

/* Loading */
.loading-state {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  padding: 80px 0; text-align: center;
}
.loading-spinner {
  width: 40px; height: 40px; border-radius: 50%;
  border: 3px solid var(--gray-200);
  border-top-color: var(--gold);
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loading-text { color: var(--text-muted); font-size: 16px; }
.loading-bar-wrap { width: 240px; height: 4px; background: var(--gray-200); border-radius: 4px; overflow: hidden; }
.loading-bar {
  height: 100%; background: linear-gradient(90deg, var(--gold), var(--sky));
  border-radius: 4px;
  animation: loading-progress 3s ease-out forwards;
}
@keyframes loading-progress { 0% { width: 5%; } 50% { width: 60%; } 80% { width: 80%; } 100% { width: 95%; } }

/* Error / Empty */
.error-state, .empty-state {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  padding: 80px 0; text-align: center; color: var(--text-muted);
}
.error-icon, .empty-icon { font-size: 48px; }
.error-state h3, .empty-state h3 { color: var(--text); font-size: 22px; }
.hidden { display: none !important; }

/* Business Grid */
.biz-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.biz-grid.list-view {
  grid-template-columns: 1fr;
  gap: 12px;
}

/* Business Card */
.biz-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  animation: card-in .35s ease both;
}
@keyframes card-in {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.biz-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-200);
}

.card-img {
  width: 100%; height: 180px; object-fit: cover;
  background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
  display: block;
}
.card-img-placeholder {
  width: 100%; height: 180px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 48px;
}
.card-body { padding: 20px; }
.card-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.card-category {
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em;
  color: var(--gold-dark); background: rgba(201,168,76,.1);
  padding: 3px 10px; border-radius: 100px;
}
.card-status-badge {
  font-size: 11px; font-weight: 600;
  padding: 3px 8px; border-radius: 100px;
}
.card-status-badge.open { background: rgba(52,199,89,.12); color: #1a8a35; }
.card-status-badge.closed { background: rgba(255,59,48,.1); color: #cc2a22; }
.card-name {
  font-size: 17px; font-weight: 700; color: var(--navy);
  margin-bottom: 6px; line-height: 1.3;
}
.card-desc {
  font-size: 13.5px; color: var(--text-muted); line-height: 1.5;
  margin-bottom: 14px;
  display: -webkit-box; -webkit-line-clamp: 3;
  -webkit-box-orient: vertical; overflow: hidden;
}
.card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; border-top: 1px solid var(--gray-100);
  gap: 8px; flex-wrap: wrap;
}
.card-location { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 4px; }
.card-actions { display: flex; gap: 6px; }
.card-action-btn {
  background: var(--gray-50); border: 1px solid var(--gray-200);
  color: var(--gray-600); font-size: 11px; font-weight: 600;
  padding: 5px 10px; border-radius: 8px;
  cursor: pointer; text-decoration: none;
  transition: var(--transition); white-space: nowrap;
}
.card-action-btn:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }
.card-action-btn.primary { background: var(--gold); border-color: var(--gold); color: var(--white); }
.card-action-btn.primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); }

/* List View Card */
.biz-grid.list-view .biz-card {
  display: flex; align-items: stretch;
  border-radius: var(--radius);
}
.biz-grid.list-view .card-img,
.biz-grid.list-view .card-img-placeholder {
  width: 120px; height: auto; min-height: 100px;
  flex-shrink: 0; border-radius: 0;
}
.biz-grid.list-view .card-body {
  flex: 1; display: flex; flex-direction: column; justify-content: center;
  padding: 16px;
}
.biz-grid.list-view .card-desc { -webkit-line-clamp: 2; }

/* Load more */
.load-more-wrap { text-align: center; margin-top: 40px; }
#load-more-count { color: var(--text-muted); font-weight: 400; font-size: 13px; }

/* ── Map Section ──────────────────────────── */
.map-section { position: relative; }
.map-header { padding: 60px 0 28px; background: var(--navy); color: var(--white); }
.map-header .section-title { color: var(--white); }
.map-header .section-subtitle { color: rgba(255,255,255,.55); }
#map {
  height: 500px; width: 100%;
  filter: saturate(0.9) brightness(0.95);
}
.map-overlay-cities {
  background: var(--navy); padding: 16px 24px 24px;
}
.city-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.city-chip {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.75); font-size: 12px; font-weight: 500;
  padding: 5px 12px; border-radius: 100px; cursor: pointer;
  transition: var(--transition);
}
.city-chip:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.city-chip.active { background: var(--gold); border-color: var(--gold); color: var(--white); }

/* Leaflet overrides */
.leaflet-popup-content-wrapper { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.leaflet-popup-content { margin: 14px 16px; font-family: 'Inter', sans-serif; font-size: 14px; }
.map-popup-name { font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.map-popup-cat { font-size: 12px; color: var(--gold-dark); margin-bottom: 8px; }
.map-popup-link { color: var(--gold-dark); font-weight: 600; font-size: 13px; text-decoration: none; }
.map-popup-link:hover { text-decoration: underline; }

/* ── About / CTA Section ──────────────────── */
.about-section { padding: 100px 0; background: var(--white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-text p { color: var(--text-muted); font-size: 16px; line-height: 1.8; margin-top: 16px; }
.about-text strong { color: var(--text); }
.cta-card {
  background: linear-gradient(145deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius-lg); padding: 48px 40px;
  text-align: center;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255,255,255,.08);
}
.cta-icon { font-size: 36px; margin-bottom: 20px; color: var(--gold-light); }
.cta-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px; font-weight: 700; color: var(--white); margin-bottom: 16px;
}
.cta-card p { color: rgba(255,255,255,.6); font-size: 15px; line-height: 1.7; margin-bottom: 28px; }
.cta-fine { font-size: 12px; color: rgba(255,255,255,.35); margin-top: 12px !important; }
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ── Footer ───────────────────────────────── */
.site-footer { background: var(--navy); color: rgba(255,255,255,.6); padding: 48px 0 32px; }
.footer-inner { display: flex; align-items: flex-start; gap: 40px; flex-wrap: wrap; }
.footer-brand { flex: 1; }
.footer-brand p { font-size: 13px; margin-top: 8px; color: rgba(255,255,255,.4); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
.footer-links a { color: rgba(255,255,255,.5); text-decoration: none; font-size: 14px; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold-light); }
.footer-copy { width: 100%; text-align: center; font-size: 13px; color: rgba(255,255,255,.3); margin-top: 24px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08); }

/* ── Modal ────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(10,20,35,.7);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: modal-fade-in .2s ease both;
}
@keyframes modal-fade-in { from { opacity: 0; } to { opacity: 1; } }
.modal-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 620px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-xl);
  animation: modal-slide-in .25s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes modal-slide-in { from { opacity: 0; transform: scale(.96) translateY(12px); } to { opacity: 1; transform: scale(1); } }
.modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  background: var(--gray-100); border: none;
  width: 32px; height: 32px; border-radius: 50%;
  cursor: pointer; font-size: 14px; color: var(--gray-600);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.modal-close:hover { background: var(--gray-200); }
.modal-photo { width: 100%; height: 240px; object-fit: cover; display: block; }
.modal-photo-placeholder {
  width: 100%; height: 240px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex; align-items: center; justify-content: center;
  font-size: 72px;
}
.modal-body { padding: 28px; }
.modal-category { font-size: 12px; color: var(--gold-dark); font-weight: 600; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 8px; }
.modal-name { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: var(--navy); margin-bottom: 12px; line-height: 1.2; }
.modal-desc { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
.modal-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
.modal-info-item { display: flex; flex-direction: column; gap: 3px; }
.modal-info-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); }
.modal-info-value { font-size: 14px; color: var(--text); font-weight: 500; }
.modal-info-value a { color: var(--gold-dark); text-decoration: none; }
.modal-info-value a:hover { text-decoration: underline; }
.modal-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ── Responsive ───────────────────────────── */
@media (max-width: 768px) {
  .hero { padding: 100px 20px 60px; }
  .biz-grid { grid-template-columns: 1fr; }
  .directory-header { flex-direction: column; align-items: flex-start; }
  .modal-info-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════
   PREMIUM UPGRADES v2 — Higgsfield animated hero,
   glassmorphism cards, advanced search/filter
   ATLAS 🏗️ 2026-04-03
══════════════════════════════════════════════════════ */

/* Animated orbs (Higgsfield-style cinematic glow) */
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0;
  animation: orb-pulse 8s ease-in-out infinite;
  z-index: 0; pointer-events: none;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.25) 0%, transparent 70%);
  top: -200px; left: -150px; animation-duration: 10s;
}
.hero-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(74,158,202,0.2) 0%, transparent 70%);
  bottom: -150px; right: -100px; animation-delay: 3s; animation-duration: 12s;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
  top: 40%; left: 60%; animation-delay: 5s; animation-duration: 9s;
}
@keyframes orb-pulse {
  0%, 100% { opacity: 0; transform: scale(0.8) translateY(20px); }
  50%       { opacity: 1; transform: scale(1.1) translateY(0); }
}

/* Light streak sweep */
.hero-streak {
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none; overflow: hidden;
}
.hero-streak::before {
  content: '';
  position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(105deg,
    transparent 0%, rgba(255,255,255,0.03) 45%,
    rgba(201,168,76,0.06) 50%, rgba(255,255,255,0.03) 55%, transparent 100%);
  animation: streak-sweep 14s ease-in-out infinite; animation-delay: 2s;
}
@keyframes streak-sweep {
  0%   { left: -100%; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { left: 200%; opacity: 0; }
}

/* Floating micro-particles */
.hero-float-particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero-float-particles span {
  position: absolute; width: 2px; height: 2px;
  background: var(--gold); border-radius: 50%;
  animation: float-p 15s linear infinite; opacity: 0;
}
.hero-float-particles span:nth-child(1) { left: 10%; animation-delay: 0s;   animation-duration: 18s; }
.hero-float-particles span:nth-child(2) { left: 20%; animation-delay: 2s;   animation-duration: 14s; }
.hero-float-particles span:nth-child(3) { left: 35%; animation-delay: 4s;   animation-duration: 20s; }
.hero-float-particles span:nth-child(4) { left: 50%; animation-delay: 1s;   animation-duration: 16s; }
.hero-float-particles span:nth-child(5) { left: 65%; animation-delay: 6s;   animation-duration: 12s; }
.hero-float-particles span:nth-child(6) { left: 80%; animation-delay: 3s;   animation-duration: 22s; }
@keyframes float-p {
  0%   { bottom: -10px; opacity: 0; }
  10%  { opacity: 0.8; }
  90%  { opacity: 0.4; }
  100% { bottom: 110%; opacity: 0; transform: translateX(15px); }
}

/* Premium card hover with shimmer top border */
.biz-card { position: relative; overflow: hidden; }
.biz-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--sky), var(--gold));
  background-size: 200% 100%;
  opacity: 0; transition: opacity 0.3s ease;
  animation: shimmer-bar 3s linear infinite;
}
@keyframes shimmer-bar {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}
.biz-card:hover::before { opacity: 1; }
.biz-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 20px 60px rgba(0,0,0,.15), 0 0 0 1px rgba(201,168,76,.15) !important;
}

/* Live status dot */
.card-status-dot {
  width: 8px; height: 8px; border-radius: 50%;
  display: inline-block; margin-right: 4px; flex-shrink: 0;
}
.card-status-dot.open  { background: #22c55e; animation: dot-pulse 2s ease infinite; }
.card-status-dot.closed { background: #94a3b8; }
@keyframes dot-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,.5); }
  50%      { box-shadow: 0 0 0 4px rgba(34,197,94,0); }
}

/* Featured card */
.biz-card.featured {
  border-color: rgba(201,168,76,.4) !important;
  background: linear-gradient(160deg,#fff 0%,#fffbf0 100%) !important;
}
.biz-card.featured::before { opacity: 0.5 !important; }
.featured-badge {
  position: absolute; top: 12px; right: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white); font-size: 10px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 100px; z-index: 5;
}

/* Sticky search bar (appears after hero scroll) */
.sticky-search-bar {
  position: fixed; top: 64px; left: 0; right: 0; z-index: 200;
  background: rgba(13,27,42,.96); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,.15);
  padding: 8px 24px;
  transform: translateY(-100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.sticky-search-bar.visible { transform: translateY(0); }
.sticky-search-inner {
  max-width: 640px; margin: 0 auto;
  display: flex; gap: 8px; align-items: center;
}
.sticky-search-inner input {
  flex: 1; background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12); border-radius: 8px;
  padding: 9px 14px; color: var(--white); font-size: 14px;
  font-family: inherit; outline: none;
}
.sticky-search-inner input:focus { border-color: rgba(201,168,76,.5); }
.sticky-search-inner input::placeholder { color: rgba(255,255,255,.35); }
.sticky-cat-select {
  background: rgba(255,255,255,.07) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='5'%3E%3Cpath d='M0 0l4 5 4-5z' fill='rgba(255,255,255,0.4)'/%3E%3C/svg%3E") no-repeat right 10px center;
  border: 1px solid rgba(255,255,255,.12); border-radius: 8px;
  padding: 9px 30px 9px 12px; color: rgba(255,255,255,.7);
  font-size: 13px; font-family: inherit; outline: none; cursor: pointer; appearance: none;
}
.sticky-cat-select option { background: #0d1b2a; }

/* City quick-filter pills inside hero search */
.city-filter-row {
  display: flex; gap: 8px; flex-wrap: wrap;
  padding: 8px 4px 2px;
  border-top: 1px solid rgba(255,255,255,.06);
  margin-top: 4px;
}
.city-pill-filter {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.55); font-size: 12px; font-weight: 500;
  padding: 4px 12px; border-radius: 100px;
  cursor: pointer; transition: all .2s ease; white-space: nowrap;
}
.city-pill-filter:hover  { background: rgba(201,168,76,.15); border-color: rgba(201,168,76,.4); color: var(--gold-light); }
.city-pill-filter.active { background: var(--gold); border-color: var(--gold); color: var(--navy); font-weight: 700; }

/* Results summary banner */
.results-banner {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--gray-50); border: 1px solid var(--gray-100);
  border-radius: 10px; padding: 12px 18px; margin-bottom: 24px;
  font-size: 14px; color: var(--text-muted);
}
.results-banner strong { color: var(--navy); }
.results-banner .clear-filters-btn {
  background: none; border: 1px solid var(--gray-200); border-radius: 6px;
  padding: 4px 12px; font-size: 13px; color: var(--text-muted);
  cursor: pointer; transition: var(--transition);
}
.results-banner .clear-filters-btn:hover { border-color: var(--gold); color: var(--gold-dark); }

/* Scroll-reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* Mobile upgrades */
@media (max-width: 768px) {
  .hero-orb { display: none; }
  .sticky-search-bar { top: 56px; }
  .sticky-search-inner { flex-direction: column; }
  .sticky-cat-select { width: 100%; }
  .city-filter-row { gap: 6px; }
}
