:root {
  --bg: #0c0908;
  --panel: #18110f;
  --panel-2: #201714;
  --line: rgba(255, 255, 255, 0.08);
  --text: #f6efe8;
  --muted: #cdb9a7;
  --gold: #e4b15b;
  --gold-2: #f7cf86;
  --ember: #ff6b2d;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(255, 108, 45, 0.18), transparent 28%),
    linear-gradient(180deg, #140d0b 0%, #0c0908 60%, #090707 100%);
  color: var(--text);
  font-family: "Inter", system-ui, sans-serif;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 88px 0; }
.dark-section { background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)); }

.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(10, 8, 8, 0.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 78px; gap: 20px;
}
.logo {
  display: flex; align-items: center; gap: 12px;
}
.logo-mark {
  display: inline-grid; place-items: center;
  width: 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(135deg, var(--gold), var(--ember));
  font-size: 24px;
}
.logo strong, h1, h2, h3 { font-family: "Cinzel", serif; }
.logo strong { display: block; font-size: 1.1rem; }
.logo small { display: block; color: var(--muted); }
nav {
  display: flex; align-items: center; gap: 22px;
}
nav a { color: #f1dfcd; font-weight: 600; }
.burger { display: none; background: none; border: 0; color: white; font-size: 28px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 22px; border-radius: 999px; font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--ember));
  color: #1d120b; box-shadow: var(--shadow);
}
.btn-secondary, .btn-outline {
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
}
.btn-whatsapp {
  background: rgba(37, 211, 102, .14);
  border: 1px solid rgba(37, 211, 102, .45);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(rgba(8,6,6,0.48), rgba(8,6,6,0.72)), url('assets/hero.jpg') center/cover no-repeat;
  transform: scale(1.04);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255,190,80,.2), transparent 30%);
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 42px; align-items: center;
}
.eyebrow, .section-tag {
  display: inline-block; margin-bottom: 14px;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.06); border: 1px solid var(--line);
  color: var(--gold-2); font-size: .92rem; font-weight: 700;
}
.hero h1 {
  margin: 0 0 18px; font-size: clamp(2.6rem, 5vw, 5.4rem); line-height: .96;
}
.hero h1 span { color: var(--gold-2); }
.hero p {
  font-size: 1.08rem; color: #f3dfd0; max-width: 640px; line-height: 1.75;
}
.hero-actions { display: flex; gap: 14px; margin: 30px 0 22px; flex-wrap: wrap; }
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 12px; padding: 0; margin: 0; list-style: none;
}
.hero-badges li {
  padding: 10px 14px; border-radius: 999px; background: rgba(0,0,0,.28); border: 1px solid var(--line);
}
.glass {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}
.hero-card {
  border-radius: 28px; overflow: hidden;
}
.hero-card img { aspect-ratio: 4 / 5; object-fit: cover; }
.hero-card-content { padding: 20px 22px 24px; }
.mini-title { color: var(--gold-2); font-weight: 800; margin-bottom: 8px; }

.split, .section-head {
  display: grid; gap: 20px;
}
.split { grid-template-columns: 1fr 1fr; align-items: end; }
.split p, .section-head p { color: var(--muted); line-height: 1.8; }
.section-head { text-align: center; max-width: 860px; margin: 0 auto 40px; }
.section-head h2, .split h2, .price-panel h2, .contact-section h2, .cta-banner h2 { margin-top: 0; font-size: clamp(2rem, 3vw, 3rem); }

.menu-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.menu-card {
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow);
}
.menu-card img { height: 320px; width: 100%; object-fit: cover; }
.menu-card-body { padding: 20px; }
.title-row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
}
.title-row h3 { margin: 0 0 10px; font-size: 1.4rem; }
.title-row span { color: var(--gold-2); font-weight: 800; }
.menu-card ul { padding-left: 18px; color: var(--muted); line-height: 1.75; }

.two-columns {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}
.price-panel {
  padding: 34px; border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid var(--line);
}
.accent-panel {
  background: linear-gradient(180deg, rgba(228,177,91,.12), rgba(255,107,45,.08));
}
.price-list {
  display: grid; gap: 14px; margin-top: 26px;
}
.price-list div {
  display: flex; justify-content: space-between; gap: 14px; align-items: baseline;
  padding-bottom: 12px; border-bottom: 1px dashed rgba(255,255,255,0.12);
}
.price-list span { color: #f2dfd0; }
.price-list strong { color: var(--gold-2); font-size: 1.05rem; }
.small-note { color: var(--muted); margin-top: 22px; }

.cta-strip { padding-top: 0; }
.cta-banner {
  border-radius: 28px;
  padding: 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, rgba(228,177,91,.14), rgba(255,107,45,.12));
}
.cta-banner p { color: var(--muted); }
.cta-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.gallery-section { background: linear-gradient(180deg, rgba(255,255,255,.015), rgba(255,255,255,.03)); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  grid-auto-rows: 180px;
}
.gallery-card {
  border-radius: 22px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow);
}
.gallery-card img { width: 100%; height: 100%; object-fit: cover; }
.gallery-card.tall { grid-row: span 2; grid-column: span 2; }
.gallery-card.wide { grid-column: span 2; }
.real-gallery .gallery-card img { object-position: center; }

.info-strip { padding-top: 40px; }
.info-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.info-grid article, .contact-card {
  padding: 26px; border-radius: 20px; border: 1px solid var(--line); background: rgba(255,255,255,.03);
}
.info-grid h3, .contact-card h3 { margin-top: 0; }
.info-grid p { color: var(--muted); line-height: 1.8; }
.info-grid article a { color: var(--gold-2); font-weight: 700; }

.contact-wrap {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items: start;
}
.contact-list { display: grid; gap: 12px; margin-top: 22px; }
.contact-list a {
  padding: 14px 18px; border-radius: 16px; border: 1px solid var(--line); background: rgba(255,255,255,.04);
}
.contact-list a:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.contact-card ul { margin: 0; padding-left: 18px; color: var(--muted); line-height: 2; }

.site-footer {
  border-top: 1px solid var(--line); padding: 24px 0 36px; color: var(--muted);
}
.footer-wrap {
  display: flex; justify-content: space-between; gap: 20px; align-items: center;
}
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-links a { color: var(--gold-2); }

@media (max-width: 1080px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid, .split, .two-columns, .contact-wrap, .info-grid, .cta-banner { grid-template-columns: 1fr; }
  .cta-banner { display: grid; }
}

@media (max-width: 760px) {
  nav {
    display: none; position: absolute; top: 78px; left: 16px; right: 16px;
    flex-direction: column; align-items: stretch; gap: 12px;
    padding: 16px; border-radius: 18px; background: #140f0d; border: 1px solid var(--line);
  }
  nav.open { display: flex; }
  .burger { display: block; }
  .hero { min-height: auto; padding: 120px 0 64px; }
  .menu-grid, .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-auto-rows: 220px; }
  .gallery-card.tall, .gallery-card.wide { grid-column: span 1; grid-row: span 1; }
  .footer-wrap { flex-direction: column; align-items: flex-start; }
}
