:root {
  color-scheme: light;
  --black: #171717;
  --red: #b30f1c;
  --white: #fff;
  --line: #dedede;
  --text: #262626;
  --muted: #5b5b5b;
  font-family: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 76px; }
body { margin: 0; background: var(--white); color: var(--text); line-height: 1.5; }
img { display: block; max-width: 100%; }
a { color: inherit; }
:focus-visible { outline: 3px solid var(--red); outline-offset: 4px; }

.skip-link {
  position: absolute;
  top: -100px;
  left: 12px;
  z-index: 20;
  padding: 10px 14px;
  background: var(--white);
}
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 18px;
  background: var(--black);
  color: var(--white);
}
.brand { display: block; line-height: 0; }
.brand img { width: 175px; height: auto; }
nav { display: flex; align-items: center; gap: 23px; }
nav > a { display: none; text-decoration: none; font-size: 14px; font-weight: 700; }
nav > a:hover { text-decoration: underline; text-underline-offset: 4px; }
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: calc(18px + env(safe-area-inset-bottom));
  z-index: 10;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  border: 1px solid #1da851;
  border-radius: 50%;
  box-shadow: 0 5px 16px #0004;
  text-decoration: none;
}
.whatsapp-float img { width: 30px; height: 30px; }
.whatsapp-float:hover { background: #20bd5b; }
.whatsapp-float:active { transform: scale(.96); }
.whatsapp-float:focus-visible { outline: 3px solid var(--black); outline-offset: 3px; }

.section-wrap { max-width: 1100px; margin: 0 auto; padding-left: 18px; padding-right: 18px; }
.hero { position: relative; isolation: isolate; display: grid; place-items: center; min-height: max(520px, calc(100dvh - 68px)); overflow: hidden; padding: 70px 18px; background: var(--black); }
.hero-copy { position: relative; z-index: 1; width: 100%; max-width: 760px; text-align: center; color: var(--white); }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.hero-media::after { content: ""; position: absolute; inset: 0; background: rgb(0 0 0 / 62%); }
.hero h1,
h2 { font-family: Arial, Helvetica, sans-serif; letter-spacing: -.035em; line-height: 1.05; }
.hero h1 { margin: 0 auto; max-width: 15ch; font-size: clamp(38px, 9vw, 66px); font-weight: 800; }
.hero-copy > p { max-width: 48ch; margin: 19px auto 22px; font-size: 17px; color: #f5f5f5; }
.text-link { display: inline-block; color: var(--red); font-size: 15px; font-weight: 800; text-underline-offset: 4px; }
.hero .text-link { color: var(--white); }

.quick-info {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 1064px;
  margin: 0 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.quick-info > div { display: grid; gap: 3px; padding: 16px 0; }
.quick-info > div + div { border-top: 1px solid var(--line); }
.quick-info span { color: var(--muted); font-size: 13px; }
.quick-info strong { font-size: 16px; }

.section-wrap { padding-top: 65px; padding-bottom: 65px; }
.section-heading h2,
.location-copy h2 { margin: 0; font-size: clamp(33px, 8vw, 44px); font-weight: 800; }
.section-heading p { max-width: 43ch; margin: 10px 0 0; font-size: 15px; color: var(--muted); }
.menu-gallery { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: repeat(3, minmax(0, 1fr)); gap: 4px; margin-top: 26px; aspect-ratio: 4 / 5; overflow: hidden; background: var(--white); }
.menu-gallery img { width: 100%; height: 100%; min-height: 0; object-fit: cover; }
.menu-gallery img:first-child { grid-column: 1 / -1; }
.menu-groups { margin-top: 24px; border-top: 2px solid var(--red); }
.menu-group { border-bottom: 1px solid var(--line); }
.menu-group summary { display: flex; justify-content: space-between; align-items: center; gap: 15px; min-height: 64px; padding: 15px 2px; cursor: pointer; list-style: none; font-size: 21px; font-weight: 800; }
.menu-group--single { padding: 16px 2px; }
.menu-group-title { margin: 0; font-size: 21px; line-height: 1.5; font-weight: 800; }
.menu-group summary::-webkit-details-marker { display: none; }
.menu-group summary span { color: var(--red); font-size: 28px; line-height: 1; font-weight: 400; transition: transform .15s ease; }
.menu-group[open] summary span { transform: rotate(45deg); }
.menu-group summary:focus-visible { outline-offset: -3px; }
.menu-items { display: grid; gap: 0 34px; padding: 0 2px 18px; }
.menu-item { padding: 15px 0 16px; border-top: 1px solid #ededed; }
.menu-item h3 { margin: 0; font-size: 16px; line-height: 1.25; font-weight: 700; }
.menu-item p { max-width: 54ch; margin: 5px 0 0; color: var(--muted); font-size: 14px; line-height: 1.4; }

.location-section { background: var(--white); }
.location-wrap { border-top: 1px solid var(--line); }
.location-copy > p { max-width: 38ch; margin: 15px 0 12px; font-size: 16px; }
.map-shell { margin-top: 28px; }
.map-image-wrap { position: relative; width: 100%; aspect-ratio: 4 / 3; background: #f0f0f0; }
.map-image { width: 100%; height: 100%; object-fit: cover; border: 1px solid var(--line); }
.map-hotspot { position: absolute; left: 50%; top: 48%; transform: translate(-50%, -50%); width: 48px; height: 48px; z-index: 2; }
.map-pin-button { position: relative; display: block; width: 100%; height: 100%; border: 0; background: transparent; cursor: pointer; }
.map-pin-button::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 3px;
  width: 30px;
  height: 30px;
  border: 2px solid var(--white);
  border-radius: 50% 50% 50% 0;
  background: var(--red);
  box-shadow: 0 2px 7px #0006;
  transform: rotate(-45deg);
}
.map-pin-button::after {
  content: "";
  position: absolute;
  left: 19px;
  top: 13px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--white);
}
.map-pin-button:focus-visible { border: 2px solid var(--black); border-radius: 50%; outline: 3px solid var(--white); }
.map-photo {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  width: 170px;
  padding: 5px;
  background: var(--white);
  border: 1px solid #aaa;
  box-shadow: 0 8px 20px #0003;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.map-photo img { width: 100%; height: 112px; object-fit: cover; }
.map-hotspot:hover .map-photo,
.map-hotspot:focus-within .map-photo,
.map-hotspot.is-open .map-photo { opacity: 1; visibility: visible; }
.map-credit { margin: 12px 0 0; font-size: 11px; color: #686868; }
.map-credit a { text-underline-offset: 2px; }
.map-failure { display: none; padding: 18px; border: 1px solid var(--line); }
.map-image-wrap.is-failed .map-image,
.map-image-wrap.is-failed .map-hotspot { display: none; }
.map-image-wrap.is-failed .map-failure { display: block; }

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  padding: 30px 18px calc(100px + env(safe-area-inset-bottom));
  background: var(--black);
  color: var(--white);
}
.site-footer > img { width: 175px; height: auto; }
.site-footer p { flex-basis: 100%; order: 3; margin: 0; max-width: 43ch; font-size: 13px; color: #dedede; }

@media (min-width: 700px) {
  html { scroll-padding-top: 84px; }
  .site-header { min-height: 76px; padding: 8px clamp(24px, 5vw, 72px); }
  .brand img { width: 196px; }
  nav > a { display: inline-block; }
  .whatsapp-float { right: 28px; bottom: 28px; }
  .section-wrap { padding-left: 32px; padding-right: 32px; }
  .hero { min-height: max(580px, calc(100dvh - 76px)); padding: 80px 32px; }
  .hero h1 { font-size: clamp(48px, 5vw, 70px); }
  .hero-copy > p { font-size: 18px; }
  .quick-info { grid-template-columns: 1fr 1fr; margin-left: auto; margin-right: auto; }
  .quick-info > div { padding: 24px; }
  .quick-info > div:first-child { padding-left: 0; }
  .quick-info > div + div { border-top: 0; border-left: 1px solid var(--line); }
  .section-wrap { padding-top: 80px; padding-bottom: 80px; }
  .section-heading h2,
  .location-copy h2 { font-size: 48px; }
  .menu-gallery { grid-template-columns: repeat(5, minmax(0, 1fr)); grid-template-rows: minmax(0, 1fr); aspect-ratio: 5 / 1; }
  .menu-gallery img:first-child { grid-column: auto; }
  .menu-items { grid-template-columns: 1fr 1fr; }
  .location-wrap { display: grid; grid-template-columns: .65fr 1.35fr; gap: 50px; align-items: center; }
  .map-shell { margin-top: 0; }
  .map-photo { width: 225px; }
  .map-photo img { height: 150px; }
  .site-footer { padding: 35px clamp(24px, 5vw, 72px) 95px; gap: 35px; }
  .site-footer p { flex-basis: auto; order: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
