@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

:root{
  --ink:#1b1b1b;
  --muted:#555;
  --line:rgba(0,0,0,.10);
  --bg:#ffffff;
  --soft:#f6f6f6;
  --radius:14px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}

body{
  font-family: 'Montserrat', Arial, sans-serif;
  color:var(--ink);
  background:var(--bg);
  line-height:1.55;
}

h1,h2,h3{
  font-family: 'Playfair Display', serif;
  letter-spacing:.2px;
}

a{color:inherit}
.container{width:min(1080px, 92vw); margin:0 auto;}

.header{
  padding:14px 0 6px;
  border-bottom:1px solid var(--line);
}

.brand{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  text-decoration:none;
}

.brand img{
  width:42px;
  height:42px;
  border-radius:8px;
}

.brand .title{
  font-weight:600;
  font-size:26px;
}

.nav{
  display:flex;
  justify-content:center;
  gap:22px;
  padding:10px 0 12px;
  flex-wrap:wrap;
}

.nav a{
  text-decoration:none;
  font-weight:600;
  font-size:14px;
}

.nav a:hover{text-decoration:underline}

.hero{
  position:relative;
  background:url("https://static.wixstatic.com/media/c3b265_4175e69c5dde4a3b888aed6d931a7239~mv2.jpg/v1/fill/w_1920,h_1080,al_c,q_85/") center/cover no-repeat;
  min-height:360px;
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.18);
}

.hero .inner{
  position:relative;
  padding:54px 0 44px;
  color:#fff;
  text-align:center;
}

.hero .kicker{
  font-size:18px;
  margin:0 0 6px;
}

.hero h1{
  margin:0;
  font-size: clamp(30px, 4vw, 50px);
  line-height:1.15;
}

.section{padding:44px 0}

.section h2{
  text-align:center;
  margin:0 0 12px;
  font-size:32px;
}

.section .lead{
  max-width:74ch;
  margin:0 auto 22px;
  color:var(--muted);
  text-align:center;
}

.btnrow{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
  margin-top:14px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 18px;
  border:1px solid var(--ink);
  border-radius:999px;
  text-decoration:none;
  font-weight:600;
  font-size:14px;
}

.btn.fill{
  background:var(--ink);
  color:#fff;
}

.grid2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

@media (max-width:900px){
  .grid2{grid-template-columns:1fr}
}

.img{
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
}

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

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

.card h3{margin:0 0 6px}
.card p{margin:0;color:var(--muted)}

.highlights{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:16px;
}

@media (max-width:1000px){
  .highlights{grid-template-columns:1fr 1fr}
}
@media (max-width:640px){
  .highlights{grid-template-columns:1fr}
}

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

@media (max-width:900px){
  .icons3{grid-template-columns:1fr}
}

.listcols{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  margin-top:18px;
}

@media (max-width:900px){
  .listcols{grid-template-columns:1fr}
}

.takeaway{
  background:var(--soft);
}

.footer{
  border-top:1px solid var(--line);
  padding:38px 0;
}

.footer .cols{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:16px;
}

@media (max-width:900px){
  .footer .cols{grid-template-columns:1fr}
}

.footer h4{margin:0 0 8px;font-size:14px}
.footer p{margin:0;color:var(--muted);font-size:14px}

.small{
  font-size:12px;
  color:var(--muted);
  margin-top:16px;
  text-align:center;
}

.menu-item{
  display:flex;
  justify-content:space-between;
  gap:14px;
  padding:10px 0;
  border-bottom:1px solid var(--line);
}

.menu-item:last-child{border-bottom:none}

.menu-item .name{font-weight:600}
.menu-item .desc{color:var(--muted); font-size:13px; margin-top:2px}
.menu-item .price{font-weight:600; white-space:nowrap}