
:root{
  --bg:#f4ede3;
  --paper:#fffaf3;
  --ink:#241c17;
  --muted:#6f6157;
  --red:#9e2f2f;
  --red-dark:#7d2323;
  --line:#ded1c3;
  --dark:#1d1713;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--ink);
  background:var(--bg);
  line-height:1.45;
}
.wrap{width:min(1120px, calc(100% - 32px)); margin:0 auto}
.hero{
  background:linear-gradient(180deg,#17120f 0%,#261c16 100%);
  color:white;
  text-align:center;
  padding:38px 0 44px;
}
.hero-inner{display:flex; flex-direction:column; align-items:center}
.logo{
  width:min(280px,75vw);
  height:auto;
  border-radius:10px;
  margin-bottom:20px;
}
.eyebrow{
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:.78rem;
  font-weight:800;
  opacity:.82;
}
h1{font-family:Georgia,serif;font-size:clamp(2.4rem,7vw,4.8rem);margin:.15em 0 .1em}
.takeaway{
  display:inline-block;
  background:#fff;
  color:#111;
  padding:9px 14px;
  border-radius:6px;
  font-weight:900;
  letter-spacing:.06em;
  margin-top:6px;
}
.takeaway.small{font-size:.85rem}
.hours{margin:16px 0 18px;color:#e7ddd5}
.cta-row{display:flex;gap:12px;flex-wrap:wrap;justify-content:center}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 18px;
  border-radius:8px;
  text-decoration:none;
  font-weight:800;
  min-height:48px;
}
.btn-main{background:var(--red);color:white}
.btn-main:hover{background:var(--red-dark)}
.btn-ghost{border:1px solid rgba(255,255,255,.45);color:white}
.btn-ghost.dark{border-color:#6e5e53;color:var(--ink)}
.offer{padding:26px 0 0}
.offer-card{
  background:var(--red);
  color:white;
  border-radius:14px;
  text-align:center;
  padding:24px 18px;
  box-shadow:0 10px 28px rgba(66,40,25,.12);
}
.offer-kicker{font-weight:900;letter-spacing:.08em;font-size:.9rem}
.offer-main{font-family:Georgia,serif;font-size:clamp(1.7rem,5vw,3rem);font-weight:800;margin:4px 0}
.offer-sub{opacity:.9}
.menu-section,.extras,.contact{padding:50px 0}
.section-head{margin-bottom:22px}
h2{font-family:Georgia,serif;font-size:2rem;margin:0 0 6px}
h3{
  margin:34px 0 12px;
  font-family:Georgia,serif;
  font-size:1.35rem;
  border-bottom:1px solid var(--line);
  padding-bottom:8px;
}
.section-head p{margin:0;color:var(--muted)}
.menu-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.menu-grid.one-col{grid-template-columns:1fr}
.item{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:10px;
  padding:16px;
  display:flex;
  gap:18px;
  align-items:flex-start;
  justify-content:space-between;
}
.item h4{margin:0 0 4px;font-size:1.06rem}
.item p{margin:0;color:var(--muted);font-size:.93rem}
.item strong{white-space:nowrap;font-size:1.06rem}
.extras{background:#eadfD1}
.extras-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:12px}
.extra{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:10px;
  padding:16px;
  display:flex;
  justify-content:space-between;
  gap:14px;
}
.contact-card{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:14px;
  padding:24px;
  display:flex;
  justify-content:space-between;
  gap:24px;
  align-items:center;
}
.contact-actions{display:flex;gap:10px;flex-direction:column;min-width:240px}
footer{background:var(--dark);color:#d8ccc3;padding:20px 0;font-size:.88rem}
.footer-inner{display:flex;justify-content:space-between;gap:14px;flex-wrap:wrap}
@media(max-width:760px){
  .menu-grid,.extras-grid{grid-template-columns:1fr}
  .contact-card{flex-direction:column;align-items:stretch}
  .contact-actions{min-width:0}
  .btn{width:100%}
  .hero{padding-top:28px}
}
