:root {
  --ink: #2b2420;
  --cream: #faf6ef;
  --cream-alt: #f1ead9;
  --rust: #b5502c;
  --rust-dark: #8e3c20;
  --line: #e4d9c4;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
}

h1, h2, h3, .brand {
  font-family: 'Fraunces', serif;
}

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.demo-banner {
  background: #222;
  color: #ffd479;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 8px 12px;
}

.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
}
.brand span { color: var(--rust); }
.brand.light { color: var(--cream); }
.brand.light span { color: #ffb98a; }

.nav a {
  color: var(--ink);
  text-decoration: none;
  margin-left: 28px;
  font-size: 15px;
  font-weight: 500;
}
.nav a:hover { color: var(--rust); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
}

.hero {
  background: linear-gradient(180deg, #fffaf1 0%, var(--cream) 100%);
  padding: 72px 0 56px;
  text-align: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  color: var(--rust-dark);
  font-weight: 600;
  margin-bottom: 14px;
}
.hero h1 {
  font-size: 44px;
  max-width: 780px;
  margin: 0 auto 18px;
  font-weight: 600;
}
.lede {
  font-size: 18px;
  max-width: 560px;
  margin: 0 auto 30px;
  color: #4a423c;
}
.cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
}
.btn-primary {
  background: var(--rust);
  color: #fff;
}
.btn-primary:hover { background: var(--rust-dark); }
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}

.strip {
  background: var(--rust);
  color: #fff;
  padding: 22px 0;
}
.strip-inner {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px;
  text-align: center;
}
.strip-inner div { display: flex; flex-direction: column; }
.strip-inner strong { font-size: 15px; }
.strip-inner span { font-size: 13px; opacity: 0.85; }

.section { padding: 64px 0; }
.section.alt { background: var(--cream-alt); }
.section h2 {
  font-size: 30px;
  margin-bottom: 28px;
  text-align: center;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.menu-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px;
}
.menu-card h3 { margin: 0 0 8px; font-size: 19px; }
.menu-card p { margin: 0 0 12px; color: #5a5148; font-size: 14.5px; }
.price { color: var(--rust-dark); font-weight: 700; }
.menu-note {
  text-align: center;
  font-size: 13px;
  color: #7a7168;
  margin-top: 24px;
}

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: start;
}
.hours-table { border-collapse: collapse; margin-bottom: 20px; }
.hours-table td { padding: 6px 18px 6px 0; font-size: 15px; }
.hours-table td:first-child { font-weight: 600; }
.address { font-size: 15px; color: #4a423c; }
.map-placeholder {
  background: repeating-linear-gradient(45deg, #e9ded0, #e9ded0 10px, #f1ead9 10px, #f1ead9 20px);
  border: 1px solid var(--line);
  border-radius: 10px;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8a7d6c;
  font-weight: 600;
}

.about-inner { max-width: 720px; }
.about-inner p { font-size: 16px; color: #4a423c; }
.about-inner em { color: #8a7d6c; }

.footer {
  background: #221c17;
  color: #cbbfae;
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer a { color: #ffb98a; }
.footer-note { max-width: 340px; font-size: 12.5px; color: #8f8375; }

@media (max-width: 720px) {
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--cream); border-bottom: 1px solid var(--line); flex-direction: column; padding: 12px 24px; }
  .nav.open { display: flex; }
  .nav a { margin: 10px 0; }
  .nav-toggle { display: block; }
  .hero h1 { font-size: 32px; }
  .menu-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .strip-inner { text-align: left; }
}
