:root {
  --wine: #7a1f2b;
  --wine-dark: #5e1620;
  --gold: #c9a227;
  --gold-soft: #e3c766;
  --cream: #fdf8f0;
  --cream-2: #f5ecdd;
  --ink: #2b2320;
  --muted: #8a7d72;
  --line: #e7dccb;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(64, 32, 20, 0.10);
  --radius: 16px;
  --maxw: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.12; margin: 0; }

a { color: inherit; text-decoration: none; }

img { display: block; max-width: 100%; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.muted { color: var(--muted); font-weight: 400; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 13px 26px; border-radius: 999px;
  font-weight: 600; font-size: 15px; cursor: pointer; border: 0;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: var(--wine-dark); box-shadow: 0 8px 22px rgba(201,162,39,.35); }
.btn-primary:hover { background: var(--gold-soft); }
.btn-ghost { background: rgba(255,255,255,.14); color: #fff; border: 1px solid rgba(255,255,255,.5); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: rgba(255,255,255,.24); }
.btn-outline { background: transparent; color: var(--wine); border: 1.5px solid var(--wine); }
.btn-outline:hover { background: var(--wine); color: #fff; }
.btn-call { background: var(--wine); color: #fff; padding: 10px 20px; font-size: 14px; }
.btn-call:hover { background: var(--wine-dark); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.scrolled { background: var(--cream); box-shadow: 0 2px 18px rgba(64,32,20,.08); }
.header-inner { display: flex; align-items: center; gap: 24px; height: 74px; }
.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.brand-mark {
  width: 44px; height: 44px; display: grid; place-items: center;
  background: var(--wine); color: var(--gold-soft); border-radius: 12px;
  font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-family: 'Playfair Display', serif; font-size: 21px; color: var(--wine); }
.brand-text small { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.main-nav { display: flex; gap: 26px; }
.main-nav a { font-weight: 500; font-size: 15px; color: var(--ink); position: relative; }
.main-nav a:hover { color: var(--wine); }

/* Hero */
.hero { position: relative; min-height: 86vh; display: flex; align-items: center; color: #fff; overflow: hidden; margin-top: -74px; padding-top: 74px; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.03); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(40,12,16,.86) 0%, rgba(60,18,24,.62) 45%, rgba(30,10,12,.35) 100%); }
.hero-content { position: relative; max-width: 660px; padding-top: 40px; padding-bottom: 60px; }
.hero-kicker { text-transform: uppercase; letter-spacing: .22em; font-size: 13px; color: var(--gold-soft); margin: 0 0 14px; font-weight: 600; }
.hero h1 { font-size: clamp(48px, 8vw, 92px); font-weight: 800; letter-spacing: -.01em; }
.hero-tagline { font-size: clamp(18px, 2.4vw, 23px); margin: 16px 0 22px; color: rgba(255,255,255,.9); }
.hero-rating { display: flex; align-items: center; gap: 8px; font-size: 17px; margin-bottom: 30px; }
.hero-rating .stars { color: var(--gold-soft); font-size: 20px; }
.hero-rating strong { font-size: 19px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* About */
.about { background: var(--wine); color: #fff; }
.about-grid { display: grid; grid-template-columns: minmax(220px, .8fr) 1.4fr; gap: 40px; padding: 46px 24px; align-items: center; }
.features { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.features li { position: relative; padding-left: 30px; font-weight: 600; font-size: 16px; }
.features li::before { content: '✦'; position: absolute; left: 0; color: var(--gold-soft); }
.about-text { margin: 0; font-size: 17px; color: rgba(255,255,255,.86); }

/* Sections */
.section-head { text-align: center; margin-bottom: 38px; }
.eyebrow { text-transform: uppercase; letter-spacing: .2em; font-size: 13px; font-weight: 600; color: var(--gold); margin: 0 0 8px; }
.section-head h2 { font-size: clamp(32px, 5vw, 48px); color: var(--wine); }

.menu { padding: 80px 0; }

/* Category nav */
.cat-nav { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 46px; position: sticky; top: 74px; z-index: 20; padding: 12px 0; background: linear-gradient(var(--cream) 70%, transparent); }
.cat-chip { border: 1.5px solid var(--line); background: var(--white); color: var(--ink); padding: 9px 18px; border-radius: 999px; font-size: 14px; font-weight: 600; cursor: pointer; transition: all .15s ease; }
.cat-chip:hover { border-color: var(--gold); }
.cat-chip.active { background: var(--wine); border-color: var(--wine); color: #fff; }

.menu-cat { margin-bottom: 54px; }
.menu-cat-title { font-size: 28px; color: var(--wine); margin-bottom: 22px; padding-bottom: 10px; border-bottom: 2px solid var(--line); }

/* Dish grid */
.dish-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.dish-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; transition: transform .18s ease, box-shadow .18s ease; }
.dish-card:hover { transform: translateY(-4px); box-shadow: 0 16px 38px rgba(64,32,20,.16); }
.dish-photo { aspect-ratio: 4 / 3; background: var(--cream-2); overflow: hidden; }
.dish-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.dish-card:hover .dish-photo img { transform: scale(1.05); }
.dish-body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.dish-top { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.dish-top h4 { font-size: 19px; color: var(--ink); }
.dish-amount { font-size: 13px; color: var(--muted); white-space: nowrap; }
.dish-desc { font-size: 14px; color: var(--muted); margin: 8px 0 0; }
.dish-foot { margin-top: auto; padding-top: 14px; }
.dish-price { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--wine); }

/* Info blocks */
.info-blocks { background: var(--cream-2); padding: 70px 0; }
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.info-card { background: var(--white); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); }
.info-card h3 { font-size: 26px; color: var(--wine); margin-bottom: 12px; }
.info-card p { color: var(--muted); font-size: 16px; margin: 0 0 22px; }

/* Gallery */
.gallery { padding: 80px 0; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery-item { margin: 0; border-radius: 12px; overflow: hidden; aspect-ratio: 4 / 3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.06); }

/* Contacts */
.contacts { padding: 80px 0; background: var(--cream-2); }
.contacts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.contacts h2 { font-size: clamp(30px, 4vw, 42px); color: var(--wine); margin-bottom: 24px; }
.contact-list { margin: 0 0 28px; display: grid; gap: 16px; }
.contact-list div { display: grid; grid-template-columns: 130px 1fr; gap: 12px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.contact-list dt { color: var(--muted); font-size: 14px; text-transform: uppercase; letter-spacing: .08em; }
.contact-list dd { margin: 0; font-size: 17px; font-weight: 500; }
.contacts-photo img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

/* Footer */
.site-footer { background: var(--wine-dark); color: rgba(255,255,255,.8); padding: 26px 0; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: 14px; flex-wrap: wrap; }
.site-footer .muted { color: rgba(255,255,255,.5); }

/* Loading */
.is-loading .menu, .is-loading .gallery { opacity: .5; }

/* Responsive */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 24px; }
  .info-grid, .contacts-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { min-height: 78vh; }
}
@media (max-width: 520px) {
  .container { padding: 0 16px; }
  .btn-call .muted { display: none; }
  .dish-grid { grid-template-columns: 1fr; }
  .contact-list div { grid-template-columns: 1fr; gap: 2px; }
}
