:root {
  --black: #060303;
  --charcoal: #140d0b;
  --panel: #221511;
  --text: #ffffff;
  --muted: #ead7c6;
  --red: #ff2a1f;
  --deep-red: #7a0500;
  --orange: #ff7a18;
  --yellow: #ffd13b;
  --green: #24d36b;
  --ember: #ff4f00;
  --sauce: #b80c00;
  --cream: #fff1c7;
  --line: rgba(255, 255, 255, 0.16);
  --shadow: 0 28px 78px rgba(0, 0, 0, 0.52);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 16% 8%, rgba(255, 209, 59, 0.18), transparent 25rem),
    radial-gradient(circle at 76% 12%, rgba(255, 42, 31, 0.34), transparent 28rem),
    radial-gradient(circle at 48% 78%, rgba(255, 122, 24, 0.16), transparent 30rem),
    linear-gradient(140deg, #050202 0%, #1b0f0b 42%, #070404 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 209, 59, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 42, 31, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
}

a {
  color: inherit;
  text-decoration: none;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 5vw;
  background:
    linear-gradient(90deg, rgba(122, 5, 0, 0.58), rgba(8, 8, 8, 0.9)),
    rgba(8, 8, 8, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.brand img {
  width: 58px;
  height: 48px;
  object-fit: contain;
}

nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-weight: 800;
}

nav a:hover {
  color: var(--yellow);
}

.nav-cta,
.primary-btn,
.secondary-btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

.nav-cta,
.primary-btn {
  color: #051109;
  background:
    linear-gradient(135deg, #67ff9a, var(--green) 58%, #16a853);
  box-shadow: 0 12px 30px rgba(36, 211, 107, 0.32);
}

.nav-cta {
  padding: 0 18px;
}

.primary-btn,
.secondary-btn {
  padding: 0 24px;
}

.secondary-btn {
  color: var(--yellow);
  border: 2px solid var(--yellow);
  background: rgba(255, 209, 59, 0.08);
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: 44px;
  padding: 48px 5vw 38px;
  overflow: hidden;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow,
.section-heading p {
  margin: 0 0 10px;
  color: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 10px;
  font-size: clamp(3.2rem, 7vw, 6.9rem);
  line-height: 0.92;
  text-transform: uppercase;
  text-shadow: 5px 6px 0 var(--deep-red);
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 20px;
  font-size: 1.7rem;
  text-transform: uppercase;
}

.tagline {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.35rem;
  line-height: 1.45;
}

.brand-slogan {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 22px;
  padding: 10px 15px;
  border: 2px solid rgba(255, 209, 59, 0.88);
  border-radius: 999px;
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(255, 42, 31, 0.95), rgba(255, 122, 24, 0.82)),
    var(--red);
  box-shadow: 0 16px 38px rgba(255, 79, 0, 0.28);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.brand-slogan::before,
.brand-slogan::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 16px rgba(255, 209, 59, 0.9);
}

.flavor-claim {
  display: grid;
  max-width: 640px;
  gap: 8px;
  margin: 24px 0;
  padding: 20px 22px;
  border: 2px solid rgba(255, 212, 0, 0.86);
  border-left: 8px solid var(--red);
  border-radius: 8px;
  background:
    radial-gradient(circle at 94% 12%, rgba(255, 209, 59, 0.22), transparent 9rem),
    linear-gradient(90deg, rgba(255, 42, 31, 0.32), rgba(255, 122, 24, 0.14)),
    rgba(255, 255, 255, 0.07);
  box-shadow: 0 18px 44px rgba(255, 42, 31, 0.22);
}

.flavor-claim span,
.flavor-claim strong,
.flavor-claim small {
  display: block;
}

.flavor-claim span {
  color: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
}

.flavor-claim strong {
  font-size: clamp(1.45rem, 2.6vw, 2.25rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.flavor-claim small {
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.35;
}

.notice {
  display: flex;
  max-width: 620px;
  align-items: center;
  gap: 18px;
  margin: 28px 0;
  padding: 18px 20px;
  border: 2px solid var(--yellow);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 209, 59, 0.14), rgba(255, 42, 31, 0.08)),
    rgba(255, 212, 0, 0.09);
}

.notice strong {
  color: var(--yellow);
  font-size: 1.12rem;
  text-transform: uppercase;
  white-space: nowrap;
}

.notice span {
  color: var(--muted);
  line-height: 1.35;
}

.rush-panel {
  display: grid;
  max-width: 660px;
  gap: 14px;
  margin: 0 0 24px;
  padding: 18px;
  border: 2px solid rgba(255, 42, 31, 0.86);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 14%, rgba(255, 209, 59, 0.28), transparent 9rem),
    linear-gradient(135deg, rgba(122, 5, 0, 0.9), rgba(255, 79, 0, 0.28)),
    rgba(8, 8, 8, 0.78);
  box-shadow: 0 20px 52px rgba(255, 42, 31, 0.24);
}

.rush-panel > div {
  display: grid;
  gap: 5px;
}

.rush-panel span {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  color: #220800;
  background: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 0 24px rgba(255, 209, 59, 0.28);
}

.rush-panel strong {
  font-size: clamp(1.25rem, 2.2vw, 1.85rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.rush-panel ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rush-panel li {
  padding: 8px 10px;
  border: 1px solid rgba(255, 209, 59, 0.42);
  border-radius: 999px;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 430px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 92%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    conic-gradient(from 14deg, var(--red), var(--orange), var(--yellow), var(--red)),
    var(--orange);
  filter: blur(1px);
  opacity: 0.85;
}

.hero-visual img {
  position: relative;
  width: min(520px, 92%);
  filter: drop-shadow(0 24px 32px rgba(0, 0, 0, 0.62));
}

.food-hero::before {
  width: min(560px, 94%);
  border-radius: 8px;
  transform: rotate(-3deg);
}

.food-hero img {
  width: min(560px, 96%);
  aspect-ratio: 1;
  border: 3px solid rgba(255, 212, 0, 0.9);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.quick-info,
.menu-section,
.flavors,
.flyer-section,
.pickup-band,
footer {
  position: relative;
  z-index: 1;
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 0 5vw 64px;
}

.quick-info article {
  position: relative;
  overflow: hidden;
  min-height: 112px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(255, 209, 59, 0.1), rgba(255, 42, 31, 0.08)),
    rgba(255, 255, 255, 0.06);
}

.quick-info article::after {
  content: "YA";
  position: absolute;
  right: -4px;
  bottom: -18px;
  color: rgba(255, 209, 59, 0.08);
  font-size: 5.5rem;
  font-weight: 900;
  line-height: 1;
}

.quick-info span {
  display: block;
  margin-bottom: 8px;
  color: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
}

.quick-info strong {
  font-size: 1.15rem;
  line-height: 1.3;
}

.menu-section,
.flyer-section {
  padding: 72px 5vw;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 122, 24, 0.14), transparent 22rem),
    linear-gradient(180deg, rgba(0, 0, 0, 0.32), rgba(122, 5, 0, 0.16)),
    rgba(0, 0, 0, 0.38);
}

.packages-section {
  background:
    radial-gradient(circle at 80% 8%, rgba(255, 209, 59, 0.16), transparent 20rem),
    linear-gradient(180deg, rgba(184, 12, 0, 0.3), rgba(20, 20, 20, 0.66)),
    rgba(20, 20, 20, 0.52);
}

.packages-heading {
  max-width: 1120px;
}

.packages-heading span {
  display: block;
  max-width: 680px;
  color: var(--muted);
  font-size: 1.13rem;
  font-weight: 800;
  line-height: 1.4;
}

.package-order {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.package-order p {
  margin: 0;
  color: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.package-card {
  position: relative;
  display: grid;
  min-height: 190px;
  align-content: space-between;
  gap: 12px;
  padding: 20px;
  border: 2px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 209, 59, 0.14), transparent 10rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 79, 0, 0.04)),
    var(--panel);
  color: var(--text);
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.package-card:hover,
.package-card.selected,
.package-card:has(input:checked) {
  border-color: var(--yellow);
  box-shadow: 0 16px 38px rgba(255, 138, 0, 0.2);
  transform: translateY(-2px);
}

.package-card.featured {
  border-color: rgba(225, 13, 13, 0.78);
  background:
    radial-gradient(circle at 92% 12%, rgba(255, 209, 59, 0.18), transparent 9rem),
    linear-gradient(180deg, rgba(255, 42, 31, 0.22), rgba(255, 122, 24, 0.08)),
    rgba(255, 255, 255, 0.035);
}

.package-card.recommended-package {
  border-color: var(--yellow);
  background:
    linear-gradient(180deg, rgba(255, 212, 0, 0.18), rgba(225, 13, 13, 0.08)),
    var(--panel);
  box-shadow: 0 18px 44px rgba(255, 138, 0, 0.18);
}

.package-card.top-package {
  border-color: var(--green);
  background:
    linear-gradient(180deg, rgba(33, 192, 99, 0.18), rgba(255, 138, 0, 0.08)),
    var(--panel);
  box-shadow: 0 18px 44px rgba(33, 192, 99, 0.18);
}

.package-card.meatless-package {
  border-color: rgba(33, 192, 99, 0.72);
}

.package-badge {
  justify-self: start;
  padding: 7px 10px;
  border-radius: 999px;
  color: #051109;
  background: var(--yellow);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.package-badge.top-badge {
  color: #041107;
  background: var(--green);
}

.package-badge.meatless-badge {
  color: #041107;
  background: var(--green);
}

.package-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.package-card::after {
  content: "Seleccionar";
  justify-self: start;
  padding: 7px 10px;
  border: 1px solid rgba(255, 212, 0, 0.65);
  border-radius: 999px;
  color: var(--yellow);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.package-card.selected::after,
.package-card:has(input:checked)::after {
  content: "Seleccionado";
  color: #051109;
  background: var(--green);
  border-color: var(--green);
}

.package-card:focus-within {
  outline: 3px solid rgba(255, 212, 0, 0.28);
  outline-offset: 3px;
}

.package-name,
.package-detail {
  display: block;
}

.package-name {
  color: var(--text);
  font-size: 1.13rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.package-detail {
  color: var(--muted);
  line-height: 1.3;
}

.package-card strong {
  color: var(--orange);
  font-size: 1.65rem;
  line-height: 1;
}

.package-actions {
  justify-content: center;
  margin-top: 28px;
}

.package-actions .primary-btn {
  min-width: min(100%, 320px);
}

.section-heading {
  max-width: 920px;
  margin-bottom: 30px;
}

.section-heading span {
  display: block;
  max-width: 660px;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.4;
}

.menu-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.menu-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 18px;
  margin-bottom: 24px;
}

.order-spotlight {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(280px, 1fr);
  min-height: 390px;
  overflow: hidden;
  border: 3px solid rgba(255, 212, 0, 0.92);
  border-radius: 8px;
  background:
    radial-gradient(circle at 16% 16%, rgba(255, 212, 0, 0.22), transparent 16rem),
    radial-gradient(circle at 86% 82%, rgba(255, 209, 59, 0.22), transparent 15rem),
    linear-gradient(120deg, rgba(122, 5, 0, 0.98), rgba(255, 79, 0, 0.72)),
    var(--red);
  box-shadow: 0 28px 76px rgba(225, 13, 13, 0.34);
}

.order-spotlight::before {
  content: "La orden que no falla";
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  padding: 9px 12px;
  border-radius: 999px;
  color: #051109;
  background: var(--yellow);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.spotlight-copy {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 34px;
}

.spotlight-kicker {
  margin: 0;
  color: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
}

.spotlight-copy h3 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  line-height: 0.86;
  text-shadow: 4px 5px 0 var(--deep-red);
}

.spotlight-price {
  display: inline-flex;
  width: fit-content;
  align-items: baseline;
  gap: 10px;
  padding: 10px 16px;
  border: 2px solid rgba(255, 212, 0, 0.84);
  border-radius: 8px;
  background: rgba(8, 8, 8, 0.72);
}

.spotlight-price span {
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
}

.spotlight-price strong {
  color: var(--yellow);
  font-size: 2.8rem;
  line-height: 0.92;
}

.spotlight-text {
  max-width: 360px;
  margin: 0;
  color: var(--text);
  font-weight: 800;
  line-height: 1.35;
}

.spotlight-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.spotlight-chips span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.28);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.spotlight-copy .primary-btn {
  justify-self: start;
  margin-top: 4px;
}

.spotlight-photo,
.menu-photo-grid figure {
  position: relative;
  overflow: hidden;
}

.spotlight-photo img,
.menu-photo-grid img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.spotlight-photo img {
  object-position: 50% center;
  transform: scale(1.08);
}

.spotlight-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.54), transparent 44%),
    linear-gradient(0deg, rgba(8, 8, 8, 0.62), transparent 42%);
}

