/* ===== OH MY DOG — URBAN STREET-FOOD STYLE ===== */
/* Palette: #F7D121 yellow, #232323 dark, #4A4A4A gray, #111111 black, #FFFFFF white */
/* Typography: Bebas Neue (bold condensed headings), Inter (body) */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: clamp(16px, 1vw, 18px); scroll-behavior: smooth; }
.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;
}
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(1rem, 1vw, 1.1rem);
  color: #111;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== CONTAINER ===== */
.container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }
@media (min-width: 1440px) { .container { max-width: 1280px; } }

/* ===== SECTION BASICS ===== */
.section { padding: 6rem 0; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-tag {
  display: inline-block;
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: #F7D121;
  background: #232323;
  padding: 0.3rem 1.2rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4rem);
  color: #111;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin-bottom: 0.3rem;
}
.section-desc {
  font-size: clamp(1rem, 1.05vw, 1.15rem);
  color: #555;
  font-weight: 500;
}

/* ===== BUTTON BASE ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: clamp(1.05rem, 1.1vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  transition: all 0.25s ease;
  cursor: pointer;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; z-index: 1000;
  width: 100%;
  padding: 0.7rem 0;
  background: rgba(17, 17, 17, 0.7);
  backdrop-filter: blur(14px);
  border-bottom: 2px solid rgba(247, 209, 33, 0.25);
  transition: all 0.35s ease;
}
.navbar.scrolled {
  background: rgba(17, 17, 17, 0.96);
  border-bottom-color: #F7D121;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; }
.nav-logo-img {
  height: 58px;
  width: auto;
  object-fit: contain;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  padding: 3px;
  transition: transform 0.3s ease;
}
.nav-logo:hover .nav-logo-img { transform: scale(1.05); }
.nav-menu { display: flex; align-items: center; gap: 2rem; }
.nav-link {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: clamp(1.05rem, 1.1vw, 1.15rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}
.nav-link:hover { color: #F7D121; }
.navbar.scrolled .nav-link { color: rgba(255,255,255,0.7); }
.navbar.scrolled .nav-link:hover { color: #F7D121; }

.btn-nav-cta {
  background: #22c55e;
  color: #fff;
  font-size: 0.9rem;
  padding: 0.55rem 1.3rem;
  border-radius: 50px;
}
.btn-nav-cta:hover { background: #16a34a; transform: translateY(-1px); }

/* Mobile nav */
.nav-toggle { display: none; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 1001; }
.nav-toggle span { display: block; width: 28px; height: 3.5px; background: #F7D121; border-radius: 2px; transition: all 0.3s; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(9px, 9px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(9px, -9px); }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed; top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: #111;
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2rem;
    gap: 1.75rem;
    transition: right 0.35s ease;
    border-left: 2px solid #F7D121;
  }
  .nav-menu.active { right: 0; }
  .nav-menu .nav-link { font-size: 1.25rem; }
  .nav-logo-img { height: 46px; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #111;
  overflow: hidden;
}
/* Dark overlay + subtle yellow glow */
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(247, 209, 33, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(247, 209, 33, 0.08) 0%, transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.6) 100%);
  pointer-events: none;
}
/* Food image background — subtle and dark */
.hero-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.32;
  z-index: 0;
  filter: brightness(0.55) saturate(0.7);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 900px;
  padding: 5.5rem 2rem 2.5rem;
}
.hero-logo {
  display: block;
  width: clamp(240px, 28vw, 380px);
  height: auto;
  margin: 0 auto 0.5rem;
  filter: drop-shadow(0 6px 24px rgba(0,0,0,0.5));
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  border-radius: 50%;
  padding: 0.5rem;
}
.hero-headline {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  color: #F7D121;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.05;
  margin-bottom: 0.75rem;
}
.hero-subtitle {
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  margin-bottom: 2.2rem;
  max-width: 600px;
  margin-left: auto; margin-right: auto;
  line-height: 1.5;
}
.hero-buttons {
  display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
}

