/* ═══════════════════════════════════════════════════
   Restaurant Growth Engine — style.css v1.0
   ═══════════════════════════════════════════════════ */
:root {
  --primary:       #7c2d12;
  --primary-dark:  #6b2410;
  --primary-light: #fff7ed;
  --accent:        #dc2626;
  --accent-warm:   #f59e0b;
  --bg:            #faf9f7;
  --bg-light:      #fff7ed;
  --text:          #1c1917;
  --text-muted:    #78716c;
  --border:        #e7e5e4;
  --white:         #ffffff;
  --shadow:        0 4px 6px rgba(0,0,0,.07);
  --shadow-md:     0 10px 25px rgba(0,0,0,.1);
  --radius:        0.75rem;
  --radius-sm:     0.5rem;
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
body{font-family:'Inter',sans-serif;background:var(--bg);color:var(--text);line-height:1.6}
h1,h2,h3,h4{font-family:'Playfair Display',serif;font-weight:700;line-height:1.2}
a{color:var(--primary);text-decoration:none}a:hover{text-decoration:underline}
img{max-width:100%}
.btn{display:inline-flex;align-items:center;gap:.4rem;padding:.6rem 1.4rem;border-radius:var(--radius-sm);font-weight:600;font-size:.9rem;cursor:pointer;border:none;transition:all .2s;text-decoration:none}
.btn-primary{background:var(--primary);color:#fff}.btn-primary:hover{background:var(--primary-dark);text-decoration:none}
.btn-secondary{background:transparent;color:var(--primary);border:2px solid var(--primary)}.btn-secondary:hover{background:var(--primary-light)}
.btn-accent{background:var(--accent-warm);color:#fff}.btn-accent:hover{background:#d97706;text-decoration:none}
.btn-white{background:#fff;color:var(--primary)}.btn-white:hover{background:var(--primary-light)}
.btn-sm{padding:.4rem 1rem;font-size:.82rem}.btn-lg{padding:.85rem 2rem;font-size:1rem}
.container{max-width:1200px;margin:0 auto;padding:0 1.25rem}
.section{padding:4rem 0}.bg-light{background:var(--bg-light)}.bg-primary-soft{background:#fef3c7}
.text-center{text-align:center}.text-accent{color:var(--accent-warm)}
.site-header{background:#fff;border-bottom:2px solid var(--primary);position:sticky;top:0;z-index:100;box-shadow:var(--shadow)}
.nav-inner{display:flex;align-items:center;justify-content:space-between;height:68px}
.nav-logo{display:flex;align-items:center;gap:.75rem;text-decoration:none}
.logo-icon{font-size:1.8rem;width:44px;height:44px;background:var(--primary);border-radius:.5rem;display:flex;align-items:center;justify-content:center}
.logo-name{font-family:'Playfair Display',serif;font-weight:800;font-size:1.05rem;color:var(--text)}
.logo-sub{font-size:.72rem;color:var(--text-muted)}
.main-nav{display:flex;align-items:center;gap:.25rem}
.main-nav a{padding:.5rem .85rem;border-radius:var(--radius-sm);font-size:.9rem;font-weight:500;color:var(--text);transition:all .2s}
.main-nav a:hover{color:var(--primary);background:var(--primary-light);text-decoration:none}
.hamburger{display:none;background:none;border:none;cursor:pointer;padding:.4rem}
.mobile-nav{display:none;flex-direction:column;background:#fff;border-top:1px solid var(--border);padding:1rem}
.mobile-nav a{padding:.65rem 1rem;font-weight:500;color:var(--text);border-bottom:1px solid var(--border)}
.mobile-nav.open{display:flex}
@media(max-width:768px){.main-nav{display:none}.hamburger{display:flex}}
.hero-section{position:relative;min-height:85vh;display:flex;align-items:center;overflow:hidden}
.hero-bg{position:absolute;inset:0;z-index:0}
.hero-img{width:100%;height:100%;object-fit:cover}
.hero-overlay{position:absolute;inset:0}
.hero-content{position:relative;z-index:1;color:#fff;text-align:center;padding:5rem 1rem}
.hero-badge{display:inline-block;background:rgba(255,255,255,.2);border:1px solid rgba(255,255,255,.4);padding:.4rem 1.2rem;border-radius:2rem;font-size:.85rem;font-weight:600;margin-bottom:1.25rem}
.hero-content h1{font-size:clamp(2rem,5vw,3.5rem);color:#fff;margin-bottom:1rem;text-shadow:0 2px 8px rgba(0,0,0,.3)}
.hero-sub{font-size:1.1rem;color:rgba(255,255,255,.9);max-width:600px;margin:0 auto 2rem}
.hero-search-form{display:flex;gap:.75rem;max-width:700px;margin:0 auto 2rem;flex-wrap:wrap}
.hero-search-input{flex:1;min-width:200px;padding:.75rem 1rem;border:none;border-radius:var(--radius-sm);font-size:.95rem}
.hero-search-select{padding:.75rem 1rem;border:none;border-radius:var(--radius-sm);font-size:.9rem;background:#fff}
.hero-stats{display:flex;gap:2rem;justify-content:center;flex-wrap:wrap}
.hero-stat{text-align:center}.hero-stat strong{display:block;font-size:1.6rem;font-weight:800}.hero-stat span{font-size:.85rem;opacity:.85}
.section-header{text-align:center;margin-bottom:2.5rem}
.section-header h2{font-size:clamp(1.6rem,3vw,2.4rem);margin-bottom:.5rem}
.section-header p{color:var(--text-muted)}
.category-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(160px,1fr));gap:1.25rem}
.category-card{background:#fff;border:1px solid var(--border);border-radius:var(--radius);padding:1.5rem 1rem;text-align:center;transition:all .2s;cursor:pointer;text-decoration:none;color:var(--text)}
.category-card:hover{border-color:var(--primary);box-shadow:var(--shadow-md);transform:translateY(-3px);text-decoration:none}
.category-icon{font-size:2rem;margin-bottom:.5rem}
.category-label{font-weight:700;font-size:.95rem;margin-bottom:.2rem}
.category-sub{font-size:.78rem;color:var(--text-muted)}
.listing-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:1.5rem}
.listing-card{background:#fff;border:1px solid var(--border);border-radius:var(--radius);overflow:hidden;transition:all .2s;display:flex;flex-direction:column}
.listing-card:hover{box-shadow:var(--shadow-md);transform:translateY(-3px)}
.listing-header{position:relative;height:160px;background:var(--bg-light);display:flex;align-items:center;justify-content:center}
.listing-img{width:100%;height:100%;object-fit:cover}
.listing-avatar{font-size:4rem}
.listing-badge{position:absolute;top:.75rem;right:.75rem;background:var(--accent-warm);color:#fff;padding:.2rem .7rem;border-radius:2rem;font-size:.75rem;font-weight:600}
.listing-body{padding:1.25rem;flex:1}
.listing-category{font-size:.78rem;font-weight:600;color:var(--primary);text-transform:uppercase;letter-spacing:.05em;margin-bottom:.3rem}
.listing-name{font-size:1.1rem;font-weight:700;margin-bottom:.3rem}
.listing-location{font-size:.85rem;color:var(--text-muted);margin-bottom:.5rem}
.listing-desc{font-size:.88rem;color:var(--text-muted);line-height:1.5;margin-bottom:.75rem}
.listing-rating{display:flex;align-items:center;gap:.3rem;font-size:.9rem;color:var(--accent-warm)}
.rating-score{font-weight:700;color:var(--text)}.rating-count{font-size:.8rem;color:var(--text-muted)}
.listing-footer{padding:.75rem 1.25rem;border-top:1px solid var(--border);display:flex;gap:.6rem;flex-wrap:wrap}
.steps-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:2rem}
.step-card{text-align:center;padding:2rem 1.5rem;background:#fff;border-radius:var(--radius);box-shadow:var(--shadow)}
.step-num{font-size:2.5rem;font-weight:800;color:var(--primary);margin-bottom:.75rem}
.step-card h3{font-size:1.1rem;margin-bottom:.5rem}.step-card p{color:var(--text-muted);font-size:.9rem}
.cta-section{background:linear-gradient(135deg,var(--primary-dark),var(--accent));padding:4rem 0;color:#fff;text-align:center}
.cta-inner h2{font-size:2rem;color:#fff;margin-bottom:.75rem}
.cta-inner p{color:rgba(255,255,255,.85);margin-bottom:1.5rem;font-size:1.05rem}
.page-hero{background:linear-gradient(135deg,var(--primary),#b91c1c);padding:3.5rem 0;color:#fff;text-align:center}
.page-hero h1{color:#fff;font-size:2rem}.page-hero p{color:rgba(255,255,255,.85);margin-top:.5rem}
.filter-bar{display:flex;gap:.75rem;flex-wrap:wrap;margin-bottom:2rem;padding:1rem;background:#fff;border:1px solid var(--border);border-radius:var(--radius)}
.filter-bar input,.filter-bar select{flex:1;min-width:180px;padding:.6rem .85rem;border:1px solid var(--border);border-radius:var(--radius-sm);font-size:.9rem}
.pagination{display:flex;gap:.4rem;justify-content:center;margin-top:2rem}
.page-btn{padding:.5rem .9rem;border:1px solid var(--border);border-radius:var(--radius-sm);background:#fff;cursor:pointer;color:var(--text);font-size:.88rem}
.page-btn.active,.page-btn:hover{background:var(--primary);color:#fff;border-color:var(--primary)}
.contact-form{display:flex;flex-direction:column;gap:1.2rem}
.contact-form label{font-weight:600;font-size:.9rem;display:flex;flex-direction:column;gap:.35rem}
.contact-form input,.contact-form textarea,.contact-form select{padding:.7rem .9rem;border:1px solid var(--border);border-radius:var(--radius-sm);font-size:.95rem;font-family:inherit}
.contact-form textarea{resize:vertical}
.alert{padding:.85rem 1.25rem;border-radius:var(--radius-sm);margin-bottom:1rem;font-size:.9rem}
.alert-success{background:#d1fae5;color:#065f46;border:1px solid #6ee7b7}
.alert-error{background:#fee2e2;color:#991b1b;border:1px solid #fca5a5}
.site-footer{background:#1c1917;color:#d6d3d1;padding:3rem 0 1.5rem}
.footer-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:2rem;margin-bottom:2rem}
.footer-logo-name{font-size:1.1rem;font-weight:700;color:#fff;margin-bottom:.75rem}
.footer-desc{font-size:.85rem;color:#a8a29e;line-height:1.6}
.footer-grid h4{color:#fff;font-size:.9rem;margin-bottom:.75rem}
.footer-grid ul{list-style:none}.footer-grid ul li{margin-bottom:.4rem}
.footer-grid ul li a{color:#a8a29e;font-size:.85rem}.footer-grid ul li a:hover{color:#fff;text-decoration:none}
.footer-bottom{border-top:1px solid #292524;padding-top:1.25rem;display:flex;justify-content:space-between;flex-wrap:wrap;gap:.5rem;font-size:.82rem;color:#78716c}
.footer-bottom a{color:#a8a29e}.footer-bottom a:hover{color:#fff;text-decoration:none}
.empty-state{text-align:center;padding:4rem 1rem;color:var(--text-muted)}
@media(max-width:640px){.hero-search-form{flex-direction:column}.listing-grid{grid-template-columns:1fr}.category-grid{grid-template-columns:repeat(2,1fr)}.footer-bottom{flex-direction:column;text-align:center}}
