.home-page {
  min-height: 100vh;
  padding: 16px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.96), rgba(242, 244, 247, 0.98)),
    linear-gradient(180deg, #f7f8fb 0%, #edf1f5 100%);
}

.home-stack {
  width: min(100%, 760px);
  display: grid;
  gap: 3.4rem;
}

.home-card {
  padding: clamp(1.35rem, 2.4vw, 2rem);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  display: grid;
  gap: 1.15rem;
  justify-items: center;
}

.home-logo {
  width: min(30vw, 190px);
  height: auto;
  display: block;
}

.home-actions {
  width: 100%;
  display: grid;
  gap: 0.85rem;
}

.home-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 800;
  text-align: center;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.home-link:hover {
  transform: translateY(-1px);
}

.home-link--outline {
  border: 3px solid #f21d17;
  background: #f21d17;
  color: #fff;
}

.home-link--solid {
  background: #f21d17;
  color: #fff;
  box-shadow: 0 10px 24px rgba(242, 29, 23, 0.18);
}

.home-schedule-trigger {
  appearance: none;
  width: 100%;
  cursor: pointer;
  border: 3px solid #f21d17;
}

.schedule-modal[hidden] {
  display: none;
}

.schedule-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 18px;
}

.schedule-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(6px);
}

.schedule-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  padding: 1.35rem 1.2rem 1.2rem;
  border-radius: 28px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98)),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.75);
}

.schedule-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: #f21d17;
  color: #fff;
  cursor: pointer;
}

.schedule-modal__close span {
  font-size: 1.8rem;
  line-height: 1;
}

.schedule-modal__title {
  margin: 0;
  color: #111827;
  font-size: clamp(1.7rem, 4vw, 2.2rem);
  line-height: 1;
}

.schedule-modal__list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.15rem;
}

.schedule-modal__list p {
  margin: 0;
  padding: 1rem 1rem 0.95rem;
  border-radius: 22px;
  background: #f21d17;
  border: 1px solid #f21d17;
  color: #fff;
}

.schedule-modal__list strong,
.schedule-modal__list span {
  display: block;
}

.schedule-modal__list strong {
  font-size: 1rem;
  margin-bottom: 0.22rem;
}

.schedule-modal__list span {
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.98rem;
  line-height: 1.45;
}

.home-footer {
  width: 100%;
  display: grid;
  gap: 0.45rem;
  justify-items: center;
  margin-top: 2.4rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.8rem;
  padding-top: 0;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  min-width: 56px;
  padding: 0;
  border-radius: 16px;
  color: #f21d17;
  background: transparent;
}

.social-link svg {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

.social-link[aria-label*="WhatsApp"] svg {
  transform: scale(0.9);
  transform-origin: center;
}

.home-credit {
  margin: 0;
  text-align: center;
  color: #000;
  font-size: 1.1rem;
  font-weight: 700;
  background: transparent;
  width: fit-content;
  padding: 0;
}

.home-credit a {
  color: #f21d17;
  text-decoration: none;
}

.menu-images-page {
  width: 100%;
  min-height: 100vh;
  padding: 16px 16px 24px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.96), rgba(242, 244, 247, 0.98)),
    linear-gradient(180deg, #f7f8fb 0%, #edf1f5 100%);
}

.menu-backbar {
  width: min(100%, 920px);
  margin: 0 auto 14px;
  position: sticky;
  top: 12px;
  z-index: 10;
}

.menu-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #f21d17;
  font-size: 0.98rem;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.menu-back-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.12);
}

.menu-back-link span[aria-hidden="true"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.4rem;
  font-size: 1.85rem;
  font-weight: 900;
  line-height: 1;
}

.menu-images-shell {
  width: min(100%, 920px);
  margin: 0 auto;
  padding: 0;
}

.menu-image-card {
  margin: 0;
}

.menu-image {
  display: block;
  width: 100%;
  height: auto;
}

.menu-empty {
  padding: 2rem 1rem;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 720px) {
  .home-page {
    padding: 12px;
  }

  .home-stack {
    gap: 1.8rem;
  }

  .home-card {
    border-radius: 22px;
    gap: 0.95rem;
  }

  .home-logo {
    width: min(42vw, 180px);
  }

  .home-link {
    min-height: 60px;
  }

  .home-footer {
    gap: 0.35rem;
    margin-top: 1.5rem;
  }

  .social-links {
    gap: 1.3rem;
    padding-top: 0;
  }

  .social-link svg {
    width: 44px;
    height: 44px;
  }

  .social-link[aria-label*="WhatsApp"] svg {
    transform: scale(0.9);
  }

  .schedule-modal {
    padding: 14px;
  }

  .schedule-modal__panel {
    padding: 1.2rem 1rem 1rem;
    border-radius: 24px;
  }

  .schedule-modal__list p {
    padding: 0.95rem 0.9rem;
  }

  .schedule-modal__list strong {
    font-size: 0.96rem;
  }

  .schedule-modal__list span {
    font-size: 0.92rem;
  }

  .menu-images-shell {
    width: 100%;
  }

  .menu-images-page {
    padding: 12px 12px 20px;
  }

  .menu-backbar {
    margin-bottom: 12px;
    top: 8px;
  }

  .menu-back-link {
    min-height: 44px;
    padding: 0.65rem 0.9rem;
  }
}