.spotlight-photo span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--yellow);
  background: rgba(8, 8, 8, 0.78);
  font-weight: 900;
  text-transform: uppercase;
}

.menu-photo-grid {
  display: grid;
  gap: 18px;
}

.menu-photo-grid figure {
  min-height: 161px;
  margin: 0;
  border: 2px solid rgba(255, 212, 0, 0.72);
  border-radius: 8px;
  background: var(--panel);
}

.menu-photo-grid img {
  object-position: center;
  transform: scale(1.02);
}

.menu-photo-grid .snack-photo img {
  object-position: center;
  transform: scale(1.02);
}

.menu-photo-grid figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 8px 10px;
  border-radius: 8px;
  color: #051109;
  background: var(--yellow);
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.menu-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--line);
  border-top: 7px solid var(--red);
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 209, 59, 0.1), transparent 9rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 79, 0, 0.035));
  box-shadow: var(--shadow);
}

.menu-card-photo {
  width: calc(100% + 44px);
  height: 150px;
  display: block;
  margin: -22px -22px 18px;
  border-bottom: 2px solid rgba(255, 212, 0, 0.45);
  object-fit: cover;
}

.card-badge {
  display: inline-block;
  margin: -2px 0 12px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #051109;
  background: var(--yellow);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-card.hot .menu-card-photo {
  object-position: center;
}

.menu-card.orange .menu-card-photo {
  object-position: center;
}

.menu-card.yellow .menu-card-photo {
  object-position: center;
}

.menu-card.red .menu-card-photo {
  object-position: center;
}

.menu-card.orange {
  border-top-color: var(--orange);
}

.menu-card.yellow {
  border-top-color: var(--yellow);
}

.menu-card.red {
  border-top-color: var(--deep-red);
}

.menu-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-card li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.18);
  padding-bottom: 10px;
  line-height: 1.25;
}

