* { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #fdfaf6;
  --surface: #ffffff;
  --text: #2d1b0e;
  --muted: #78624e;
  --border: #ede4d3;
  --primary: #a8261a;
  --primary-hover: #8b1f15;
  --accent: #d4a017;
}
body {
  font-family: Georgia, "Times New Roman", serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3 { font-family: "Playfair Display", Georgia, serif; }

.topbar { background: var(--surface); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 50; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.logo { font-weight: 700; font-size: 22px; color: var(--primary); font-style: italic; }
.topbar nav { display: flex; gap: 32px; }
.topbar nav a { color: var(--muted); font-size: 15px; transition: color .15s; }
.topbar nav a:hover { color: var(--primary); }
.phone-top { color: var(--primary); font-weight: 700; font-size: 15px; }

.hero { padding: 110px 0; background: linear-gradient(135deg, #fef6ec 0%, var(--bg) 100%); text-align: center; }
.badge { display: inline-block; background: rgba(168, 38, 26, 0.1); color: var(--primary); padding: 7px 18px; border-radius: 100px; font-size: 13px; font-weight: 600; margin-bottom: 28px; font-family: -apple-system, sans-serif; }
.hero h1 { font-size: 64px; line-height: 1.1; font-weight: 900; margin-bottom: 22px; letter-spacing: -0.02em; }
.hero .lead { font-size: 20px; color: var(--muted); max-width: 600px; margin: 0 auto 36px; font-style: italic; }
.cta-row { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

.btn { display: inline-block; padding: 14px 28px; border-radius: 4px; font-weight: 600; font-size: 15px; transition: all .2s; border: 2px solid transparent; font-family: -apple-system, sans-serif; cursor: pointer; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); }

section { padding: 96px 0; }
.tag { display: inline-block; color: var(--accent); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 14px; font-family: -apple-system, sans-serif; }
h2 { font-size: 44px; font-weight: 900; margin-bottom: 16px; letter-spacing: -0.01em; }
.section-sub { color: var(--muted); font-size: 17px; margin-bottom: 40px; }

.menu { background: var(--surface); }
.dishes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-top: 48px; }
.dish { display: flex; gap: 20px; align-items: flex-start; }
.dish-img { width: 100px; height: 100px; border-radius: 12px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 40px; }
.dish-body { flex: 1; }
.dish-head { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; margin-bottom: 8px; }
.dish-head h3 { font-size: 21px; font-weight: 700; }
.price { color: var(--primary); font-weight: 700; font-size: 17px; white-space: nowrap; }
.dish-body p { color: var(--muted); font-size: 15px; }

.about-inner { display: grid; grid-template-columns: 1.5fr 1fr; gap: 64px; align-items: center; }
.about-inner p { color: var(--muted); font-size: 17px; margin-bottom: 18px; }
.stats { display: flex; gap: 40px; margin-top: 28px; }
.stats li { color: var(--muted); font-size: 14px; font-family: -apple-system, sans-serif; }
.stats strong { display: block; font-size: 38px; color: var(--primary); font-weight: 900; font-family: "Playfair Display", Georgia, serif; }
.about-img { font-size: 200px; text-align: center; opacity: 0.8; }

.hours { background: var(--surface); }
.hours-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.hours-card { background: var(--bg); padding: 32px 24px; border-radius: 8px; border: 1px solid var(--border); display: flex; flex-direction: column; gap: 8px; }
.hours-card strong { font-size: 17px; }
.hours-card span { color: var(--primary); font-size: 18px; font-weight: 700; }

.contact { background: linear-gradient(135deg, #2d1b0e 0%, #4a2918 100%); color: #fff; text-align: center; }
.contact h2 { color: #fff; }
.contact .section-sub { color: rgba(255,255,255,0.7); }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.contact-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); border-radius: 8px; padding: 32px 24px; display: flex; flex-direction: column; gap: 6px; transition: all .15s; }
.contact-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-3px); }
.contact-icon { font-size: 32px; margin-bottom: 8px; }
.contact-card strong { font-size: 17px; }
.contact-card span:last-child { color: rgba(255,255,255,0.6); font-size: 13px; }

footer { background: #1a0f08; color: rgba(255,255,255,0.5); padding: 28px 0; font-family: -apple-system, sans-serif; font-size: 13px; }
.footer-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; }

@media (max-width: 820px) {
  .topbar nav, .phone-top { display: none; }
  .hero { padding: 64px 0; }
  .hero h1 { font-size: 40px; }
  h2 { font-size: 30px; }
  section { padding: 56px 0; }
  .dishes, .hours-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .stats { justify-content: center; }
}
