:root {
  --anthracite: #2b2b2b;
  --white: #ffffff;

  --bg-main: #f3f3f3;
  --bg-soft: #ededed;

  --grey: #6b6b6b;
  --border: #e0e0e0;

  --accent: #b32626;
}
*{ box-sizing:border-box; }

html{ scroll-behavior:smooth; }

body{
  margin:0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  
   background: var(--bg-main);
  color: var(--anthracite);
}

a{ color:inherit; }

.container{
  max-width:1100px;
  margin:0 auto;
  padding:0 18px;
}

.site-header{
  border-bottom:1px solid var(--border);
  background:#fff;
}

.nav{
  display:flex;
  justify-content:center;
  gap:18px;
  padding:18px 12px;
}

.nav-link{
  text-decoration:none;
  color:var(--text);
  font-weight:600;
}

.hero{
  padding:60px 18px;
  text-align:center;
}

.hero-title{
  margin:0 0 8px;
  font-size:40px;
  letter-spacing:-0.5px;
}

.hero-sub strong{ font-weight:800; }

.trust-strip{
  margin-top:18px;
  display:flex;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
}

.trust-strip span{
  border:1px solid var(--border);
  border-radius:999px;
  padding:8px 12px;
  font-size:13px;
  color:var(--text);
  background:#fff;
}
.hero-sub{
  margin:0;
  color:var(--muted);
}

.hero-actions{
  margin-top:22px;
}

.btn{
  display:inline-block;
  padding:12px 22px;
  border-radius:999px;
  border:1px solid var(--text);
  text-decoration:none;
  font-weight:600;
}

.btn-outline{
 
   background:#fff;
  color:#111;
}

.home-menu{
  padding:40px 0 30px;
}

.muted{
  color:var(--muted);
  margin-top:6px;
}

.menu-grid{
  margin:26px 0 26px;
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
  gap:16px;
}

.menu-card-link{
  text-decoration:none;
  color:inherit;
}

.menu-card{
  border:1px solid var(--border);
  border-radius:18px;
  padding:16px;
  background:#fff;
}

.menu-card .tag{
  display:inline-block;
  font-size:12px;
  letter-spacing:0.7px;
  text-transform:uppercase;
  color:var(--muted);
}

.menu-card h3{
  margin:8px 0 6px;
  font-size:18px;
}

.menu-card p{
  margin:0 0 10px;
  color:var(--muted);
  font-size:14px;
}

.menu-card .price{
  font-weight:700;
}

.site-footer{
  border-top:1px solid var(--border);
  padding:28px 0;
  color:var(--muted);
  text-align:center;
}

.site-footer a{
  color:var(--text);
  text-decoration:none;
}
/* ===== Base ===== */
:root{
  --text:#111;
  --muted:#666;
  --border:#e9e9e9;
  --bg:#fff;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }

body{
  margin:0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:var(--bg);
  color:var(--text);
}

/* ===== Containers ===== */
.container,
.menu-card,
.card {
  background: var(--surface);
}
.container,
.menu{
  max-width: 980px;
  margin: 0 auto;
  padding: 20px 16px 48px;
}

/* ===== Typography ===== */
h1{
  text-align:center;
  margin: 8px 0 6px;
  font-size: 32px;
  letter-spacing: -0.4px;
}

h2{
  margin: 28px 0 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
  font-size: 18px;
}

.muted,
.menu-sub{
  text-align:center;
  color:var(--muted);
  font-size: 15px;
}

/* ===== Buttons ===== */
.btn{
  display:inline-block;
  padding:14px 24px;
  border-radius:999px;
  border:1px solid var(--text);
  text-decoration:none;
  font-weight:600;
  color:var(--text);
}

/* ===== Search ===== */
.search-wrap{
  margin:16px 0 12px;
  text-align:center;
}

#menuSearch{
  width:100%;
  max-width:520px;
  padding:14px 16px;
  font-size:16px;
  border-radius:999px;
  border:1px solid #ccc;
  outline:none;
}

#menuSearch:focus{ border-color:#999; }

/* ===== Jump Bar ===== */
.jumpbar{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  margin: 10px -16px 18px;
  padding: 10px 0;
}

.jumpbar-inner{
  display:flex;
  gap:10px;
  overflow-x:auto;
  padding:0 16px;
  -webkit-overflow-scrolling:touch;
}

.jumpbar-inner::-webkit-scrollbar{ display:none; }

