:root {
  --bg: #14100d;
  --bg-alt: #1c1712;
  --card: #211a15;
  --text: #f3ece2;
  --text-muted: #c9bdae;
  --accent: #ef7b26;
  --accent-dark: #c85f16;
  --accent-2: #f2b632;
  --whatsapp: #25d366;
  --whatsapp-dark: #1da851;
  --border: #332920;
  --radius: 14px;
  --max-width: 1160px;
  --font-display: Georgia, 'Times New Roman', serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.55;
}

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

a { color: var(--accent-2); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(20, 16, 13, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  white-space: nowrap;
}
.logo img {
  height: 58px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 22px;
  margin-left: auto;
}
.main-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.main-nav a:hover { color: var(--accent); }

.header-cta { margin-left: 8px; padding: 8px 18px; font-size: 0.9rem; }

.lang-switch {
  display: flex;
  margin-left: auto;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
  flex-shrink: 0;
}
.lang-switch button {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 7px 13px;
  cursor: pointer;
}
.lang-switch button.active {
  background: var(--accent);
  color: #1a0f04;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}
.nav-toggle span {
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  font-family: inherit;
  text-align: center;
  border: 2px solid transparent;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-whatsapp {
  background: var(--whatsapp);
  color: #0b1a10;
}
.btn-whatsapp:hover { background: var(--whatsapp-dark); }

.btn-outline {
  border-color: var(--text);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* Hero */
.hero {
  background-size: cover;
  background-position: center;
  min-height: 78vh;
  display: flex;
  align-items: center;
}
.hero-inner { text-align: center; padding: 60px 20px; }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 8vw, 5rem);
  margin: 0;
  letter-spacing: 3px;
  color: var(--text);
  text-shadow: 0 4px 24px rgba(0,0,0,.6);
}
.hero-tagline {
  margin: 14px auto 34px;
  max-width: 560px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-2);
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-hours { margin-top: 26px; color: var(--accent-2); font-weight: 700; letter-spacing: 0.5px; }

/* Sections */
.section {
  padding: 70px 0;
  position: relative;
  border-top: 1px solid var(--border);
}
.section::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 3px;
  background: var(--accent);
  border-radius: 3px;
}
.section-alt { background: var(--bg-alt); }

/* Promo */
.promo-section { padding: 40px 0; }
.promo-inner { text-align: center; }
.promo-img {
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform .15s ease;
}
.promo-img:hover { transform: scale(1.01); }
.promo-caption { color: var(--text-muted); margin: 18px auto 8px; max-width: 640px; }
.promo-terms-link {
  display: inline-block;
  color: var(--accent-2);
  font-weight: 700;
  text-decoration: none;
}
.promo-terms-link:hover { color: var(--accent); }
.section-title {
  font-family: var(--font-display);
  font-size: 2.1rem;
  margin: 0 0 8px;
  color: var(--text);
}
.section-subtitle { color: var(--text-muted); margin: 0 0 36px; max-width: 640px; }

/* Menu */
.menu-category { margin-bottom: 48px; }
.menu-category-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 10px;
  margin-bottom: 22px;
}
.menu-category-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0;
}
.menu-category-note { color: var(--text-muted); font-size: 0.85rem; margin: 0 0 20px; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}

.menu-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.menu-item-img {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
}
.menu-item-img--contain {
  object-fit: contain;
  background: radial-gradient(circle at 50% 40%, #2a2119 0%, var(--card) 75%);
  padding: 14px;
}
.menu-item-body { padding: 16px 18px 20px; flex: 1; display: flex; flex-direction: column; }
.menu-item-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.menu-item-name {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 700;
}
.menu-item-name .num { color: var(--accent); margin-right: 6px; }
.menu-item-price {
  background: var(--accent);
  color: #1a0f04;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 999px;
  white-space: nowrap;
  font-size: 0.95rem;
}
.menu-item-desc { margin: 10px 0 0; color: var(--text-muted); font-size: 0.88rem; }

.loading { color: var(--text-muted); }

/* Customize */
.customize-inner {
  display: grid;
  grid-template-columns: minmax(0, 380px) 1fr;
  gap: 40px;
  align-items: center;
}
.customize-img { border-radius: var(--radius); }
.customize-list { list-style: none; padding: 0; margin: 18px 0 0; }
.customize-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
}
.customize-list .opt-price { color: var(--accent-2); font-weight: 700; white-space: nowrap; }

