  :root {
    --ink: #0B1220;
    --paper: #FFFFFF;
    --cloud: #F4F6F9;
    --cloud-deep: #E9EDF3;
    --line: #E2E6ED;
    --text: #101827;
    --text-mute: #5B6472;
    --text-faint: #8892A0;
    --emerald: #0E7C56;
    --emerald-deep: #0B5F42;
    --emerald-soft: #E4F3EC;
    --amber: #C2760C;
    --amber-soft: #FBEDD9;
    --red: #B3261E;
    --red-soft: #FBEAE9;
    --font-display: 'Fraunces', serif;
    --font-body: 'Inter', sans-serif;
  }
  * { box-sizing: border-box; }
  body { margin: 0; font-family: var(--font-body); color: var(--text); background: var(--paper); }
  a { text-decoration: none; color: inherit; }
  img { max-width: 100%; display: block; }
  button { font-family: var(--font-body); }

  /* ---------- Header ---------- */
  header.site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255,255,255,0.92); backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
  }
  .header-inner {
    max-width: 1200px; margin: 0 auto; padding: 16px 20px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .logo {
    cursor: pointer; font-family: var(--font-display); font-weight: 600; font-size: 22px;
    color: var(--ink); display: flex; align-items: center; gap: 8px;
  }
  .logo svg { flex-shrink: 0; }
  nav.nav-desktop { display: flex; align-items: center; gap: 6px; }
  .nav-mobile-toggle { display: none; background: none; border: none; cursor: pointer; }
  .nav-mobile { display: none; border-top: 1px solid var(--line); padding: 16px; flex-direction: column; gap: 10px; }
  .nav-mobile.open { display: flex; }

  /* ---------- Buttons ---------- */
  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 20px; font-size: 14.5px; font-weight: 600; border-radius: 10px;
    cursor: pointer; border: 1px solid transparent; transition: transform 0.12s ease, opacity 0.15s ease;
    white-space: nowrap;
  }
  .btn:active { transform: scale(0.97); }
  .btn-sm { padding: 8px 14px; font-size: 13px; }
  .btn-lg { padding: 15px 26px; font-size: 15.5px; }
  .btn-primary { background: var(--ink); color: #fff; border-color: var(--ink); }
  .btn-emerald { background: var(--emerald); color: #fff; border-color: var(--emerald); }
  .btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
  .btn-ghost { background: transparent; color: var(--text-mute); }
  .btn-full { width: 100%; }
  .btn[disabled] { opacity: 0.5; cursor: not-allowed; }

  /* ---------- Badges ---------- */
  .badge {
    display: inline-flex; align-items: center; gap: 5px; padding: 4px 10px;
    border-radius: 999px; font-size: 12px; font-weight: 600;
  }
  .badge-neutral { background: var(--cloud-deep); color: var(--text-mute); }
  .badge-emerald { background: var(--emerald-soft); color: var(--emerald-deep); }
  .badge-amber { background: var(--amber-soft); color: var(--amber); }
  .badge-red { background: var(--red-soft); color: var(--red); }

  /* ---------- Hero ---------- */
  .hero { background: var(--ink); color: #fff; padding: 64px 20px 56px; }
  .hero-inner { max-width: 760px; margin: 0 auto; text-align: center; }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.08);
    padding: 6px 14px; border-radius: 999px; font-size: 12.5px; font-weight: 600; margin-bottom: 20px;
  }
  .hero h1 { font-family: var(--font-display); font-size: clamp(30px, 5vw, 46px); font-weight: 600; margin: 0 0 14px; line-height: 1.15; }
  .hero p { color: rgba(255,255,255,0.65); font-size: 16px; margin: 0 0 30px; }
  .hero-search {
    display: flex; align-items: center; background: #fff; border-radius: 12px; padding: 6px;
    max-width: 480px; margin: 0 auto; box-shadow: 0 12px 30px rgba(0,0,0,0.3);
  }
  .hero-search svg { margin: 0 8px 0 10px; flex-shrink: 0; }
  .hero-search input { flex: 1; border: none; outline: none; font-size: 14.5px; font-family: var(--font-body); color: var(--text); padding: 10px 0; }
  /* ---------- Filter bar ---------- */
  .filter-bar {
    max-width: 1200px; margin: 0 auto; padding: 28px 20px 0;
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px;
  }
  .filter-count { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--ink); }
  .filter-controls { display: flex; gap: 10px; flex-wrap: wrap; }
  select.filter-select, input.text-input {
    width: auto; padding: 8px 12px; border-radius: 9px; border: 1.5px solid var(--line);
    font-size: 13.5px; font-family: var(--font-body); color: var(--text); background: #fff; outline: none;
  }

  /* ---------- Listing layout (sidebar + grid) ---------- */
  .listing-layout {
    max-width: 1200px; margin: 0 auto; padding: 0 20px;
    display: flex; align-items: flex-start; gap: 24px;
  }
  .listing-main { flex: 1; min-width: 0; }

  .filters-sidebar {
    width: 240px; flex-shrink: 0; background: #fff; border: 1px solid var(--line);
    border-radius: 14px; padding: 18px; margin-top: 20px; position: sticky; top: 84px;
  }
  .filters-sidebar-header {
    display: flex; align-items: center; justify-content: space-between; gap: 10px;
    font-family: var(--font-display); font-size: 17px; font-weight: 600; color: var(--ink);
    margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid var(--line);
  }
  .clear-filters-link {
    background: none; border: none; cursor: pointer; color: var(--emerald);
    font-size: 12.5px; font-weight: 600; font-family: var(--font-body); padding: 0;
  }
  .filters-close-btn { display: none; background: none; border: none; cursor: pointer; padding: 2px; }
  .filter-group { margin-bottom: 20px; }
  .filter-group:last-child { margin-bottom: 0; }
  .filter-group-title { font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
  .filter-checkbox-row {
    display: flex; align-items: center; gap: 9px; padding: 6px 0; cursor: pointer;
    font-size: 13.5px; color: var(--text-mute);
  }
  .filter-checkbox-row input[type="checkbox"] { width: 15px; height: 15px; accent-color: var(--emerald); cursor: pointer; flex-shrink: 0; }
  .filter-checkbox-row span:nth-child(2) { flex: 1; color: var(--text); }
  .filter-checkbox-count { color: var(--text-faint); font-size: 12px; }

  .filter-bar-left { display: flex; align-items: center; gap: 14px; }
  .filters-toggle-btn { display: none; position: relative; }
  .filter-count-dot {
    background: var(--emerald); color: #fff; border-radius: 999px; font-size: 11px;
    min-width: 17px; height: 17px; display: inline-flex; align-items: center; justify-content: center; padding: 0 4px;
  }
  .filters-backdrop { display: none; }

  /* ---------- Car grid & cards ---------- */
  .car-grid {
    padding: 20px 0 60px;
    display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 20px;
  }
  .car-card {
    background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
    cursor: pointer; transition: box-shadow 0.15s ease;
  }
  .car-card:hover { box-shadow: 0 10px 24px rgba(11,18,32,0.08); }
  .car-card-media { position: relative; aspect-ratio: 3/2; background: var(--cloud); }
  .car-card-media img { width: 100%; height: 100%; object-fit: cover; }
  .car-card-media img.sold-img { filter: grayscale(0.5); }
  .sold-overlay {
    position: absolute; inset: 0; background: rgba(11,18,32,0.55);
    display: flex; align-items: center; justify-content: center;
  }
  .car-card-media .year-badge { position: absolute; top: 10px; left: 10px; }
  .car-card-body { padding: 16px; }
  .car-card-title { font-family: var(--font-display); font-size: 17px; font-weight: 600; color: var(--ink); }
  .car-card-variant { font-size: 13px; color: var(--text-mute); margin-bottom: 10px; }
  .car-card-meta { display: flex; gap: 12px; flex-wrap: wrap; font-size: 12.5px; color: var(--text-mute); margin-bottom: 12px; }
  .car-card-meta span { display: flex; align-items: center; gap: 4px; }
  .transmission-tag {
    font-size: 11px; font-weight: 700; color: var(--emerald-deep); background: var(--emerald-soft);
    border-radius: 5px; padding: 2px 6px; letter-spacing: 0.3px;
  }
  .car-card-footer { display: flex; align-items: baseline; justify-content: space-between; }
  .car-card-price { font-family: var(--font-display); font-size: 19px; font-weight: 600; color: var(--ink); }
  .car-card-view { font-size: 12.5px; color: var(--emerald); font-weight: 600; display: flex; align-items: center; gap: 3px; }
  .empty-state { text-align: center; padding: 60px 20px; color: var(--text-faint); }
  .coming-soon { max-width: 480px; margin: 0 auto; padding: 70px 20px; }
  .coming-soon-emoji { font-size: 40px; margin-bottom: 14px; }
  .coming-soon h3 { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--ink); margin-bottom: 10px; }
  .coming-soon p { font-size: 14.5px; line-height: 1.6; color: var(--text-mute); margin-bottom: 24px; }
  .coming-soon-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
  .pagination { display: flex; align-items: center; justify-content: center; gap: 6px; padding: 30px 0 10px; flex-wrap: wrap; }
  .pagination-btn {
    min-width: 36px; height: 36px; padding: 0 6px; border-radius: 8px;
    border: 1px solid var(--line); background: #fff; color: var(--ink);
    font-size: 14px; font-weight: 500; cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
    transition: background 0.15s, border-color 0.15s;
  }
  .pagination-btn:hover:not(:disabled) { border-color: var(--emerald); }
  .pagination-btn.active { background: var(--emerald); border-color: var(--emerald); color: #fff; }
  .pagination-btn:disabled { opacity: 0.4; cursor: not-allowed; }
  .pagination-nav { padding: 0; }

  /* ---------- Car detail ---------- */
  .detail-wrap { max-width: 1100px; margin: 0 auto; padding: 28px 20px 70px; }
  .detail-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 36px; }
  .detail-media { position: relative; aspect-ratio: 3/2; border-radius: 16px; overflow: hidden; background: var(--cloud); }
  .detail-media img { width: 100%; height: 100%; object-fit: cover; }
  .detail-nav-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 34px; height: 34px; border-radius: 50%; border: none; background: rgba(255,255,255,0.9);
    display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  }
  .detail-nav-btn.left { left: 10px; }
  .detail-nav-btn.right { right: 10px; }
  .thumb-row { display: flex; gap: 8px; margin-top: 10px; }
  .thumb-row img {
    width: 64px; height: 48px; object-fit: cover; border-radius: 8px; cursor: pointer;
    border: 2px solid transparent; opacity: 0.6;
  }
  .thumb-row img.active { border-color: var(--emerald); opacity: 1; }
  .detail-section-title { font-family: var(--font-display); font-size: 16px; font-weight: 600; margin-top: 26px; }
  .spec-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; margin-top: 10px; }
  .spec-item { background: var(--cloud); border-radius: 10px; padding: 12px 14px; }
  .spec-item .spec-label { font-size: 11.5px; color: var(--text-faint); margin-top: 6px; }
  .spec-item .spec-value { font-size: 13.5px; font-weight: 600; color: var(--ink); }
  .desc-text { font-size: 14px; color: var(--text-mute); line-height: 1.6; }
  .feature-chips { display: flex; flex-wrap: wrap; gap: 8px; }
  .feature-chip {
    display: flex; align-items: center; gap: 5px; font-size: 12.5px; color: var(--text-mute);
    background: var(--cloud); padding: 6px 12px; border-radius: 999px;
  }
  .buy-panel {
    position: sticky; top: 90px; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 24px;
  }
  .buy-panel .sub { font-size: 12.5px; color: var(--text-faint); font-weight: 600; margin-bottom: 4px; }
  .buy-panel h1 { font-family: var(--font-display); font-size: 26px; font-weight: 600; margin: 0 0 4px; color: var(--ink); }
  .buy-panel .variant-line { font-size: 14px; color: var(--text-mute); margin-bottom: 18px; }
  .buy-panel .price { font-family: var(--font-display); font-size: 30px; font-weight: 600; color: var(--ink); margin-bottom: 18px; }
  .buy-panel .response-note {
    margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--line);
    font-size: 12.5px; color: var(--text-faint); display: flex; align-items: center; gap: 6px;
  }

  /* ---------- Sell coming soon ---------- */
  .sell-wrap { max-width: 560px; margin: 0 auto; padding: 80px 20px; text-align: center; }
  .sell-wrap h1 { font-family: var(--font-display); font-size: 28px; font-weight: 600; margin: 16px 0 10px; color: var(--ink); }
  .sell-wrap p { font-size: 15px; color: var(--text-mute); margin-bottom: 26px; }
  .sell-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

  /* ---------- Footer ---------- */
  footer.site-footer { background: var(--ink); color: rgba(255,255,255,0.7); padding: 0 0 30px; margin-top: 40px; }
  .footer-highlights {
    max-width: 1200px; margin: 0 auto; padding: 28px 20px; display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }
  .footer-highlight { display: flex; align-items: center; gap: 12px; }
  .footer-highlight svg { flex-shrink: 0; }
  .footer-highlight-title { font-size: 13.5px; font-weight: 600; color: #fff; }
  .footer-highlight-desc { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 2px; }
  .footer-cols {
    max-width: 1200px; margin: 0 auto; padding: 30px 20px 0; display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px;
  }
  .footer-col .biz-name { font-family: var(--font-display); font-size: 18px; color: #fff; margin-bottom: 6px; }
  .footer-col .addr { font-size: 13px; margin-bottom: 12px; }
  .footer-contact { display: flex; flex-direction: column; gap: 6px; font-size: 13px; }
  .footer-contact span { display: flex; align-items: center; gap: 6px; }
  .footer-links { display: flex; flex-direction: column; gap: 9px; }
  .footer-links a { color: rgba(255,255,255,0.65); font-size: 13px; text-decoration: none; }
  .footer-links a:hover { color: #fff; text-decoration: underline; }
  .footer-copy { text-align: center; font-size: 12px; margin-top: 30px; color: rgba(255,255,255,0.4); }

  /* ---------- WhatsApp floating button (used on car detail page) ---------- */
  .whatsapp-note {
    display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-faint);
    margin-top: 10px; justify-content: center;
  }

  @media (max-width: 720px) {
    nav.nav-desktop { display: none; }
    .nav-mobile-toggle { display: block; }
    .detail-grid { grid-template-columns: 1fr; }
    .spec-grid { grid-template-columns: 1fr 1fr; }

    .filters-toggle-btn { display: inline-flex; }
    .filters-sidebar {
      position: fixed; top: 0; right: -100%; height: 100%; width: min(300px, 82vw);
      margin: 0; border-radius: 0; z-index: 200; overflow-y: auto;
      transition: right 0.2s ease; box-shadow: -8px 0 24px rgba(0,0,0,0.15);
    }
    .filters-sidebar.open { right: 0; }
    .filters-close-btn { display: block; }
    .filters-backdrop {
      display: block; position: fixed; inset: 0; background: rgba(11,18,32,0.5); z-index: 190;
    }
  }

/* ---------- FAQ section (homepage) ---------- */
.faq-section { max-width: 800px; margin: 20px auto 60px; padding: 0 20px; }
.faq-section h2 { font-family: var(--font-display); font-size: 26px; font-weight: 600; text-align: center; margin-bottom: 8px; color: var(--ink); }
.faq-section .faq-sub { text-align: center; color: var(--text-mute); font-size: 14.5px; margin-bottom: 30px; }
.faq-item { border: 1px solid var(--line); border-radius: 12px; padding: 18px 20px; margin-bottom: 12px; background: #fff; }
.faq-item h3 { font-family: var(--font-body); font-size: 15px; font-weight: 700; margin: 0 0 8px; color: var(--ink); }
.faq-item p { font-size: 13.5px; color: var(--text-mute); line-height: 1.6; margin: 0; }

/* ---------- Areas we serve (footer) ---------- */
.footer-col .areas-label { font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.5px; color: rgba(255,255,255,0.4); margin-bottom: 12px; }
.footer-col .areas-list { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.9; }

/* ---------- Blog listing page ---------- */
.blog-hero { background: var(--ink); color: #fff; padding: 56px 20px 44px; text-align: center; }
.blog-hero h1 { font-family: var(--font-display); font-size: clamp(28px, 4.5vw, 40px); font-weight: 600; margin: 0 0 12px; }
.blog-hero p { color: rgba(255,255,255,0.65); font-size: 15.5px; max-width: 620px; margin: 0 auto; }
.blog-grid {
  max-width: 1100px; margin: 0 auto; padding: 40px 20px 70px;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px;
}
.blog-card {
  display: block; background: #fff; border: 1px solid var(--line); border-radius: 14px;
  overflow: hidden; transition: box-shadow 0.15s ease;
}
.blog-card:hover { box-shadow: 0 10px 24px rgba(11,18,32,0.08); }
.blog-card .blog-card-body { padding: 20px; }
.blog-card .blog-tag { display: inline-block; font-size: 11.5px; font-weight: 700; color: var(--emerald-deep); background: var(--emerald-soft); padding: 4px 10px; border-radius: 999px; margin-bottom: 12px; }
.blog-card h2 { font-family: var(--font-display); font-size: 19px; font-weight: 600; margin: 0 0 8px; color: var(--ink); line-height: 1.3; }
.blog-card p { font-size: 13.5px; color: var(--text-mute); line-height: 1.55; margin: 0 0 14px; }
.blog-card .blog-read-more { font-size: 12.5px; color: var(--emerald); font-weight: 600; display: flex; align-items: center; gap: 3px; }

/* ---------- Blog post page ---------- */
.blog-post-hero { background: var(--ink); color: #fff; padding: 48px 20px 40px; }
.blog-post-hero .breadcrumb { max-width: 760px; margin: 0 auto 18px; font-size: 12.5px; color: rgba(255,255,255,0.5); }
.blog-post-hero .breadcrumb a { color: rgba(255,255,255,0.75); }
.blog-post-hero .breadcrumb a:hover { text-decoration: underline; }
.blog-post-hero .post-tag { display: inline-block; font-size: 11.5px; font-weight: 700; color: #fff; background: rgba(255,255,255,0.1); padding: 4px 10px; border-radius: 999px; margin-bottom: 14px; }
.blog-post-hero h1 { font-family: var(--font-display); font-size: clamp(26px, 4.5vw, 38px); font-weight: 600; max-width: 760px; margin: 0 auto 12px; line-height: 1.2; }
.blog-post-hero .post-meta { max-width: 760px; margin: 0 auto; font-size: 13px; color: rgba(255,255,255,0.55); }
.blog-post-body { max-width: 720px; margin: 0 auto; padding: 40px 20px 20px; font-size: 15.5px; line-height: 1.75; color: var(--text); }
.blog-post-body h2 { font-family: var(--font-display); font-size: 22px; font-weight: 600; margin: 34px 0 14px; color: var(--ink); }
.blog-post-body h3 { font-size: 16.5px; font-weight: 700; margin: 24px 0 10px; color: var(--ink); }
.blog-post-body p { margin: 0 0 16px; color: var(--text-mute); }
.blog-post-body ul, .blog-post-body ol { margin: 0 0 16px; padding-left: 22px; color: var(--text-mute); }
.blog-post-body li { margin-bottom: 8px; }
.blog-post-body strong { color: var(--text); }
.post-cta {
  max-width: 720px; margin: 30px auto 60px; padding: 24px; background: var(--cloud);
  border-radius: 14px; text-align: center;
}
.post-cta p { margin: 0 0 14px; font-size: 14.5px; color: var(--text-mute); }
.post-cta .cta-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.related-posts { max-width: 720px; margin: 0 auto 60px; }
.related-posts h3 { font-family: var(--font-display); font-size: 17px; margin-bottom: 12px; }
.related-posts a { display: block; padding: 12px 0; border-top: 1px solid var(--line); font-size: 14px; font-weight: 600; color: var(--ink); }
.related-posts a:hover { color: var(--emerald); }

@media (max-width: 720px) {
  .footer-col .areas-list { line-height: 2.1; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-highlights { grid-template-columns: 1fr 1fr; }
}

/* ---------- WhatsApp floating button (all pages) ---------- */
.whatsapp-float {
  position: fixed; bottom: 20px; right: 20px; z-index: 200;
  width: 54px; height: 54px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25); transition: transform 0.15s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* ---------- About / rich content section (homepage) ---------- */
.about-section { max-width: 800px; margin: 20px auto 0; padding: 0 20px; }
.about-section h2 { font-family: var(--font-display); font-size: 24px; font-weight: 600; color: var(--ink); margin-bottom: 14px; text-align: center; }
.about-section p { font-size: 14.5px; color: var(--text-mute); line-height: 1.7; margin: 0 0 14px; }

/* ---------- Benefits section ---------- */
.benefits-section { max-width: 1000px; margin: 50px auto 0; padding: 0 20px; }
.benefits-section h2 { font-family: var(--font-display); font-size: 24px; font-weight: 600; color: var(--ink); text-align: center; margin-bottom: 26px; }
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 16px; }
.benefit-card { background: var(--cloud); border-radius: 14px; padding: 20px; }
.benefit-card h3 { font-size: 14.5px; font-weight: 700; color: var(--ink); margin: 12px 0 6px; }
.benefit-card p { font-size: 13px; color: var(--text-mute); line-height: 1.55; margin: 0; }

/* ---------- Nearby cities section (homepage) ---------- */
.nearby-section { max-width: 1000px; margin: 50px auto 0; padding: 0 20px; text-align: center; }
.nearby-section h2 { font-family: var(--font-display); font-size: 24px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.nearby-sub { font-size: 13.5px; color: var(--text-mute); margin-bottom: 22px; }
.nearby-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 14px; }
.nearby-card {
  display: block; background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 18px; text-align: left; transition: box-shadow 0.15s ease;
}
.nearby-card:hover { box-shadow: 0 8px 20px rgba(11,18,32,0.08); }
.nearby-card-name { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--ink); display: flex; align-items: center; gap: 6px; }
.nearby-card-rto { font-size: 11px; font-weight: 600; color: var(--emerald); background: rgba(16,124,79,0.1); border-radius: 5px; padding: 2px 6px; }
.nearby-card-tagline { font-size: 12px; color: var(--text-faint); margin-top: 4px; font-style: italic; }

/* ---------- City landing pages (cities/*.html) ---------- */
.city-hero { background: var(--ink); color: #fff; padding: 56px 20px 44px; text-align: center; }
.city-hero .breadcrumb { max-width: 760px; margin: 0 auto 16px; font-size: 12.5px; color: rgba(255,255,255,0.5); }
.city-hero .breadcrumb a { color: rgba(255,255,255,0.75); }
.city-hero h1 { font-family: var(--font-display); font-size: clamp(28px, 4.5vw, 40px); font-weight: 600; margin: 0 0 14px; max-width: 700px; margin-left: auto; margin-right: auto; }
.city-hero p { color: rgba(255,255,255,0.65); font-size: 15.5px; max-width: 620px; margin: 0 auto 26px; }
.city-body { max-width: 760px; margin: 0 auto; padding: 44px 20px 20px; }
.city-body h2 { font-family: var(--font-display); font-size: 21px; font-weight: 600; margin: 30px 0 12px; color: var(--ink); }
.city-body p { font-size: 15px; color: var(--text-mute); line-height: 1.7; margin: 0 0 16px; }
.city-body ul { margin: 0 0 16px; padding-left: 22px; color: var(--text-mute); }
.city-body li { margin-bottom: 8px; font-size: 14.5px; }
