/* ==========================================================================
   CrawlerList — base styles
   ========================================================================== */

:root {
  --navy-900: #141d36;
  --navy-800: #1a2545;
  --navy-700: #243057;
  --navy-600: #2e3b66;
  --red-500: #e63950;
  --red-600: #d12d43;
  --red-700: #b8253a;
  --bg: #e8ebf2;
  --surface: #ffffff;
  --border: #e4e7ee;
  --text: #1a1f2e;
  --text-muted: #5b6478;
  --text-soft: #8a93a6;
  --tag-purple-bg: #ede4ff;
  --tag-purple-text: #6837d6;
  --tag-blue-bg: #e3edff;
  --tag-blue-text: #2a5fd0;
  --tag-pink-bg: #ffe0ec;
  --tag-pink-text: #c2185b;
  --green-500: #22c55e;
  --warning-bg: #fff8dc;
  --warning-border: #f0d869;
  --shadow-sm: 0 2px 6px rgba(20, 29, 54, 0.09);
  --shadow-md: 0 4px 12px rgba(20, 29, 54, 0.08);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-pill: 999px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  background: var(--navy-900);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}

.brand-mark {
  width: 28px;
  height: 28px;
  display: block;
  object-fit: contain;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s;
}

.nav-list a:hover { color: #fff; }

.btn-post-ad {
  background: var(--red-500);
  color: #fff;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  transition: background 0.15s;
}

.btn-post-ad:hover { background: var(--red-600); }

.burger {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  transition: transform 0.25s, opacity 0.25s;
}

.burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ==========================================================================
   Breadcrumb + Page header
   ========================================================================== */
.breadcrumb {
  padding: 16px 0 8px;
  font-size: 13px;
  color: var(--text-muted);
}

.breadcrumb a:hover { color: var(--red-500); }
.breadcrumb .sep { margin: 0 6px; color: var(--text-soft); }

.page-header { padding: 8px 0 24px; }

.region-tag {
  display: inline-block;
  color: var(--red-500);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.page-header h1 {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--navy-900);
}

.page-header p {
  margin: 0;
  color: var(--text-muted);
  max-width: 640px;
  font-size: 14px;
}

/* ==========================================================================
   Layout: listings + sidebar
   ========================================================================== */
.layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  grid-auto-flow: row dense;
  gap: 28px;
  padding-bottom: 40px;
}

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

/* ==========================================================================
   Listing card
   ========================================================================== */
.card {
  background: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.15s, box-shadow 0.15s;
  color: inherit;
  text-decoration: none;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.card-media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--navy-700);
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s;
}

.card:hover .card-media img { transform: scale(1.03); }

.badge-online {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(20, 29, 54, 0.85);
  color: #fff;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.badge-online::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--green-500);
  border-radius: 50%;
  display: inline-block;
}

.badge-time {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(20, 29, 54, 0.7);
  color: rgba(255, 255, 255, 0.95);
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
}

.card-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.card-title {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy-900);
  margin: 0;
  line-height: 1.3;
}

.card-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

.tag-area { background: var(--tag-purple-bg); color: var(--tag-purple-text); }
.tag-type { background: var(--tag-blue-bg); color: var(--tag-blue-text); }

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px 14px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.btn-view {
  background: var(--navy-800);
  color: #fff;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  transition: background 0.15s;
}

.btn-view:hover { background: var(--navy-700); }

/* ==========================================================================
   Sidebar
   ========================================================================== */
.sidebar { display: flex; flex-direction: column; gap: 18px; }

.sidebar-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: var(--shadow-sm);
}

.sidebar-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  color: var(--navy-900);
}

.sidebar-icon { color: var(--red-500); font-size: 16px; }

.city-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.city-list a {
  display: block;
  padding: 6px 0;
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.15s;
}

.city-list a:hover { color: var(--red-500); }

.cta-card {
  background: var(--navy-800);
  color: #fff;
  text-align: center;
}

.cta-card .sidebar-heading {
  border: none;
  padding: 0;
  margin: 0 0 10px;
  color: #fff;
  justify-content: center;
  font-size: 15px;
}