.jumpbtn{
  flex:0 0 auto;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid #ddd;
  background:#fff;
  text-decoration:none;
  font-size:14px;
  white-space:nowrap;
  color:var(--text);
}

/* ===== Menu List ===== */
ul{ list-style:none; padding:0; margin:0; }

li{
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  gap:14px;
  padding:14px 6px;              /* BIG tap area */
  border-bottom:1px dotted var(--border);
  border-radius:10px;
}

li:active{
  background: rgba(0,0,0,0.04);
}

li span:first-child{
  font-size:16px;
  line-height:1.3;
}

li span:last-child{
  font-weight:800;
  font-size:16px;
  white-space:nowrap;
}

/* ===== Highlight (search) ===== */
mark{
  background:#111;
  color:#fff;
  padding:0 4px;
  border-radius:6px;
}

/* ===== Footer ===== */
footer{
  text-align:center;
  margin-top:40px;
  font-size:14px;
  color:var(--muted);
}

/* ===== Desktop Enhancement ===== */
@media (min-width: 900px){
  h1{ font-size:40px; }
  h2{ font-size:20px; }
  li span:first-child,
  li span:last-child{ font-size:17px; }
}

/* ===== Mobile Action Bar ===== */
.mobile-action-bar{
  position: fixed;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 999;
}

/* Buttons */
.action-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

/* Call button */
.action-btn.call{
  background: #111;
  color: #fff;
}

/* Menu button */
.action-btn.menu{
  background: #fff;
  color: #111;
  border: 1px solid #111;
}

/* Hide on desktop */
@media (min-width: 900px){
  .mobile-action-bar{
    display: none;
  }
}
.hero .container{ max-width:980px; margin:0 auto; padding:0 16px; }
.hero-sub{ max-width:620px; margin:10px auto 0; }
.hero-actions{ display:flex; justify-content:center; gap:12px; flex-wrap:wrap; margin-top:18px; }

.btn-outline{ background:#fff; }

.hero-meta{
  margin-top:16px;
  color:var(--muted);
  font-size:14px;
  display:flex;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
}
.hero-meta a{ color:inherit; text-decoration:none; border-bottom:1px dotted #aaa; }

.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
  margin-top:10px;
}
.text-link{
  text-decoration:none;
  color:var(--text);
  font-weight:700;
  font-size:14px;
}

.why{
  padding: 20px 0 60px;
}

.why-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:16px;
  margin-top:20px;
}

.why-card{
  border:1px solid var(--border);
  border-radius:18px;
  padding:18px;
  background:#fff;
}

.why-card strong{
  display:block;
  margin-bottom:6px;
}

.why-card p{
  margin:0;
  color:var(--muted);
  font-size:14px;
}
.hero-badges{
  margin-top:16px;
  display:flex;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
}

.badge{
  display:inline-flex;
  align-items:center;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid var(--border);
  background:#fff;
  font-size:13px;
  font-weight:700;
  letter-spacing:0.2px;
}

.badge-primary{
  border-color:#111;
  background:#111;
  color:#fff;
}
/* ===== Location Section ===== */
.location{
  padding: 50px 0 60px;
  border-top: 1px solid var(--border);
}

.location-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}

.location-info h2{
  margin: 0 0 10px;
}

.location-address,
.location-hours{
  margin: 14px 0;
  font-size: 15px;
}

.location-map{
  width: 100%;
  height: 280px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.location-map iframe{
  width: 100%;
  height: 100%;
  border: 0;
}

/* Desktop layout */
@media (min-width: 900px){
  .location-grid{
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
  }

  .location-map{
    height: 360px;
  }
}.hero-image {
  max-width: 720px;
  margin: 24px auto 16px;
  border-radius: 18px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Mobile optimisation */
@media (max-width: 768px) {
  .hero-image {
    margin: 16px 12px;
    border-radius: 14px;
  }
}
/* CONTACT */
.contact {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info h2 {
  margin-bottom: 8px;
}

.contact-item {
  margin-top: 18px;
  line-height: 1.6;
}

.contact-item a {
  color: var(--anthracite);
  text-decoration: underline;
}

/* Optional next step */
.contact-next {
  margin-top: 30px;
}

.contact-next-title {
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.contact-chip {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--white);
  text-decoration: none;
  font-size: 14px;
  color: var(--anthracite);
}

.contact-chip:active {
  transform: scale(0.97);
}

/* Map */
.contact-map {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
}

.contact-map iframe {
  width: 100%;
  height: 320px;
  border: 0;
}

/* Mobile */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-map iframe {
    height: 260px;
  }
}