:root{
  --background:#fdfcfa;
  --foreground:#231f1b;
  --muted-foreground:#7a7168;
  --border:#e6e0d8;
  --secondary:#f3efe9;
  --muted:#eee9e2;
  --primary:#2b2521;
  --primary-foreground:#fdfcfa;
  --accent:#c0442a;
  --radius:12px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--background);
  color:var(--foreground);
  font-family:"Inter",system-ui,-apple-system,Segoe UI,sans-serif;
  -webkit-font-smoothing:antialiased;
  line-height:1.6;
}
img{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
h1,h2,h3,.display{font-family:"Fraunces","Georgia",serif;font-weight:500;letter-spacing:-0.02em;margin:0}
.wrap{max-width:1152px;margin:0 auto;padding:0 24px}
.muted{color:var(--muted-foreground)}
.eyebrow{font-size:12px;font-weight:500;text-transform:uppercase;letter-spacing:.25em;color:var(--accent)}

/* Nav */
.nav{position:sticky;top:0;z-index:40;border-bottom:1px solid var(--border);background:rgba(253,252,250,.88);backdrop-filter:blur(10px)}
.nav-inner{display:flex;height:80px;align-items:center;justify-content:space-between;gap:16px}
.logo{height:64px;width:auto}
.logo-sm{height:56px;width:auto}
.nav-links{display:none;gap:32px;font-size:14px;font-weight:500}
.nav-links a:hover{color:var(--accent)}
.nav-links-always{display:flex;gap:24px}
.arrow{display:inline-block}
@media(min-width:768px){.nav-links{display:flex}}

/* Buttons */
.btn{display:inline-block;border-radius:999px;padding:12px 24px;font-size:14px;font-weight:500;transition:background .2s,border-color .2s,color .2s}
.btn-sm{padding:8px 16px}
.btn-primary{background:var(--primary);color:var(--primary-foreground)}
.btn-primary:hover{background:var(--accent)}
.btn-outline{border:1px solid var(--border)}
.btn-outline:hover{border-color:var(--foreground)}

/* Hero */
.hero-grid{display:grid;gap:48px;padding-top:64px;padding-bottom:64px}
h1{margin-top:16px;font-size:clamp(2.5rem,8vw,4.5rem);line-height:1.05}
.lead{margin-top:24px;max-width:28rem;font-size:18px;color:var(--muted-foreground)}
.cta-row{margin-top:32px;display:flex;flex-wrap:wrap;gap:12px}
.hero-img{width:100%;height:auto;aspect-ratio:5/6;object-fit:cover;border-radius:16px;box-shadow:0 20px 45px -20px rgba(35,31,27,.35)}
@media(min-width:768px){
  .hero-grid{grid-template-columns:1.1fr 1fr;align-items:center;padding-top:96px;padding-bottom:96px}
}

/* Menu section */
.menu{border-top:1px solid var(--border);background:var(--secondary)}
.menu .wrap{padding-top:80px;padding-bottom:80px}
.section-head{display:flex;align-items:flex-end;justify-content:space-between;gap:24px;margin-bottom:48px}
.section-head h2{margin-top:12px;font-size:clamp(2rem,5vw,3rem)}
.link-more{font-size:14px;font-weight:500;white-space:nowrap}
.link-more:hover{text-decoration:underline;text-underline-offset:4px}
.dish-grid{display:grid;gap:24px;grid-template-columns:repeat(2,1fr)}
@media(min-width:1024px){.dish-grid{grid-template-columns:repeat(4,1fr)}}
.dish-img{overflow:hidden;border-radius:12px;background:var(--muted)}
.dish-img img{width:100%;height:auto;aspect-ratio:4/5;object-fit:cover;transition:transform .5s ease}
.dish:hover .dish-img img{transform:scale(1.03)}
.dish-row{margin-top:16px}
.dish-row h3{font-size:20px}

/* Photos */
.photos{border-top:1px solid var(--border)}
.photos .wrap{padding-top:64px;padding-bottom:64px}
.photos-head{margin-bottom:32px}
.photos-head h2{font-size:clamp(2rem,5vw,3rem)}
.photo-grid{display:grid;gap:16px}
.photo-grid img{width:100%;height:256px;object-fit:cover;border-radius:12px}
@media(min-width:768px){
  .photo-grid{grid-template-columns:repeat(3,1fr)}
  .photo-grid img{height:288px}
}

/* Visit / info */
.visit{border-top:1px solid var(--border)}
.visit-grid{display:grid;gap:40px;padding-top:80px;padding-bottom:80px}
@media(min-width:768px){.visit-grid{grid-template-columns:repeat(3,1fr);gap:48px}}
.info-col{display:flex;flex-direction:column;align-items:center;text-align:center}
.info-list{list-style:none;margin:16px 0 0;padding:0;font-size:16px}
.info-list a:hover{color:var(--accent)}
.hours-row{display:flex;align-items:center;justify-content:center;gap:12px}
.info-link{margin-top:16px;font-size:16px}
.info-link:hover{text-decoration:underline;text-underline-offset:4px}

/* Footer */
footer{border-top:1px solid var(--border);padding:32px 0;font-size:12px;color:var(--muted-foreground)}
.footer-inner{display:flex;flex-direction:column;align-items:center;justify-content:space-between;gap:8px}
@media(min-width:768px){.footer-inner{flex-direction:row}}

/* Menu page */
.menu-page .wrap{padding-top:56px;padding-bottom:80px}
.narrow{max-width:900px}
.back-inline{display:inline-flex;align-items:center;gap:6px;font-size:14px;color:var(--muted-foreground)}
.back-inline:hover{color:var(--accent);text-decoration:underline;text-underline-offset:4px}
.block-eyebrow{display:block;margin-top:24px}
.menu-page h1{margin-top:12px;font-size:clamp(2.5rem,5vw,3.5rem)}
.menu-page .lead{margin-top:16px}
.menu-actions{margin-top:32px;display:flex;flex-wrap:wrap;gap:12px}
.menu-images{margin-top:40px;display:flex;flex-direction:column;gap:24px}
.menu-images img{width:100%;height:auto;border-radius:12px;border:1px solid var(--border);box-shadow:0 10px 30px -15px rgba(35,31,27,.2)}