.cta-card p {
  margin: 0 0 14px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

.cta-card .btn-post-ad {
  display: inline-block;
  width: 100%;
  text-align: center;
}

/* ==========================================================================
   Load more
   ========================================================================== */
.load-more-wrap {
  grid-column: 1;
  align-self: start;
  display: flex;
  justify-content: center;
  padding: 8px 0 4px;
}

.btn-load-more {
  display: inline-block;
  background: transparent;
  color: var(--navy-800);
  padding: 10px 30px;
  border: 2px solid var(--navy-800);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  transition: background 0.15s, color 0.15s, transform 0.1s;
}

.btn-load-more:hover {
  background: var(--navy-800);
  color: #fff;
  transform: translateY(-1px);
}

/* ==========================================================================
   Info section
   ========================================================================== */
.info-section {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 28px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
}

.info-section h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--navy-900);
}

.info-section > p {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0 0 22px;
  max-width: 820px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 22px;
}

.info-col-heading {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--navy-900);
}

.info-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.info-col li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.info-col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red-500);
}

.safety-note {
  background: var(--warning-bg);
  border: 1px solid var(--warning-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 12px;
  color: #6b5400;
}

.safety-note strong { color: #4a3a00; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.65);
  padding: 40px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}

.footer-about p {
  font-size: 12px;
  margin: 12px 0 0;
  line-height: 1.6;
  max-width: 280px;
}

.footer-col-heading {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.85);
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.15s;
}

.footer-col a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
  text-align: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
}

.footer-bottom p { margin: 4px 0; }

/* ==========================================================================
   Mobile nav drawer
   ========================================================================== */
.mobile-drawer {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--navy-800);
  padding: 16px 20px;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-md);
  z-index: 99;
}

.mobile-drawer.is-open { display: flex; }

.mobile-drawer a {
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-drawer a:last-child { border-bottom: none; }

.mobile-drawer .btn-post-ad {
  margin-top: 8px;
  text-align: center;
  border-bottom: none;
}

/* ==========================================================================
   Homepage
   ========================================================================== */
.hero {
  text-align: center;
  padding: 56px 0 36px;
}

.hero h1 {
  font-size: 38px;
  font-weight: 800;
  color: var(--navy-900);
  margin: 0 0 14px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.hero .hero-lead {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 24px;
  line-height: 1.55;
}

.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-cta .btn-post-ad,
.hero-cta .btn-load-more {
  padding: 12px 24px;
  font-size: 14px;
}

.home-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 26px;
  padding: 16px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin: 0 0 36px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.home-stats .stat {
  font-size: 13px;
  color: var(--text-muted);
}

.home-stats .stat strong {
  color: var(--navy-900);
  font-weight: 700;
  margin-right: 4px;
}

.home-section { margin: 0 0 40px; }

.home-section-heading {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy-900);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}

.home-section-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0 0 18px;
}

.browse-all {
  text-align: center;
  margin-top: 22px;
}

.final-cta {
  background: var(--navy-800);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 36px 24px;
  text-align: center;
  margin: 0 0 40px;
  box-shadow: var(--shadow-sm);
}

.final-cta h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 8px;
  color: #fff;
}

.final-cta p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  margin: 0 auto 18px;
  line-height: 1.55;
}

.final-cta .btn-post-ad {
  padding: 12px 28px;
  font-size: 14px;
}

@media (max-width: 720px) {
  .hero { padding: 28px 0 24px; }
  .hero h1 { font-size: 26px; }
  .hero .hero-lead { font-size: 14px; }
  .home-section-heading { font-size: 18px; }
  .final-cta { padding: 26px 18px; }
  .final-cta h2 { font-size: 18px; }
}

/* ==========================================================================
   Post-listing page
   ========================================================================== */
.cta-block {
  text-align: center;
  padding: 4px 0 8px;
}

.cta-block .btn-post-ad {
  display: inline-block;
  padding: 14px 36px;
  font-size: 15px;
}

.cta-block .cta-note {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  color: var(--text-soft);
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
}

.steps li {
  position: relative;
  padding: 6px 0 14px 52px;
  counter-increment: step;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 4px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--red-500);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.steps li strong {
  display: block;
  color: var(--navy-900);
  font-size: 15px;
  margin-bottom: 2px;
}