.menu-card strong {
  color: var(--orange);
  white-space: nowrap;
}

.recommended-item {
  margin: -4px 0;
  padding: 12px;
  border: 2px solid var(--yellow);
  border-radius: 8px;
  background: rgba(255, 212, 0, 0.1);
}

.recommended-item em,
.top-seller-item em {
  display: inline-block;
  margin-left: 6px;
  padding: 4px 7px;
  border-radius: 999px;
  color: #051109;
  background: var(--green);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.top-seller-item {
  margin: -4px 0;
  padding: 12px;
  border: 2px solid var(--yellow);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 212, 0, 0.16), rgba(255, 138, 0, 0.08)),
    rgba(255, 255, 255, 0.04);
}

.flavors {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 36px;
  align-items: start;
  padding: 72px 5vw;
}

.flavor-note {
  max-width: 360px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.4;
}

.flavor-photo-stack {
  position: relative;
  min-height: 520px;
  max-width: 500px;
  margin-top: 28px;
}

.flavor-shot {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 2px solid rgba(255, 212, 0, 0.86);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.48);
}

.flavor-shot img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.flavor-shot figcaption {
  position: absolute;
  z-index: 2;
  padding: 10px 12px;
  border-radius: 8px;
  color: #051109;
  background: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
}

.flavor-shot figcaption strong,
.flavor-shot figcaption span {
  display: block;
}

