:root {
  --red: #b21e23;
  --red-dark: #7f1116;
  --gold: #cda15f;
  --gold-soft: #eed5a9;
  --cream: #fffaf2;
  --sand: #f5ede0;
  --ink: #231814;
  --muted: #6e5d4c;
  --line: rgba(155, 109, 45, 0.18);
  --card: rgba(255, 251, 245, 0.92);
  --shadow: 0 20px 55px rgba(45, 25, 10, 0.16);
  --radius: 26px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(205, 161, 95, 0.14), transparent 25%),
    linear-gradient(180deg, #fff8ef 0%, #fffdf9 45%, #fff7ea 100%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 99;
  background: #fff;
  padding: 10px 14px;
  border-radius: 12px;
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 22px;
  backdrop-filter: blur(16px);
  background: rgba(255, 250, 243, 0.85);
  border-bottom: 1px solid rgba(178, 30, 35, 0.08);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(205, 161, 95, 0.55);
  box-shadow: 0 10px 24px rgba(127, 17, 22, 0.18);
}
.brand strong {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 1rem;
}
.brand small { color: var(--muted); }
.topbar-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav a {
  font-weight: 600;
  color: var(--muted);
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width .28s ease;
}
.nav a:hover::after,
.nav a:focus-visible::after { width: 100%; }
.lang-switch {
  display: inline-flex;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,.7);
  border: 1px solid var(--line);
}
.lang-btn {
  border: 0;
  background: transparent;
  min-width: 48px;
  min-height: 38px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  color: var(--muted);
}
.lang-btn.active {
  background: linear-gradient(135deg, var(--red), #d2363b);
  color: #fff;
  box-shadow: var(--shadow);
}
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
}
.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  margin: 5px 0;
  border-radius: 999px;
  background: var(--red);
}
.section { padding: 88px 22px; }
.section-tight { padding-top: 28px; }
.section-alt { background: rgba(255, 247, 236, 0.45); }
.eyebrow {
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  font-size: .83rem;
  font-weight: 800;
  margin: 0 0 10px;
}
h1, h2, h3 {
  font-family: 'Cinzel', serif;
  margin: 0 0 14px;
}
h1 { font-size: clamp(2.4rem, 5vw, 4.7rem); line-height: 1.03; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: 1.24rem; }
p { margin: 0; line-height: 1.7; }
.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}
.hero {
  position: relative;
  min-height: calc(100vh - 92px);
  display: grid;
  align-items: center;
  overflow: hidden;
}
.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  background: linear-gradient(105deg, rgba(24, 13, 9, 0.88) 18%, rgba(24, 13, 9, 0.52) 50%, rgba(24, 13, 9, 0.32) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-left: clamp(0px, 6vw, 90px);
  color: #fff9f2;
}
.hero-text { max-width: 680px; font-size: 1.05rem; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 0;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
  box-shadow: var(--shadow);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--red), #db3c3f); color: #fff; }
.btn-secondary { background: linear-gradient(135deg, var(--gold), #f0cb8c); color: #2d1b12; }
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 12px;
  padding: 0;
  margin: 26px 0 0;
}
.hero-pills li {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(8px);
}
.highlights-grid,
.cards-grid,
.social-layout,
.contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 22px;
}
.highlights-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.mini-card,
.card,
.dish-card,
.embed-card,
.map-card {
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.mini-card {
  padding: 24px;
  text-align: center;
}
.mini-card span {
  display: block;
  color: var(--red);
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.cards-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card { padding: 28px; }
.specialties-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.dish-card { overflow: hidden; }
.dish-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.dish-card div { padding: 22px; }
.gallery-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.gallery-item {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform .45s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.social-layout { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.embed-card { padding: 24px; }
.embed-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.embed-card-head img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 50%;
}
.facebook-embed {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fff;
}
.facebook-embed iframe {
  width: 100%;
  max-width: 100%;
}
.instagram-fallback {
  min-height: 320px;
  display: grid;
  place-items: center;
  text-align: center;
  gap: 16px;
  padding: 34px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(178,30,35,.07), rgba(205,161,95,.18));
  border: 1px solid var(--line);
}
.insta-badge {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  font-size: 2.1rem;
  font-weight: 800;
  color: #fff;
  border-radius: 28px;
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
}
.inline-btn { margin-top: 18px; }
.video-frame {
  max-width: 1050px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.video-frame iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}
.contact-grid { grid-template-columns: 1fr 1fr; }
.contact-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}
.contact-list a { color: var(--red-dark); font-weight: 700; }
.contact-form {
  display: grid;
  gap: 14px;
}
.contact-form label {
  display: grid;
  gap: 8px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(35, 24, 20, 0.12);
  background: rgba(255,255,255,0.9);
}
.form-btn { width: fit-content; }
.form-note {
  color: var(--muted);
  font-size: .95rem;
}
.map-card {
  max-width: 1200px;
  margin: 24px auto 0;
  overflow: hidden;
}
.map-card iframe {
  display: block;
  width: 100%;
  min-height: 400px;
  border: 0;
}
.footer {
  padding: 28px 22px 40px;
  text-align: center;
  color: var(--muted);
}
.footer a { color: var(--red-dark); font-weight: 700; }
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 18px 30px rgba(16, 66, 32, 0.35);
}
.whatsapp-float svg { width: 34px; height: 34px; }
.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  padding: 22px;
  background: rgba(20, 10, 8, 0.88);
  z-index: 80;
}
.lightbox.open { display: grid; }
.lightbox img {
  max-width: min(100%, 1100px);
  max-height: 78vh;
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.lightbox p {
  color: #fff;
  margin-top: 14px;
  font-weight: 700;
  text-align: center;
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  border: 0;
  background: rgba(255,255,255,.12);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 2rem;
  cursor: pointer;
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 1080px) {
  .specialties-grid,
  .cards-grid.three,
  .gallery-grid,
  .highlights-grid,
  .social-layout,
  .contact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 820px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }
  .topbar-actions {
    width: 100%;
    justify-content: space-between;
  }
  .menu-toggle { display: block; }
  .nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    border-radius: 24px;
    background: rgba(255,250,243,.98);
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
  }
  .nav.open { display: flex; }
  .hero {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 90px;
  }
  .hero-content { margin-left: 0; }
}
@media (max-width: 640px) {
  .section { padding: 72px 18px; }
  .brand strong { font-size: .92rem; }
  .brand small { font-size: .82rem; }
  .highlights-grid,
  .cards-grid.three,
  .specialties-grid,
  .gallery-grid,
  .social-layout,
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-item img,
  .dish-card img { aspect-ratio: 1 / 1; }
  .whatsapp-float {
    width: 58px;
    height: 58px;
    right: 14px;
    bottom: 14px;
  }
  .facebook-embed iframe { min-height: 480px; }
}
