:root {
  --red: #C8281F;
  --red-dark: #9E1F18;
  --gold: #F0A93A;
  --gold-dark: #D68E1F;
  --cream: #FFF8ED;
  --charcoal: #221C18;
  --gray: #6B5F57;
  --white: #FFFFFF;
  --radius: 14px;
  --shadow: 0 8px 24px rgba(34, 28, 24, 0.10);
  --shadow-hover: 0 14px 32px rgba(34, 28, 24, 0.16);
  --serif: 'Fraunces', serif;
  --sans: 'Work Sans', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--serif); margin: 0; line-height: 1.15; }
p { line-height: 1.6; margin: 0 0 1em; }

.section { padding: 84px 24px; }
.section-alt { background: var(--cream); }
.section-inner { max-width: 1180px; margin: 0 auto; }
.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--red);
  margin: 0 0 10px;
}
.center { text-align: center; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); font-weight: 700; margin-bottom: 20px; }
.section-inner.center h2 { margin-left: auto; margin-right: auto; max-width: 720px; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  cursor: pointer;
  border: none;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--red); color: var(--white); box-shadow: 0 6px 18px rgba(200,40,31,0.35); }
.btn-primary:hover { background: var(--red-dark); }
.btn-ghost { background: transparent; color: var(--charcoal); border: 2px solid var(--charcoal); }
.btn-ghost:hover { background: var(--charcoal); color: var(--white); }
.btn-ghost-light { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.7); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.15); }
.btn-order { background: var(--gold); color: var(--charcoal); box-shadow: 0 6px 18px rgba(240,169,58,0.4); }
.btn-order:hover { background: var(--gold-dark); }

/* Top bar */
.topbar {
  background: var(--charcoal);
  color: var(--cream);
  font-size: 0.82rem;
  text-align: center;
  padding: 8px 16px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.topbar a { color: var(--gold); font-weight: 600; }
.topbar-sep { opacity: 0.4; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.brand-name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.1;
  color: var(--charcoal);
}
.brand-name small {
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 0.6rem;
  color: var(--red);
}
.nav-wrapper { display: flex; align-items: center; gap: 20px; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--charcoal);
  transition: color 0.15s;
}
.main-nav a:hover { color: var(--red); }
.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--red-dark); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--charcoal); }

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,15,12,0.55) 0%, rgba(20,15,12,0.72) 55%, rgba(20,15,12,0.88) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
  padding: 40px 24px;
  color: var(--white);
  text-align: center;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  margin-bottom: 22px;
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  max-width: 620px;
  margin: 0 auto 32px;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; align-items: center; }
.stat strong { font-family: var(--serif); font-size: 1.5rem; color: var(--gold); }
.stat span { font-size: 0.82rem; color: rgba(255,255,255,0.75); }

/* About */
.about-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
.about-text p { color: var(--gray); font-size: 1.02rem; }
.about-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
.badge {
  background: var(--cream);
  border: 1px solid rgba(0,0,0,0.08);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--red-dark);
}
.about-image img { border-radius: var(--radius); box-shadow: var(--shadow); }
.about-follow { margin-top: 32px; padding-top: 28px; border-top: 1px solid rgba(0,0,0,0.08); }
.about-follow-label { font-weight: 600; font-size: 0.92rem; margin-bottom: 14px; color: var(--charcoal); }
.about-follow-links { display: flex; gap: 12px; flex-wrap: wrap; }
.social-link {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 20px;
  border-radius: 999px;
  border: 1.5px solid rgba(0,0,0,0.14);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--charcoal);
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.social-link:hover { border-color: var(--red); color: var(--red); background: var(--cream); }
.social-link svg { flex-shrink: 0; }

/* Menu */
.menu-note { color: var(--gray); font-size: 0.92rem; max-width: 560px; margin: 0 auto 36px; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 26px;
}
.menu-item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.menu-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.menu-item img { width: 100%; height: 190px; object-fit: cover; }
.menu-item-body { padding: 16px 20px 22px; }
.cat-tag {
  display: block;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 6px;
}
.menu-item-body h3 { font-size: 1.08rem; margin-bottom: 8px; }
.menu-item-body p { font-size: 0.88rem; color: var(--gray); margin: 0; }
.side-tag { font-family: var(--sans); font-size: 0.7rem; font-weight: 600; color: var(--gold-dark); }
.price {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--red);
  float: right;
  white-space: nowrap;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.25s;
}
.gallery-grid img:hover { transform: scale(1.03); }

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
  margin-top: 40px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}
.stars { color: var(--gold-dark); letter-spacing: 2px; margin-bottom: 12px; font-size: 1rem; }
.review-card p { font-size: 0.94rem; color: var(--charcoal); font-style: italic; }
.review-source { font-size: 0.78rem; color: var(--gray); font-weight: 600; }
.reviews-links { text-align: center; margin-top: 36px; }
.reviews-links a { color: var(--red); font-weight: 600; }

/* Location */
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.location-info p { color: var(--gray); }
.hours-table { margin-top: 30px; background: var(--cream); border-radius: var(--radius); padding: 24px 28px; }
.hours-table h3 { font-size: 1.1rem; margin-bottom: 14px; }
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 0.92rem;
}
.hours-row:last-child { border-bottom: none; }
.location-note { margin-top: 18px; font-size: 0.9rem; }
.location-map iframe { border-radius: var(--radius); box-shadow: var(--shadow); }

/* Order section */
.order-section { background: var(--charcoal); color: var(--white); }
.order-section .eyebrow { color: var(--gold); }
.order-section h2 { color: var(--white); }
.order-sub { color: rgba(255,255,255,0.75); max-width: 480px; margin: 0 auto 36px; }
.order-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Footer */
.site-footer { background: #17120F; color: rgba(255,255,255,0.85); padding: 60px 24px 20px; }
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { display: flex; gap: 14px; align-items: flex-start; }
.footer-brand img { width: 50px; height: 50px; border-radius: 50%; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.6); margin: 0; }
.footer-links h4 { font-family: var(--sans); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); margin-bottom: 14px; }
.footer-links p { font-size: 0.9rem; margin-bottom: 8px; color: rgba(255,255,255,0.75); }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}
.footer-credit a { color: var(--gold); font-weight: 600; }

/* Responsive */
@media (max-width: 900px) {
  .about-grid, .location-grid { grid-template-columns: 1fr; }
  .about-image { order: -1; }
  .footer-inner { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .main-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 24px;
    gap: 16px;
    box-shadow: var(--shadow);
    display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 6px 0; }
  .nav-cta { padding: 9px 16px; font-size: 0.85rem; }
  .nav-toggle { display: flex; }
}