.flavor-shot figcaption strong {
  font-size: 1.02rem;
}

.flavor-shot figcaption span {
  max-width: 230px;
  margin-top: 3px;
  color: #4a1800;
  font-size: 0.82rem;
  line-height: 1.25;
  text-transform: none;
}

.main-shot {
  width: min(420px, 88%);
  height: 430px;
  clip-path: polygon(0 4%, 100% 0, 96% 94%, 7% 100%);
  transform: rotate(-2.6deg);
}

.main-shot img {
  object-position: 48% center;
  transform: scale(1.04);
}

.main-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, 0.78)),
    radial-gradient(circle at 72% 22%, rgba(255, 212, 0, 0.22), transparent 34%);
}

.main-shot figcaption {
  left: 18px;
  right: 18px;
  bottom: 18px;
}

.sauce-shot,
.secret-shot {
  position: absolute;
}

.sauce-shot {
  right: 0;
  top: 62px;
  width: 210px;
  height: 260px;
  clip-path: polygon(9% 0, 100% 8%, 91% 100%, 0 92%);
  transform: rotate(4deg);
  border-color: var(--red);
}

.sauce-shot img {
  object-position: center;
  transform: scale(1.05);
}

.sauce-shot::after {
  content: "Elige tu golpe de sabor";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--yellow);
  background: rgba(8, 8, 8, 0.78);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.sauce-shot figcaption {
  top: 12px;
  left: 12px;
  right: auto;
  bottom: auto;
  background: var(--red);
  color: var(--text);
  font-size: 0.76rem;
}

.secret-shot {
  right: 26px;
  bottom: 14px;
  width: 158px;
  height: 158px;
  border-color: rgba(225, 13, 13, 0.86);
  border-radius: 50%;
  transform: rotate(10deg);
  box-shadow: 0 18px 38px rgba(225, 13, 13, 0.34);
}

.secret-shot img {
  padding: 18px;
  object-fit: contain;
  background: #ffffff;
}

.secret-shot figcaption {
  left: 50%;
  right: auto;
  bottom: -4px;
  width: 150px;
  transform: translateX(-50%);
  color: var(--text);
  background: var(--deep-red);
  font-size: 0.68rem;
  text-align: center;
}