.btn-primary-cta {
  background: #F7D121;
  color: #111;
  font-size: clamp(1.1rem, 1.3vw, 1.3rem);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(247, 209, 33, 0.35);
  border: 2px solid #F7D121;
}
.btn-primary-cta:hover { background: #FFD940; transform: translateY(-2px); }

.btn-secondary-cta {
  background: transparent;
  border: 2px solid #F7D121;
  color: #F7D121;
  font-size: clamp(1.1rem, 1.3vw, 1.3rem);
  padding: 1rem 2.5rem;
  border-radius: 50px;
}
.btn-secondary-cta:hover { background: rgba(247, 209, 33, 0.1); }

/* Promo badge in hero */
.hero-promo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  background: #232323;
  border: 2px solid #F7D121;
  border-radius: 50px;
  padding: 0.6rem 1.5rem;
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: #F7D121;
  text-transform: uppercase;
}
.hero-promo span { color: #fff; margin: 0 0.2rem; }

/* ===== ABOUT — YELLOW BLOCK ===== */
.about { background: #F7D121; padding: 3.5rem 0; }
.about .section-title { color: #111; }
.about .section-tag { background: #111; color: #F7D121; }
.about-content { max-width: 700px; margin: 0 auto; }
.about-card {
  background: #111;
  border-radius: 20px;
  padding: 2.5rem 3rem;
  text-align: center;
  border: 3px solid rgba(255,255,255,0.2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.06);
}
.about-text {
  font-size: clamp(1.05rem, 1.1vw, 1.2rem);
  color: #fff;
  line-height: 1.75;
}
.about-text strong { color: #F7D121; }

/* ===== PROMO STRIP ===== */
.promo-strip {
  background: #111;
  padding: 3.5rem 0;
  text-align: center;
  border-top: 4px solid #F7D121;
  border-bottom: 4px solid #F7D121;
  background-image:
    radial-gradient(circle at 15% 50%, rgba(247,209,33,0.06) 0%, transparent 50%),
    radial-gradient(circle at 85% 50%, rgba(247,209,33,0.06) 0%, transparent 50%);
}
.promo-strip-inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 2.5rem;
}
.promo-strip-text {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: clamp(2.2rem, 3.5vw, 2.8rem);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.promo-strip-emoji { font-size: 2.8rem; }
.promo-strip-price {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  color: #F7D121;
  text-shadow: 0 0 40px rgba(247,209,33,0.4);
}
.btn-promo-strip {
  background: #F7D121;
  color: #111;
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: 1.2rem;
  padding: 0.85rem 2.5rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(247,209,33,0.35);
}
.btn-promo-strip:hover { background: #FFD940; transform: scale(1.05); }

/* ===== MENU — WHITE BG ===== */
.menu { background: #fff; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.menu-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 3px solid #232323;
  box-shadow: 6px 6px 0 #F7D121;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.menu-card:hover {
  transform: translate(-2px, -4px);
  box-shadow: 10px 10px 0 #F7D121;
}
.menu-card-img { aspect-ratio: 4/3; overflow: hidden; border-bottom: 3px solid #232323; background: #1a1a1a; }
.menu-card-img img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.3s ease; }
.menu-card:hover .menu-card-img img { transform: scale(1.06); }
.menu-card-img-icon {
  background: #F7D121;
  display: flex; align-items: center; justify-content: center;
  border-bottom: 3px solid #232323;
}
.menu-card-emoji { font-size: 3.5rem; }
.menu-card-body { padding: 1.4rem 1.4rem 0; flex: 1; display: flex; flex-direction: column; }
.menu-card-body h3 {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: clamp(1.4rem, 1.6vw, 1.7rem);
  color: #111;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.3rem;
}
.menu-card-body p { color: #555; font-size: 0.9rem; line-height: 1.55; flex: 1; }
.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding: 1rem 1.4rem 1.3rem;
  border-top: 2px solid #F7D121;
  background: #fafafa;
}
.menu-card-price {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: 1.4rem;
  color: #E53935;
  letter-spacing: 0.03em;
}
.menu-card-action {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #111;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.menu-card-action:hover { color: #F7D121; }
.menu-cta { text-align: center; margin-top: 2.5rem; }
.btn-whatsapp {
  background: #22c55e;
  color: #fff;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  border-radius: 50px;
}
.btn-whatsapp:hover { background: #16a34a; transform: translateY(-2px); }

/* ===== BLACK PROMO SECTION ===== */
.promo-block {
  background: #111;
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.promo-block::before {
  content: '';
  position: absolute; top: -40px; left: -40px;
  width: 120px; height: 120px;
  background: #F7D121;
  border-radius: 50%;
  opacity: 0.15;
}
.promo-block::after {
  content: '';
  position: absolute; bottom: -50px; right: -30px;
  width: 180px; height: 180px;
  background: #F7D121;
  border-radius: 50%;
  opacity: 0.1;
}
.promo-block-title {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  color: #F7D121;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.1;
  position: relative; z-index: 1;
}
.promo-block-sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
  margin: 1rem 0 2rem;
  position: relative; z-index: 1;
}
.promo-block .btn { position: relative; z-index: 1; }

/* ===== GALLERY ===== */
.gallery { background: #fff; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.gallery-item {
  aspect-ratio: 1/1;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid #232323;
  box-shadow: 4px 4px 0 #F7D121;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-item:hover {
  transform: scale(1.03) translate(-2px, -2px);
  box-shadow: 8px 8px 0 #F7D121;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

/* ===== LOCATION ===== */
.location { background: #F7D121; }
.location .section-title { color: #111; }
.location .section-tag { background: #111; color: #F7D121; }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.location-info { display: flex; flex-direction: column; gap: 1.25rem; }
.info-card {
  background: #111;
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px #111;
}
.info-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: #F7D121;
  color: #111;
  border-radius: 50%;
  font-size: 1.2rem;
}
.info-text h3 {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: 1.15rem;
  color: #F7D121;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.info-text p { color: rgba(255,255,255,0.8); font-size: 0.95rem; }
.info-text a { color: #F7D121; font-weight: 600; }
.hours-note { font-size: 0.8rem !important; color: rgba(255,255,255,0.5) !important; margin-top: 0.25rem; }
.location-actions { margin-top: 0.75rem; }
.btn-maps {
  background: #fff;
  color: #111;
  border: 2px solid #111;
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: 0.9rem;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.btn-maps:hover { background: #111; color: #F7D121; border-color: #F7D121; }
.contact-links { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 0.5rem; }
.contact-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.contact-links a:hover { color: #fff; }
.contact-links a i { margin-right: 0.3rem; }
.location-map { border-radius: 16px; overflow: hidden; border: 3px solid #111; box-shadow: 6px 6px 0 rgba(0,0,0,0.15); min-height: 380px; }
.map-card { position: relative; width: 100%; height: 100%; min-height: 480px; background: #232323; }

/* ===== FOOTER ===== */
.footer { background: #111; color: rgba(255,255,255,0.7); padding: 3.5rem 0 1.5rem; border-top: 4px solid #F7D121; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
}
.footer-logo-img {
  display: block;
  width: clamp(90px, 9vw, 130px);
  height: auto;
  margin-bottom: 0.75rem;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.55; }
.footer-social { display: flex; gap: 0.6rem; margin-top: 1rem; }
.social-link {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 40px; height: 40px;
  color: #F7D121;
  background: rgba(247, 209, 33, 0.08);
  border-radius: 50%;
  border: 2px solid rgba(247, 209, 33, 0.2);
  transition: all 0.25s ease;
}
.social-link:hover { background: #F7D121; color: #111; border-color: #F7D121; transform: translateY(-2px); }
.footer-links h4 {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: clamp(1rem, 1.1vw, 1.15rem);
  color: #F7D121;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.footer-links a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: #F7D121; }
.footer-bottom {
  text-align: center;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 999;
  width: 62px; height: 62px;
  background: #22c55e;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 6px 28px rgba(34, 197, 94, 0.4);
  border: 3px solid #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: float-pulse 2.5s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 10px 36px rgba(34, 197, 94, 0.6);
}
@keyframes float-pulse {
  0%, 100% { box-shadow: 0 6px 28px rgba(34, 197, 94, 0.4); }
  50% { box-shadow: 0 6px 40px rgba(34, 197, 94, 0.7); }
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed; inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.94);
  display: none; align-items: center; justify-content: center;
  cursor: pointer;
}
.lightbox.active { display: flex; }
.lightbox-img {
  max-width: 90vw; max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
  border: 3px solid #F7D121;
  cursor: default;
  animation: lightboxIn 0.3s ease;
}
@keyframes lightboxIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute; z-index: 2001;
  background: rgba(247,209,33,0.12);
  color: #F7D121;
  border: 2px solid rgba(247,209,33,0.4);
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.lightbox-close { top: 1.5rem; right: 1.5rem; width: 48px; height: 48px; font-size: 2rem; line-height: 1; }
.lightbox-prev, .lightbox-next { top: 50%; transform: translateY(-50%); width: 48px; height: 48px; font-size: 2rem; }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: #F7D121; color: #111; border-color: #F7D121; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-content { padding: 5rem 1.5rem 2rem; }
  .hero-logo { width: clamp(180px, 28vw, 240px); }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .location-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .hero-content { padding: 3rem 1.5rem 1.5rem; }
  .hero-logo { width: clamp(150px, 36vw, 200px); }
  .hero-headline { font-size: clamp(2rem, 7vw, 2.8rem); }
  .hero-subtitle { font-size: clamp(1rem, 3.5vw, 1.15rem); line-height: 1.45; margin-bottom: 1.5rem; }
  .hero-buttons { flex-direction: column; align-items: center; gap: 0.75rem; }
  .hero-buttons .btn { width: 100%; max-width: 320px; justify-content: center; }
  .btn-secondary-cta { font-size: 1rem; padding: 0.8rem 2rem; }
  .promo-strip { padding: 2.5rem 0; }
  .promo-strip-inner { flex-direction: column; gap: 0.75rem; }
  .promo-strip-text { font-size: clamp(1.6rem, 5vw, 2rem); }
  .promo-strip-price { font-size: clamp(2.2rem, 8vw, 3rem); }
  .promo-strip-emoji { font-size: 2rem; }
  .promo-block { padding: 3rem 0; }
  .promo-block-title { font-size: clamp(2.2rem, 7vw, 3rem); letter-spacing: 0.08em; }
  .promo-block-sub { font-size: 1rem; margin: 0.75rem 0 1.5rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .location-grid { gap: 2rem; }
  .map-card { min-height: 380px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .whatsapp-float { width: 54px; height: 54px; bottom: 1.5rem; right: 1.5rem; font-size: 1.5rem; }
  .lightbox-prev, .lightbox-next { width: 40px; height: 40px; font-size: 1.5rem; }
  .lightbox-prev { left: 0.5rem; } .lightbox-next { right: 0.5rem; }
  .lightbox-close { top: 1rem; right: 1rem; width: 40px; height: 40px; font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .section { padding: 2.5rem 0; }
  .container { padding: 0 1.25rem; }
  .section-header { margin-bottom: 2rem; }
  .section-title { font-size: clamp(2rem, 8vw, 2.5rem); }

  /* Hero — smaller logo, bigger text, button hierarchy */
  .hero-content { padding: 2.5rem 1rem 1.25rem; }
  .hero-logo { width: clamp(120px, 38vw, 160px); margin-bottom: 0.75rem; padding: 0.4rem; }
  .hero-headline { font-size: clamp(1.7rem, 7.5vw, 2.2rem); letter-spacing: 0.02em; margin-bottom: 0.5rem; }
  .hero-subtitle { font-size: clamp(0.95rem, 4vw, 1.1rem); line-height: 1.4; margin-bottom: 1.25rem; }
  .hero-buttons { gap: 0.6rem; }
  .hero-buttons .btn { max-width: none; padding: 0.8rem 1.5rem; font-size: 1rem; }
  .btn-secondary-cta { font-size: 0.9rem !important; padding: 0.7rem 1.5rem !important; border-width: 1.5px; }
  .hero-promo { font-size: 0.75rem; padding: 0.5rem 1rem; margin-top: 1.25rem; }

  /* About — wider card, better line-height */
  .about { padding: 2.5rem 0; }
  .about-card { padding: 2rem 1.25rem; }
  .about-text { font-size: 0.95rem; line-height: 1.85; }

  /* Promo strip — banner compact */
  .promo-strip { padding: 2rem 0; }
  .promo-strip-text { font-size: clamp(1.3rem, 5vw, 1.6rem); }
  .promo-strip-price { font-size: clamp(2rem, 9vw, 2.5rem); }
  .promo-strip-emoji { font-size: 1.6rem; }
  .btn-promo-strip { font-size: 1rem; padding: 0.7rem 2rem; }

  /* Menu — bigger text, 4:3 images, single column */
  .menu { padding: 2.5rem 0; }
  .menu-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .menu-card-body { padding: 1.2rem 1.2rem 0; }
  .menu-card-body h3 { font-size: 1.3rem; }
  .menu-card-body p { font-size: 0.95rem; line-height: 1.55; }
  .menu-card-footer { padding: 0.8rem 1.2rem 1rem; }
  .menu-card-price { font-size: 1.25rem; }
  .menu-cta { margin-top: 1.75rem; }
  .menu-cta .btn { font-size: 1rem; padding: 0.8rem 1.8rem; }

  /* Black promo — compact */
  .promo-block { padding: 2.5rem 0; }
  .promo-block-title { font-size: clamp(1.8rem, 8vw, 2.4rem); letter-spacing: 0.06em; }
  .promo-block-sub { font-size: 0.9rem; margin: 0.5rem 0 1.25rem; }
  .promo-block .btn { font-size: 1rem; padding: 0.75rem 1.8rem; }

  /* Gallery — single column, consistent gap */
  .gallery { padding: 2.5rem 0; }
  .gallery-grid { grid-template-columns: 1fr; max-width: 400px; gap: 1.5rem; }

  /* Location — compact, small map */
  .location { padding: 2.5rem 0; }
  .info-card { padding: 1.25rem; }
  .info-icon { width: 40px; height: 40px; font-size: 1rem; }
  .info-text h3 { font-size: 1rem; }
  .info-text p { font-size: 0.85rem; }
  .location-map { min-height: 0; }
  .map-card { min-height: 280px; }
  .btn-maps { font-size: 0.8rem; padding: 0.5rem 1.2rem; }

  /* Footer — centered, compact */
  .footer { padding: 2.5rem 0 1.25rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { text-align: center; }
  .footer-brand p { font-size: 0.8rem; max-width: 280px; margin: 0 auto; }
  .footer-logo-img { margin: 0 auto 0.75rem; width: 90px; }
  .footer-social { justify-content: center; }
  .footer-links { text-align: center; }
  .footer-links h4 { font-size: 1rem; }
  .footer-links a { font-size: 0.85rem; }
  .footer-bottom { font-size: 0.7rem; padding-top: 1rem; }

  .whatsapp-float { width: 50px; height: 50px; bottom: 1rem; right: 1rem; font-size: 1.3rem; }
}
