:root {
  --burgundy: #8E1836;
  --burgundy-dark: #330813;
  --cream: #F8F4E7;
  --shadow: 0 24px 80px rgba(0, 0, 0, .36);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--burgundy-dark); }
body {
  margin: 0;
  min-width: 320px;
  color: var(--cream);
  background:
    radial-gradient(circle at 50% 0%, rgba(142, 24, 54, .35), transparent 45rem),
    var(--burgundy-dark);
  font-family: Arial, Helvetica, sans-serif;
}

.site-shell {
  width: min(100%, 760px);
  margin: 0 auto;
  background: var(--burgundy);
  box-shadow: var(--shadow);
  overflow: clip;
}

.menu-page {
  position: relative;
  width: 100%;
  line-height: 0;
  background: var(--burgundy);
}

.menu-page picture,
.menu-page img {
  display: block;
  width: 100%;
  height: auto;
}

.page-hotspot {
  position: absolute;
  z-index: 2;
  display: block;
  border-radius: 999px;
  outline-offset: 4px;
}
.page-hotspot:focus-visible { outline: 3px solid var(--cream); }
.page-hotspot--whatsapp { left: 24%; top: 51.2%; width: 52%; height: 7.2%; }
.page-hotspot--instagram { left: 24%; top: 59.1%; width: 52%; height: 7.2%; }

.whatsapp-float {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 18px 0 14px;
  border: 1px solid rgba(142, 24, 54, .18);
  border-radius: 999px;
  color: var(--burgundy);
  background: var(--cream);
  box-shadow: 0 10px 32px rgba(0, 0, 0, .28);
  font: 700 15px/1 Arial, Helvetica, sans-serif;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}
.whatsapp-float svg { width: 26px; height: 26px; fill: currentColor; }
.whatsapp-float:hover { transform: translateY(-2px); box-shadow: 0 14px 38px rgba(0, 0, 0, .34); }
.whatsapp-float:focus-visible { outline: 3px solid var(--cream); outline-offset: 3px; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.noscript {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 20;
  margin: 0;
  padding: 12px 16px;
  color: var(--burgundy-dark);
  background: var(--cream);
  border-radius: 10px;
  line-height: 1.4;
}

@media (max-width: 520px) {
  .whatsapp-float { min-width: 54px; min-height: 54px; padding: 0; justify-content: center; }
  .whatsapp-float span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .whatsapp-float { transition: none; }
}