.flavor-panel {
  display: grid;
  gap: 18px;
}

.flavor-group {
  padding: 22px;
  border: 1px solid var(--line);
  border-top: 7px solid var(--orange);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
}

.flavor-group.special {
  border-top-color: var(--red);
  background:
    linear-gradient(180deg, rgba(225, 13, 13, 0.16), rgba(255, 138, 0, 0.05)),
    rgba(255, 255, 255, 0.035);
}

.flavor-group h3 {
  margin-bottom: 16px;
  color: var(--yellow);
  font-size: 1.25rem;
}

.flavor-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flavor-list li {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px;
  border: 2px solid rgba(255, 212, 0, 0.8);
  border-radius: 8px;
  background: rgba(255, 212, 0, 0.08);
}

.flavor-list strong,
.flavor-list small {
  display: block;
}

.flavor-list strong {
  font-weight: 900;
}

.flavor-list small {
  margin-top: 4px;
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
}

.heat {
  display: flex;
  flex: 0 0 auto;
  gap: 5px;
}

.heat i {
  width: 12px;
  height: 22px;
  border: 1px solid rgba(255, 212, 0, 0.7);
  border-radius: 999px 999px 4px 4px;
  background: rgba(255, 255, 255, 0.08);
}

.heat-1 i:nth-child(-n + 1),
.heat-2 i:nth-child(-n + 2),
.heat-3 i:nth-child(-n + 3),
.heat-4 i:nth-child(-n + 4),
.heat-5 i:nth-child(-n + 5) {
  border-color: var(--orange);
  background: linear-gradient(180deg, var(--yellow), var(--orange) 48%, var(--red));
}

.flyer {
  width: min(940px, 100%);
  display: block;
  margin: 0 auto;
  border: 2px solid var(--yellow);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.pickup-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 70px 5vw;
  padding: 30px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 50%, rgba(255, 209, 59, 0.26), transparent 17rem),
    linear-gradient(90deg, rgba(122, 5, 0, 0.94), rgba(255, 79, 0, 0.88)),
    var(--red);
  box-shadow: 0 24px 68px rgba(255, 42, 31, 0.25);
}

.pickup-band h2 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 3vw, 3.4rem);
}

.pickup-band p {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.no-dine {
  font-weight: 900;
}

.pickup-slogan {
  display: inline-block;
  max-width: 100%;
  margin-top: 10px;
  padding: 8px 12px;
  border: 2px solid rgba(255, 209, 59, 0.86);
  border-radius: 999px;
  color: var(--yellow);
  background: rgba(8, 8, 8, 0.38);
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  padding: 30px 5vw 90px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 50%;
  color: #041107;
  background: var(--green);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  font-weight: 900;
}

@media (max-width: 1020px) {
  .hero,
  .flavors {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 36px;
  }

  .hero-visual {
    min-height: 330px;
  }

  .food-hero img {
    width: min(500px, 96%);
  }

  .menu-showcase,
  .order-spotlight {
    grid-template-columns: 1fr;
  }

  .spotlight-photo {
    min-height: 300px;
  }

  .menu-photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-info {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .topbar {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  nav {
    justify-content: space-between;
  }

  .nav-cta {
    width: 100%;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: 3.4rem;
  }

  .notice,
  .pickup-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .notice strong {
    white-space: normal;
  }

  .rush-panel ul {
    flex-direction: column;
  }

  .rush-panel li {
    width: 100%;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .food-hero::before {
    width: 94%;
  }

  .spotlight-copy {
    padding: 22px;
  }

  .spotlight-copy .primary-btn {
    justify-self: stretch;
  }

  .spotlight-photo {
    min-height: 240px;
  }

  .menu-photo-grid {
    grid-template-columns: 1fr;
  }

  .menu-photo-grid figure {
    min-height: 190px;
  }

  .package-grid {
    grid-template-columns: 1fr;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
  }

  .flavor-list li {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .flavor-photo-stack {
    max-width: 100%;
    min-height: 620px;
  }

  .main-shot {
    width: 100%;
    height: 360px;
  }

  .sauce-shot {
    top: 330px;
    right: auto;
    left: 0;
    width: 58%;
    height: 210px;
  }

  .secret-shot {
    right: 0;
    bottom: 24px;
    width: 132px;
    height: 132px;
  }

  .pickup-band {
    margin: 48px 5vw;
  }
}

@media (max-width: 420px) {
  .brand span {
    font-size: 0.94rem;
  }

  nav {
    gap: 10px;
    font-size: 0.92rem;
  }

  h1 {
    font-size: 3rem;
  }
}