/* Ordering */
.ordering-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 26px;
  max-width: 620px;
}
.ordering-card pre {
  margin: 0;
  white-space: pre-wrap;
  font-family: 'Consolas', monospace;
  color: var(--accent-2);
  font-size: 0.95rem;
  line-height: 1.7;
}
.catering-note { margin-top: 22px; color: var(--text-muted); max-width: 680px; }

/* About */
.about-inner {
  display: grid;
  grid-template-columns: minmax(0, 380px) 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 48px;
}
.about-img { border-radius: var(--radius); }
.about-text p { color: var(--text-muted); }
.premium-badge { width: 110px; margin-top: 18px; }

.certificate-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 48px;
}
.certificate-img {
  width: 140px;
  border-radius: 10px;
  border: 1px solid var(--border);
  flex-shrink: 0;
  cursor: zoom-in;
  transition: transform .15s ease;
}
.certificate-img:hover { transform: scale(1.03); }
.certificate-caption { color: var(--text-muted); font-size: 0.92rem; margin: 0; flex: 1; min-width: 220px; }

.reviews-title { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 20px; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}
.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  font-size: 0.92rem;
  color: var(--text-muted);
}
.review-card a { display: inline-block; margin-top: 10px; font-size: 0.82rem; color: var(--accent-2); text-decoration: none; }

/* Allergens */
.allergens-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
}
.allergens-list li {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
/* Contact */
.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 420px) 1fr;
  gap: 40px;
  align-items: center;
}
.contact-list { list-style: none; padding: 0; margin: 0 0 26px; }
.contact-list li { padding: 8px 0; border-bottom: 1px solid var(--border); }
.contact-list a { color: var(--accent-2); text-decoration: none; }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 320px;
  background: var(--card);
  border: none;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}
.map-placeholder:hover { background: var(--bg-alt); color: var(--accent-2); }
.map-placeholder-icon { font-size: 2rem; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 26px 0;
  color: var(--text-muted);
  font-size: 0.85rem;
  text-align: center;
}
.site-footer a { color: var(--text-muted); }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 22px;
  margin-bottom: 16px;
}
.footer-links a { text-decoration: none; font-weight: 600; }
.footer-links a:hover { color: var(--accent-2); }

.cookie-settings-link {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  cursor: pointer;
}
.cookie-settings-link:hover { color: var(--accent-2); }

/* Cookie consent banner */
.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 250;
  background: rgba(20, 16, 13, 0.97);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(6px);
}
.cookie-consent[hidden] { display: none; }
.cookie-consent-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-consent-inner p {
  flex: 1;
  min-width: 240px;
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.cookie-consent-inner a { color: var(--accent-2); }
.cookie-consent-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-consent-actions .btn {
  padding: 9px 20px;
  font-size: 0.9rem;
}

.breadcrumbs { color: var(--text-muted); font-size: 0.85rem; margin: 0 0 18px; }
.breadcrumbs a { color: var(--text-muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--accent-2); }

/* FAQ */
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 4px 20px;
  margin-bottom: 12px;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  padding: 14px 0;
  list-style: none;
  position: relative;
  padding-right: 30px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 12px;
  color: var(--accent);
  font-size: 1.3rem;
  font-weight: 800;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p { color: var(--text-muted); margin: 0 0 16px; }

/* Responsive */
@media (max-width: 860px) {
  .customize-inner, .about-inner, .contact-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .section { padding: 46px 0; border-top-width: 2px; }
  .section::before { width: 50px; height: 4px; }
  .section-title { font-size: 1.7rem; }
  .main-nav { display: none; }
  .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .header-inner.open ~ .main-nav,
  .site-header.nav-open .main-nav {
    display: flex;
  }
  .site-header.nav-open .main-nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    gap: 16px;
  }
  .site-header.nav-open .header-cta {
    display: inline-block;
    position: absolute;
    top: 82px;
    right: 20px;
  }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(10, 8, 6, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox[hidden] { display: none; }
.lightbox-img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}
.lightbox-close:hover { background: rgba(255, 255, 255, 0.2); }
