/* ============================================================
   FOOD MAN — main.css
   Production-ready public stylesheet
   ============================================================ */

/* ── Reset & Base ─────────────────────────────────────────── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{background:#f0ede8;font-family:'Segoe UI',Arial,sans-serif;color:#1a1a1a;line-height:1.6}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
ul{list-style:none}
button{font-family:inherit}

/* ── Navbar ───────────────────────────────────────────────── */
.nav{
  background:#fff;
  position:sticky;
  top:0;
  z-index:100;
  box-shadow:0 1px 8px rgba(0,0,0,0.06);
  border-bottom:1px solid #e5e0d8;
  height:64px;
}
.nav-inner{
  max-width:1100px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 24px;
  height:100%;
}
.nav-logo{
  display:flex;
  align-items:center;
  gap:10px;
}
.nav-logo-mark{
  width:36px;
  height:36px;
  background:#c0392b;
  border-radius:8px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}
.nav-logo-text{
  font-size:18px;
  font-weight:600;
  letter-spacing:-0.3px;
}
.nav-logo-text strong{color:#c0392b}

.nav-links{
  display:flex;
  gap:28px;
}
.nav-links li a{
  font-size:13px;
  color:#666;
  font-weight:500;
  transition:color 0.2s;
}
.nav-links li a:hover,
.nav-links li a.active{color:#c0392b}

.nav-ig{
  display:flex;
  align-items:center;
  gap:6px;
  background:#faf8f5;
  border:1px solid #e0d8ce;
  border-radius:20px;
  padding:6px 14px;
  font-size:12px;
  font-weight:600;
  transition:border-color 0.2s;
}
.nav-ig:hover{border-color:#c0392b}

.nav-burger{
  display:none;
  background:none;
  border:none;
  font-size:24px;
  cursor:pointer;
  color:#1a1a1a;
  line-height:1;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero{
  background:#fff;
  border-bottom:1px solid #e5e0d8;
}
.hero-inner{
  max-width:1100px;
  margin:0 auto;
  padding:56px 24px 48px;
  display:grid;
  grid-template-columns:1fr 400px;
  gap:60px;
  align-items:center;
}
.hero-eyebrow{
  font-size:11px;
  font-weight:700;
  letter-spacing:3px;
  text-transform:uppercase;
  color:#c0392b;
  margin-bottom:14px;
}
.hero-title{
  font-size:46px;
  font-weight:900;
  line-height:1.03;
  letter-spacing:-2px;
  margin-bottom:16px;
  font-family:Georgia,serif;
}
.hero-title em{
  font-style:italic;
  color:#c0392b;
}
.hero-desc{
  font-size:15px;
  color:#777;
  line-height:1.75;
  margin-bottom:28px;
}
.hero-stats{
  display:flex;
  gap:32px;
  margin-bottom:28px;
  padding-bottom:24px;
  border-bottom:1px solid #f0ede8;
}
.stat-num{
  font-size:32px;
  font-weight:900;
  color:#1a1a1a;
  line-height:1;
  font-family:Georgia,serif;
}
.stat-label{
  font-size:11px;
  color:#aaa;
  text-transform:uppercase;
  letter-spacing:1px;
  margin-top:3px;
}
.btn-row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.btn-primary{
  background:#c0392b;
  color:#fff;
  padding:13px 28px;
  border-radius:6px;
  font-size:13px;
  font-weight:700;
  border:none;
  cursor:pointer;
  transition:background 0.2s;
  display:inline-block;
}
.btn-primary:hover{background:#a93226}
.btn-secondary{
  background:#fff;
  color:#1a1a1a;
  padding:13px 28px;
  border-radius:6px;
  font-size:13px;
  font-weight:600;
  border:1.5px solid #ddd;
  cursor:pointer;
  display:inline-block;
  transition:border-color 0.2s,background 0.2s;
}
.btn-secondary:hover{border-color:#bbb;background:#faf8f5}

/* ── Featured Card ────────────────────────────────────────── */
.feat-card{
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 4px 32px rgba(0,0,0,0.1);
  border:1px solid #f0ede8;
}
.feat-photo{
  height:200px;
  position:relative;
  overflow:hidden;
}
.feat-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.feat-badge{
  position:absolute;
  top:12px;
  left:12px;
  background:#c0392b;
  color:#fff;
  font-size:10px;
  font-weight:800;
  padding:5px 12px;
  border-radius:4px;
  letter-spacing:1px;
  text-transform:uppercase;
}
.feat-score{
  position:absolute;
  top:12px;
  right:12px;
  background:#fff;
  border-radius:10px;
  padding:7px 11px;
  text-align:center;
  box-shadow:0 2px 10px rgba(0,0,0,0.15);
}
.feat-score .num{
  font-size:22px;
  font-weight:900;
  color:#c0392b;
  font-family:Georgia,serif;
  line-height:1;
  display:block;
}
.feat-score .denom{
  font-size:9px;
  color:#bbb;
  display:block;
}
.feat-body{padding:18px}
.feat-cat{
  font-size:10px;
  font-weight:700;
  letter-spacing:2px;
  text-transform:uppercase;
  color:#c0392b;
  margin-bottom:5px;
}
.feat-name{
  font-size:19px;
  font-weight:800;
  color:#1a1a1a;
  margin-bottom:4px;
  letter-spacing:-0.3px;
  font-family:Georgia,serif;
}
.feat-loc{
  font-size:12px;
  color:#aaa;
  margin-bottom:10px;
  display:flex;
  align-items:center;
  gap:4px;
}
.feat-desc{
  font-size:13px;
  color:#777;
  line-height:1.65;
  margin-bottom:14px;
}
.feat-tags{
  display:flex;
  gap:6px;
  flex-wrap:wrap;
}
.tag{
  background:#f5f0eb;
  color:#888;
  font-size:10px;
  padding:4px 10px;
  border-radius:12px;
}
.tag-red{
  background:#fdf0ee;
  color:#c0392b;
  font-weight:600;
}

/* ── Cities Section ───────────────────────────────────────── */
.cities-section{
  padding:40px 24px;
  max-width:1100px;
  margin:0 auto;
}
.section-label{
  font-size:11px;
  font-weight:700;
  letter-spacing:3px;
  text-transform:uppercase;
  color:#bbb;
  margin-bottom:20px;
}
.cities-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.city-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:#fff;
  border:1.5px solid #e5e0d8;
  border-radius:50px;
  padding:10px 20px;
  cursor:pointer;
  transition:border-color 0.2s,background 0.2s,color 0.2s;
  box-shadow:0 1px 4px rgba(0,0,0,0.04);
  text-decoration:none;
}
.city-pill:hover{border-color:#c0392b}
.city-pill.active{
  background:#c0392b;
  border-color:#c0392b;
  color:#fff;
}
.city-pill.active .city-count{color:rgba(255,255,255,0.7)}
.city-pill-name{
  font-size:13px;
  font-weight:700;
}
.city-count{
  font-size:11px;
  color:#bbb;
  margin-left:2px;
}

/* ── Venues Section ───────────────────────────────────────── */
.venues-section{
  padding:0 24px 56px;
  max-width:1100px;
  margin:0 auto;
}
.venues-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:22px;
  flex-wrap:wrap;
  gap:12px;
}
.venues-title{
  font-size:22px;
  font-weight:800;
  letter-spacing:-0.5px;
  font-family:Georgia,serif;
}
.filter-row{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.chip{
  background:#fff;
  border:1.5px solid #e5e0d8;
  border-radius:20px;
  padding:6px 14px;
  font-size:12px;
  font-weight:600;
  color:#777;
  cursor:pointer;
  text-decoration:none;
  display:inline-block;
  transition:background 0.2s,border-color 0.2s,color 0.2s;
}
.chip:hover,
.chip.active{
  background:#1a1a1a;
  border-color:#1a1a1a;
  color:#fff;
}
.venues-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

/* ── Venue Card ───────────────────────────────────────────── */
.vcard{
  background:#fff;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 2px 8px rgba(0,0,0,0.05);
  border:1px solid #f0ede8;
  transition:box-shadow 0.2s,transform 0.2s;
  display:flex;
  flex-direction:column;
}
.vcard:hover{
  box-shadow:0 8px 28px rgba(0,0,0,0.1);
  transform:translateY(-2px);
}
.vcard-img{
  height:160px;
  position:relative;
  overflow:hidden;
}
.vcard-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform 0.3s;
}
.vcard:hover .vcard-img img{transform:scale(1.03)}
.vcard-fallback{
  height:160px;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  background:#e5e0d8;
}
.vcard-fallback svg{
  width:48px;
  height:48px;
  fill:rgba(255,255,255,0.2);
}
.vcard-score{
  position:absolute;
  bottom:10px;
  right:10px;
  background:#fff;
  border-radius:8px;
  padding:5px 9px;
  display:flex;
  align-items:baseline;
  gap:2px;
  box-shadow:0 2px 8px rgba(0,0,0,0.14);
}
.vcard-score .n{
  font-size:16px;
  font-weight:900;
  color:#c0392b;
  font-family:Georgia,serif;
}
.vcard-score .d{
  font-size:9px;
  color:#ccc;
}
.vcard-rec{
  position:absolute;
  top:10px;
  left:10px;
  background:#c0392b;
  color:#fff;
  font-size:9px;
  font-weight:800;
  padding:4px 10px;
  border-radius:4px;
  letter-spacing:1px;
  text-transform:uppercase;
}
.vcard-body{
  padding:14px 16px;
  flex:1;
  display:flex;
  flex-direction:column;
}
.vcard-cat{
  font-size:10px;
  font-weight:700;
  letter-spacing:1.5px;
  text-transform:uppercase;
  color:#c0392b;
  margin-bottom:4px;
}
.vcard-name{
  font-size:15px;
  font-weight:800;
  color:#1a1a1a;
  margin-bottom:2px;
  letter-spacing:-0.2px;
  font-family:Georgia,serif;
}
.vcard-loc{
  font-size:11px;
  color:#bbb;
  margin-bottom:8px;
}
.vcard-desc{
  font-size:12px;
  color:#888;
  line-height:1.55;
  margin-bottom:10px;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
  flex:1;
}
.vcard-foot{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-top:10px;
  border-top:1px solid #f5f0eb;
  margin-top:auto;
}
.vcard-more{
  font-size:11px;
  color:#c0392b;
  font-weight:700;
  transition:opacity 0.2s;
}
.vcard-more:hover{opacity:0.75}

/* ── Venue Detail Page ────────────────────────────────────── */
.venue-hero{
  max-width:1100px;
  margin:0 auto;
  padding:40px 24px;
  display:grid;
  grid-template-columns:1fr 380px;
  gap:48px;
}
.venue-gallery{}
.venue-gallery-main{
  border-radius:12px;
  overflow:hidden;
  height:380px;
}
.venue-gallery-main img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform 0.4s;
}
.venue-gallery-thumbs{
  display:flex;
  gap:8px;
  margin-top:10px;
  flex-wrap:wrap;
}
.venue-gallery-thumbs img{
  width:80px;
  height:60px;
  object-fit:cover;
  border-radius:6px;
  cursor:pointer;
  opacity:0.7;
  transition:opacity 0.2s,border 0.2s;
  border:2px solid transparent;
}
.venue-gallery-thumbs img:hover,
.venue-gallery-thumbs img.active{
  opacity:1;
  border-color:#c0392b;
}
.venue-info{}
.venue-breadcrumb{
  font-size:12px;
  color:#bbb;
  margin-bottom:16px;
}
.venue-breadcrumb a{transition:color 0.2s}
.venue-breadcrumb a:hover{color:#c0392b}
.venue-breadcrumb .separator{
  margin:0 6px;
  color:#ddd;
}
.venue-category-badge{
  font-size:10px;
  font-weight:700;
  letter-spacing:2px;
  text-transform:uppercase;
  color:#c0392b;
  margin-bottom:8px;
}
.venue-title{
  font-size:32px;
  font-weight:900;
  letter-spacing:-1px;
  line-height:1.1;
  margin-bottom:12px;
  font-family:Georgia,serif;
}
.venue-score-wrap{
  display:flex;
  align-items:baseline;
  gap:6px;
  margin-bottom:16px;
}
.venue-score-big{
  font-size:56px;
  font-weight:900;
  color:#c0392b;
  line-height:1;
  font-family:Georgia,serif;
}
.venue-score-denom{
  font-size:18px;
  color:#bbb;
}
.venue-recommend-badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  background:#fdf0ee;
  color:#c0392b;
  border:1px solid #f5c6c0;
  border-radius:6px;
  padding:8px 16px;
  font-size:12px;
  font-weight:700;
  margin-bottom:20px;
}
.venue-desc{
  font-size:14px;
  color:#555;
  line-height:1.8;
  margin-bottom:20px;
}
.venue-address{
  font-size:13px;
  color:#777;
  display:flex;
  align-items:center;
  gap:6px;
  margin-bottom:12px;
}
.venue-map-link{
  color:#c0392b;
  font-weight:600;
  font-size:13px;
  transition:opacity 0.2s;
}
.venue-map-link:hover{opacity:0.75}

/* ── Recommendations Page ─────────────────────────────────── */
.rec-header{
  background:#fff;
  border-bottom:1px solid #e5e0d8;
  padding:48px 24px;
}
.rec-header-inner{
  max-width:1100px;
  margin:0 auto;
}
.rec-title{
  font-size:36px;
  font-weight:900;
  font-family:Georgia,serif;
  margin-bottom:12px;
  letter-spacing:-1px;
}
.rec-desc{
  font-size:15px;
  color:#777;
  line-height:1.7;
}

/* ── Footer ───────────────────────────────────────────────── */
.footer{
  background:#1a1a1a;
  color:#888;
  padding:32px 24px;
}
.footer-inner{
  max-width:1100px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:16px;
}
.footer-logo{
  font-size:20px;
  font-weight:600;
  color:#f0ede8;
}
.footer-logo strong{color:#c0392b}
.footer-links{
  display:flex;
  gap:20px;
}
.footer-links a{
  color:#888;
  font-size:12px;
  transition:color 0.2s;
}
.footer-links a:hover{color:#f0ede8}
.footer p{font-size:11px}

/* ── Animations ───────────────────────────────────────────── */
@keyframes fadeInUp{
  from{opacity:0;transform:translateY(20px)}
  to{opacity:1;transform:translateY(0)}
}
.fade-in{
  animation:fadeInUp 0.5s ease forwards;
  opacity:0;
}
.fade-in-delay-1{animation-delay:0.1s}
.fade-in-delay-2{animation-delay:0.2s}

/* ── Responsive: 768px ────────────────────────────────────── */
@media(max-width:768px){
  .hero-inner{
    grid-template-columns:1fr;
  }
  .hero-title{font-size:32px;letter-spacing:-1px}
  .venues-grid{grid-template-columns:repeat(2,1fr)}
  .venue-hero{grid-template-columns:1fr}

  .nav-links{
    display:none;
    flex-direction:column;
    position:absolute;
    top:64px;
    left:0;
    right:0;
    background:#fff;
    padding:16px;
    border-bottom:1px solid #e5e0d8;
    z-index:99;
    gap:4px;
  }
  .nav-links.open{display:flex}
  .nav-links li a{
    padding:10px 0;
    font-size:15px;
    display:block;
    border-bottom:1px solid #f5f0eb;
  }
  .nav-links li:last-child a{border-bottom:none}
  .nav-burger{display:block}
  .nav-ig{display:none}
}

/* ── Responsive: 480px ────────────────────────────────────── */
@media(max-width:480px){
  .venues-grid{grid-template-columns:1fr}
  .hero-stats{gap:16px}
  .stat-num{font-size:24px}
  .hero-title{font-size:28px}
  .hero-inner{padding:36px 16px 32px}
  .cities-section{padding:28px 16px}
  .venues-section{padding:0 16px 40px}
  .feat-card{margin-top:0}
}

/* ============================================================
   FOOD MAN — Extended Styles (templates v2)
   ============================================================ */

/* ── Shared Layout Helpers ────────────────────────────────── */
.container{max-width:1100px;margin:0 auto;padding:0 24px}
.container--narrow{max-width:720px}
.section{padding:52px 0}
.section--map{padding-bottom:64px}

.section-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:26px;
  flex-wrap:wrap;
  gap:10px;
}
.section-title{
  font-size:22px;
  font-weight:800;
  font-family:Georgia,serif;
  letter-spacing:-0.5px;
}
.section-more{
  font-size:12px;
  font-weight:700;
  color:#c0392b;
  transition:opacity 0.2s;
}
.section-more:hover{opacity:0.7}

/* ── Buttons (unified) ────────────────────────────────────── */
.btn{
  display:inline-flex;
  align-items:center;
  gap:7px;
  padding:13px 26px;
  border-radius:6px;
  font-size:13px;
  font-weight:700;
  cursor:pointer;
  border:none;
  transition:background 0.2s,border-color 0.2s,color 0.2s;
  text-decoration:none;
}
.btn-primary{background:#c0392b;color:#fff}
.btn-primary:hover{background:#a93226}
.btn-outline{
  background:#fff;
  color:#1a1a1a;
  border:1.5px solid #ddd;
}
.btn-outline:hover{border-color:#bbb;background:#faf8f5}
.btn-maps{margin-top:16px;width:100%;justify-content:center}

/* ── Page Header ─────────────────────────────────────────── */
.page-header{
  background:#fff;
  border-bottom:1px solid #e5e0d8;
  padding:48px 0;
}
.page-header--dark{
  background:#1a1a1a;
  border-bottom:none;
}
.page-header--dark .page-header-title,
.page-header--dark .page-header-desc,
.page-header--dark .hero-eyebrow{color:#f0ede8}
.page-header--dark .page-header-desc{color:#aaa}
.page-header-title{
  font-size:38px;
  font-weight:900;
  font-family:Georgia,serif;
  letter-spacing:-1px;
  margin-bottom:10px;
}
.page-header-desc{
  font-size:15px;
  color:#777;
  line-height:1.7;
  max-width:600px;
}

/* ── Hero (new template) ──────────────────────────────────── */
.hero-subtitle{
  font-size:15px;
  color:#777;
  line-height:1.75;
  margin-bottom:28px;
}
.hero-stats{display:flex;gap:32px;margin-bottom:28px;padding-bottom:24px;border-bottom:1px solid #f0ede8}
.hero-stat-num{font-size:32px;font-weight:900;color:#1a1a1a;line-height:1;font-family:Georgia,serif;display:block}
.hero-stat-label{font-size:11px;color:#aaa;text-transform:uppercase;letter-spacing:1px;margin-top:3px;display:block}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap}
.hero-featured-label{font-size:11px;font-weight:700;letter-spacing:2px;text-transform:uppercase;color:#bbb;margin-bottom:12px}
.hero-featured-card{
  display:block;
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 4px 32px rgba(0,0,0,0.10);
  border:1px solid #f0ede8;
  transition:box-shadow 0.2s,transform 0.2s;
}
.hero-featured-card:hover{box-shadow:0 10px 40px rgba(0,0,0,0.14);transform:translateY(-2px)}
.hero-featured-img{position:relative;height:220px;overflow:hidden}
.hero-featured-img img{width:100%;height:100%;object-fit:cover;transition:transform 0.4s}
.hero-featured-card:hover .hero-featured-img img{transform:scale(1.04)}
.hero-featured-body{padding:16px 18px}
.hero-featured-name{font-size:18px;font-weight:800;font-family:Georgia,serif;margin:4px 0 6px}

/* ── Venue Card (unified vcard) ───────────────────────────── */
.vcard-img-wrap{
  display:block;
  position:relative;
  height:200px;
  overflow:hidden;
  background:#e5e0d8;
}
.vcard-img-wrap img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform 0.35s;
  display:block;
}
.vcard:hover .vcard-img-wrap img{transform:scale(1.04)}
.vcard-fallback{
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
}
.vcard-fallback--lg{height:220px}
.vcard-fallback--xl{height:100%;min-height:380px}
.vcard-rating{
  position:absolute;
  top:10px;
  right:10px;
  background:#fff;
  border-radius:8px;
  padding:5px 9px;
  font-size:15px;
  font-weight:900;
  color:#c0392b;
  font-family:Georgia,serif;
  box-shadow:0 2px 8px rgba(0,0,0,0.14);
  line-height:1;
}
.vcard-badge{
  position:absolute;
  top:10px;
  left:10px;
  background:#c0392b;
  color:#fff;
  font-size:9px;
  font-weight:800;
  padding:4px 10px;
  border-radius:4px;
  letter-spacing:1px;
  text-transform:uppercase;
}
.vcard-rec-banner{
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  background:rgba(192,57,43,0.92);
  color:#fff;
  font-size:10px;
  font-weight:800;
  padding:6px 12px;
  letter-spacing:1px;
  text-transform:uppercase;
  display:flex;
  align-items:center;
  gap:5px;
}
.vcard-body{
  padding:14px 16px;
  flex:1;
  display:flex;
  flex-direction:column;
}
.vcard-category{
  font-size:10px;
  font-weight:700;
  letter-spacing:1.5px;
  text-transform:uppercase;
  color:#c0392b;
  margin-bottom:4px;
  display:block;
}
.vcard-name{
  font-size:15px;
  font-weight:800;
  color:#1a1a1a;
  font-family:Georgia,serif;
  letter-spacing:-0.2px;
  margin-bottom:4px;
}
.vcard-name a{color:inherit;transition:color 0.2s}
.vcard-name a:hover{color:#c0392b}
.vcard-city{
  font-size:11px;
  color:#aaa;
  display:flex;
  align-items:center;
  gap:4px;
  margin-bottom:8px;
}
.vcard-desc{
  font-size:12px;
  color:#888;
  line-height:1.55;
  margin-bottom:10px;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
  flex:1;
}
.vcard-link{
  font-size:11px;
  color:#c0392b;
  font-weight:700;
  margin-top:auto;
  display:inline-block;
  transition:opacity 0.2s;
}
.vcard-link:hover{opacity:0.7}

/* ── Cities Strip ─────────────────────────────────────────── */
.cities-strip{
  background:#fff;
  border-bottom:1px solid #e5e0d8;
  padding:28px 0;
}
.cities-strip-inner{max-width:1100px;margin:0 auto;padding:0 24px}
.cities-scroll{
  display:flex;
  gap:10px;
  overflow-x:auto;
  padding-bottom:4px;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
}
.cities-scroll::-webkit-scrollbar{display:none}
.city-pill{
  display:inline-flex;
  align-items:center;
  gap:7px;
  background:#faf8f5;
  border:1.5px solid #e5e0d8;
  border-radius:50px;
  padding:9px 18px;
  white-space:nowrap;
  transition:border-color 0.2s,background 0.2s;
  text-decoration:none;
}
.city-pill:hover{border-color:#c0392b;background:#fff}
.city-pill-emoji{font-size:16px;line-height:1}
.city-pill-name{font-size:13px;font-weight:700;color:#1a1a1a}
.city-pill-count{
  font-size:10px;
  color:#bbb;
  background:#f0ede8;
  border-radius:10px;
  padding:2px 7px;
  font-weight:600;
}

/* ── Cities Grid (cities page) ────────────────────────────── */
.cities-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.city-card{
  background:#fff;
  border:1px solid #e5e0d8;
  border-radius:14px;
  padding:28px 24px;
  display:flex;
  gap:16px;
  align-items:flex-start;
  transition:box-shadow 0.2s,transform 0.2s,border-color 0.2s;
  text-decoration:none;
  color:inherit;
}
.city-card:hover{
  box-shadow:0 6px 28px rgba(0,0,0,0.09);
  transform:translateY(-2px);
  border-color:#c0392b;
}
.city-card-emoji{font-size:36px;line-height:1;flex-shrink:0}
.city-card-body{flex:1}
.city-card-name{font-size:19px;font-weight:800;font-family:Georgia,serif;margin-bottom:4px;letter-spacing:-0.3px}
.city-card-count{
  font-size:11px;
  font-weight:700;
  color:#c0392b;
  letter-spacing:1px;
  text-transform:uppercase;
  display:block;
  margin-bottom:8px;
}
.city-card-desc{font-size:12px;color:#888;line-height:1.55;margin-bottom:12px}
.city-card-cta{font-size:12px;font-weight:700;color:#c0392b}

/* ── City Page Header ─────────────────────────────────────── */
.city-header{display:flex;align-items:center;gap:18px}
.city-header-emoji{font-size:52px;line-height:1;flex-shrink:0}
.city-header-title{font-size:36px;font-weight:900;font-family:Georgia,serif;letter-spacing:-1px;margin-bottom:6px}
.city-header-desc{font-size:15px;color:#777;line-height:1.7}

/* ── Filter Bar ───────────────────────────────────────────── */
.filter-bar{background:#fff;border-bottom:1px solid #e5e0d8;padding:16px 0}
.filter-chips{display:flex;gap:8px;flex-wrap:wrap}
.filter-chip{
  background:#faf8f5;
  border:1.5px solid #e5e0d8;
  border-radius:20px;
  padding:6px 16px;
  font-size:12px;
  font-weight:600;
  color:#777;
  cursor:pointer;
  text-decoration:none;
  transition:background 0.2s,border-color 0.2s,color 0.2s;
}
.filter-chip:hover{border-color:#c0392b;color:#c0392b;background:#fff}
.filter-chip--active{background:#c0392b;border-color:#c0392b;color:#fff}

/* ── Venue Detail ─────────────────────────────────────────── */
.breadcrumb-bar{
  background:#faf8f5;
  border-bottom:1px solid #e5e0d8;
  padding:10px 0;
}
.breadcrumb{
  font-size:12px;
  color:#bbb;
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:4px;
}
.breadcrumb a{color:#999;transition:color 0.2s}
.breadcrumb a:hover{color:#c0392b}
.breadcrumb-sep{color:#ddd;margin:0 2px}
.breadcrumb-current{color:#555}

.venue-layout{
  display:grid;
  grid-template-columns:1fr 380px;
  gap:48px;
  align-items:start;
}
.venue-gallery{}
.gallery-cover{
  border-radius:12px;
  overflow:hidden;
  height:400px;
  background:#e5e0d8;
}
.gallery-cover img{width:100%;height:100%;object-fit:cover;display:block}
.gallery-thumbs{
  display:flex;
  gap:8px;
  margin-top:10px;
  flex-wrap:wrap;
}
.gallery-thumb{
  width:90px;
  height:66px;
  overflow:hidden;
  border-radius:6px;
  border:2px solid transparent;
  padding:0;
  background:none;
  cursor:pointer;
  transition:border-color 0.2s,opacity 0.2s;
  opacity:0.65;
}
.gallery-thumb img{width:100%;height:100%;object-fit:cover;display:block}
.gallery-thumb:hover,.gallery-thumb--active{border-color:#c0392b;opacity:1}

.venue-video{margin-top:16px}
.venue-video-player{width:100%;border-radius:10px;display:block}
.venue-map-embed{margin-top:16px}

.venue-meta-top{display:flex;align-items:center;gap:12px;margin-bottom:10px}
.venue-city-tag{font-size:12px;color:#aaa;display:flex;align-items:center;gap:4px}
.venue-city-tag a{color:#aaa;transition:color 0.2s}
.venue-city-tag a:hover{color:#c0392b}
.venue-name{font-size:32px;font-weight:900;font-family:Georgia,serif;letter-spacing:-1px;line-height:1.1;margin-bottom:14px}
.venue-score-wrap{display:flex;align-items:baseline;gap:6px;margin-bottom:14px}
.venue-score{font-size:56px;font-weight:900;color:#c0392b;font-family:Georgia,serif;line-height:1}
.venue-score-meta{display:flex;flex-direction:column}
.venue-score-label{font-size:18px;color:#bbb;line-height:1}
.venue-score-sub{font-size:10px;color:#bbb;letter-spacing:1px;text-transform:uppercase;margin-top:3px}

.venue-recommended-badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  background:#fdf0ee;
  color:#c0392b;
  border:1px solid #f5c6c0;
  border-radius:6px;
  padding:8px 16px;
  font-size:12px;
  font-weight:700;
  margin-bottom:18px;
}
.venue-description{
  font-size:14px;
  color:#555;
  line-height:1.85;
  margin-bottom:22px;
  white-space:pre-line;
}
.venue-details-list{display:flex;flex-direction:column;gap:8px;margin-bottom:16px}
.venue-detail-item{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  color:#666;
}
.venue-detail-item a{color:#c0392b;transition:opacity 0.2s}
.venue-detail-item a:hover{opacity:0.75}

/* ── About ────────────────────────────────────────────────── */
.about-content{padding:20px 0}
.about-text.prose{font-size:15px;color:#444;line-height:1.9}
.about-text.prose p{margin-bottom:18px}
.about-social{margin-top:32px}
.about-ig-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:#faf8f5;
  border:1.5px solid #e5e0d8;
  border-radius:30px;
  padding:10px 22px;
  font-size:13px;
  font-weight:700;
  transition:border-color 0.2s;
}
.about-ig-btn:hover{border-color:#c0392b}

/* ── Map ──────────────────────────────────────────────────── */
.leaflet-map{
  height:560px;
  border-radius:12px;
  border:1px solid #e5e0d8;
  box-shadow:0 2px 16px rgba(0,0,0,0.07);
}
.map-marker .map-marker-inner{
  width:14px;
  height:14px;
  background:#c0392b;
  border-radius:50%;
  border:2px solid #fff;
  box-shadow:0 1px 5px rgba(0,0,0,0.3);
}
.map-marker--rec .map-marker-inner{
  width:18px;
  height:18px;
  background:#c0392b;
  border:3px solid #fff;
}
.map-popup{display:flex;flex-direction:column;gap:3px;min-width:180px}
.map-popup-rec{
  font-size:9px;
  font-weight:800;
  letter-spacing:1px;
  text-transform:uppercase;
  color:#c0392b;
  margin-bottom:2px;
}
.map-popup-name{font-size:14px;font-weight:800;font-family:Georgia,serif;color:#1a1a1a}
.map-popup-city{font-size:11px;color:#999}
.map-popup-rating{font-size:12px;color:#555;margin-top:2px}
.map-popup-link{
  font-size:12px;
  font-weight:700;
  color:#c0392b;
  margin-top:6px;
  display:inline-block;
  transition:opacity 0.2s;
}
.map-popup-link:hover{opacity:0.75}
.map-legend{
  display:flex;
  align-items:center;
  gap:20px;
  margin-top:12px;
  flex-wrap:wrap;
}
.map-legend-item{display:flex;align-items:center;gap:6px;font-size:12px;color:#777}
.map-legend-dot{width:12px;height:12px;border-radius:50%;display:inline-block}
.map-legend-dot--normal{background:#c0392b;opacity:0.6}
.map-legend-dot--rec{background:#c0392b;border:2px solid #a93226}
.map-legend-note{font-size:11px;color:#bbb;margin-left:auto}

/* ── CTA Band ─────────────────────────────────────────────── */
.cta-band{
  background:#1a1a1a;
  padding:48px 0;
  text-align:center;
}
.cta-band .container{display:flex;flex-direction:column;align-items:center;gap:18px}
.cta-band-text{font-size:20px;font-weight:700;color:#f0ede8;font-family:Georgia,serif}

/* ── Empty State ─────────────────────────────────────────── */
.empty-state{
  text-align:center;
  padding:80px 0;
  color:#aaa;
  font-size:15px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:16px;
}

/* ── Burger button (improved) ─────────────────────────────── */
.nav-burger{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  border:none;
  cursor:pointer;
  padding:6px;
}
.nav-burger span{
  display:block;
  width:22px;
  height:2px;
  background:#1a1a1a;
  border-radius:2px;
  transition:transform 0.25s ease, opacity 0.2s ease, background 0.2s;
  transform-origin:center;
}
.nav-burger.is-open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2){ opacity:0; transform:scaleX(0); }
.nav-burger.is-open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

/* ── Footer (extended) ────────────────────────────────────── */
.footer-inner{
  display:grid;
  grid-template-columns:1fr auto;
  gap:40px;
  align-items:start;
  padding-bottom:32px;
  border-bottom:1px solid #2e2e2e;
  margin-bottom:20px;
}
.footer-brand{}
.footer-logo{font-size:20px;font-weight:600;color:#f0ede8;margin-bottom:6px}
.footer-logo strong{color:#c0392b}
.footer-tagline{font-size:12px;color:#777;font-style:italic}
.footer-nav{display:flex;gap:40px}
.footer-nav-col{display:flex;flex-direction:column;gap:8px}
.footer-nav-label{font-size:10px;font-weight:700;letter-spacing:2px;text-transform:uppercase;color:#555;margin-bottom:4px}
.footer-nav-col a{font-size:13px;color:#888;transition:color 0.2s}
.footer-nav-col a:hover{color:#f0ede8}
.footer-bottom{text-align:center}
.footer-bottom p{font-size:11px;color:#555}

/* ── Responsive Extended ──────────────────────────────────── */
@media(max-width:900px){
  .cities-grid{grid-template-columns:repeat(2,1fr)}
  .venue-layout{grid-template-columns:1fr}
  .venue-info{order:-1}
}
@media(max-width:768px){
  .nav-burger{display:flex}
  .hero-inner{grid-template-columns:1fr}
  .hero-title{font-size:36px;letter-spacing:-1px}
  .venues-grid{grid-template-columns:repeat(2,1fr)}
  .page-header-title{font-size:28px}
  .city-header{flex-direction:column;align-items:flex-start}
  .footer-inner{grid-template-columns:1fr}
  .footer-nav{flex-wrap:wrap;gap:24px}
  .leaflet-map{height:420px}
}
@media(max-width:480px){
  .venues-grid{grid-template-columns:1fr}
  .cities-grid{grid-template-columns:1fr}
  .hero-title{font-size:28px}
  .hero-stats{gap:16px}
  .hero-stat-num{font-size:24px}
  .hero-inner{padding:36px 16px 32px}
  .section{padding:36px 0}
  .venue-name{font-size:24px}
  .venue-score{font-size:42px}
  .gallery-cover{height:260px}
  .leaflet-map{height:340px}
}