/* ==========================================================================
   Static content pages (about, contact, faq, report-abuse)
   ========================================================================== */
.info-section h3:not(.info-col-heading) {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-900);
  margin: 22px 0 8px;
}

.info-section > h3:not(.info-col-heading):first-child { margin-top: 0; }
.info-section > h2 + h3:not(.info-col-heading) { margin-top: 14px; }

.info-section ul.prose-list {
  margin: 0 0 16px;
  padding-left: 22px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

.info-section ul.prose-list li { margin: 4px 0; }

.info-section a:not(.btn-post-ad):not(.btn-view) {
  color: var(--red-500);
  font-weight: 500;
}

.info-section a:not(.btn-post-ad):not(.btn-view):hover { text-decoration: underline; }

.info-section .info-col p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0 0 6px;
  line-height: 1.5;
}

.info-section .info-col p:last-child { margin: 0; }

.info-section .info-col a {
  display: inline-block;
  margin-bottom: 6px;
  word-break: break-word;
}

/* ==========================================================================
   Hub page (escorts/index.html)
   ========================================================================== */
.hub-search { margin: 0 0 24px; }

.hub-search input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 15px;
  font-family: inherit;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.hub-search input:focus {
  outline: none;
  border-color: var(--red-500);
  box-shadow: 0 0 0 3px rgba(230, 57, 80, 0.15);
}

.hub-section-heading {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--navy-900);
}

.hub-featured { margin: 0 0 32px; }

.hub-featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
}

.hub-featured-card {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  color: var(--navy-900);
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}

.hub-featured-card:hover {
  transform: translateY(-2px);
  border-color: #f7c7cd;
  box-shadow: var(--shadow-md);
}

.hub-city { font-weight: 700; font-size: 15px; }

.hub-state-abbrev {
  font-size: 11px;
  font-weight: 700;
  color: var(--red-500);
  letter-spacing: 0.06em;
}

.hub-state-nav {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px;
  margin: 0 0 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  box-shadow: var(--shadow-sm);
}

.hub-state-nav a {
  padding: 6px 12px;
  background: var(--bg);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  transition: background 0.15s, color 0.15s;
}

.hub-state-nav a:hover { background: var(--red-500); color: #fff; }

.hub-all { margin: 0 0 32px; }

.hub-state-section {
  margin: 0 0 14px;
  scroll-margin-top: 80px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
}

.hub-state-section h3 {
  font-size: 16px;
  color: var(--navy-900);
  padding: 0 0 10px;
  border-bottom: 1px solid var(--border);
  margin: 0 0 12px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-weight: 700;
}

.hub-state-count {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
}

.hub-city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 2px 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hub-city-grid a {
  display: block;
  padding: 5px 0;
  color: var(--text);
  font-size: 14px;
  transition: color 0.15s;
}

.hub-city-grid a:hover { color: var(--red-500); }

.hub-empty {
  display: none;
  text-align: center;
  color: var(--text-muted);
  padding: 32px;
  font-style: italic;
}

.hub-empty.is-visible { display: block; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .layout { grid-template-columns: 1fr; }
  .sidebar {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .sidebar-card { flex: 1 1 280px; }
  .listings-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-about { grid-column: span 3; }
}

@media (max-width: 720px) {
  .nav-list, .header-inner > .btn-post-ad { display: none; }
  .burger { display: flex; }
  .listings-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .card-body { padding: 10px; gap: 6px; }
  .card-title { font-size: 13px; }
  .card-desc { font-size: 12px; -webkit-line-clamp: 2; }
  .card-footer { padding: 8px 10px 10px; }
  .btn-view { padding: 6px 10px; font-size: 11px; }
  .tag { font-size: 9px; padding: 3px 6px; }
  .badge-online { font-size: 10px; padding: 3px 8px; top: 8px; left: 8px; }
  .badge-time { font-size: 10px; padding: 2px 6px; bottom: 8px; right: 8px; }
  .page-header h1 { font-size: 24px; }
  .info-grid { grid-template-columns: 1fr; gap: 18px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-about { grid-column: span 2; }
  .info-section { padding: 20px; }
  .container { padding: 0 16px; }
  .sidebar-card { flex: 1 1 100%; }
}


