/* =========================================================
   La Tapatia Food Truck — Sample Two
   Structure replicated from the client reference ("Just Grill It"
   BBQ template) — reskinned in La Tapatia's brand colors.
   ONE continuous light-purple -> pink faded background site-wide
   (no alternating bands). Includes a static front-end cart.
   ========================================================= */

:root {
  /* The single faded backdrop used across the whole site. */
  --bg-top:    #7a2b9d;   /* light purple (top) */
  --bg-mid:    #a8338c;   /* purple-pink blend (middle) */
  --bg-bottom: #d83f7d;   /* pink (bottom) */
  --bg-fade:   linear-gradient(165deg, #7a2b9d 0%, #98318f 34%, #c0397f 68%, #e0497a 100%);

  /* Brand accents (from the truck wrap) */
  --gold:        #f9c823;
  --gold-soft:   #ffe08a;
  --gold-deep:   #e0a90f;
  --teal:        #2bb8ab;
  --orange:      #f0592b;
  --pink:        #ec1e79;

  /* Text on the purple/pink backdrop */
  --on:          #fff4ef;
  --on-soft:     rgba(255, 244, 239, 0.82);
  --on-faint:    rgba(255, 244, 239, 0.58);
  --ink:         #2a0820;
  --white:       #ffffff;

  /* Translucent surfaces that sit on the backdrop (like the reference cards) */
  --card:        rgba(255, 255, 255, 0.07);
  --card-strong: rgba(255, 255, 255, 0.12);
  --line:        rgba(255, 255, 255, 0.16);

  --shadow-sm: 0 8px 22px rgba(40, 6, 36, 0.30);
  --shadow-md: 0 18px 44px rgba(40, 6, 36, 0.40);
  --shadow-lg: 0 30px 70px rgba(40, 6, 36, 0.48);

  --radius:    16px;
  --radius-sm: 10px;
  --radius-lg: 26px;

  --font-display: "Baloo 2", "Trebuchet MS", system-ui, sans-serif;
  --font-body:    "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;

  --maxw:  1180px;
  --topbar-h: 0px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  position: relative;
  isolation: isolate;
  min-height: 100%;
  margin: 0;
  font-family: var(--font-body);
  color: var(--on);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  background: var(--bg-fade);
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 14%, rgba(43, 184, 171, 0.16), transparent 32%),
    radial-gradient(circle at 84% 76%, rgba(240, 89, 43, 0.18), transparent 34%),
    var(--bg-fade);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.04; margin: 0; }

.wrap { width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto; }

.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--gold); color: var(--ink);
  padding: 10px 16px; border-radius: 0 0 12px 12px;
  font-weight: 700; z-index: 300; transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ---------------- Shared decorative bits ---------------- */
.dash { display: block; width: 64px; height: 4px; border-radius: 4px; background: var(--on); opacity: 0.85; margin: 1rem 0; }
.dash--gold { background: var(--gold); }
.tick { display: block; width: 3px; height: 34px; background: var(--gold); margin: 0 auto 0.4rem; border-radius: 3px; }

.section-head { text-align: center; max-width: 640px; margin: 0 auto clamp(2rem, 4vw, 3rem); }
.section-title {
  font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 800; color: var(--white);
  text-transform: lowercase; letter-spacing: -0.01em;
}
.section-title--left { text-transform: capitalize; }
.section-sub { margin: 0.8rem auto 0; color: var(--on-soft); max-width: 52ch; }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  padding: 0.8rem 1.6rem; border-radius: 4px; border: 2px solid transparent;
  cursor: pointer; transition: transform 0.18s, box-shadow 0.18s, background 0.18s, color 0.18s;
}
.btn--gold { background: var(--gold); color: var(--ink); box-shadow: var(--shadow-sm); }
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(249,200,35,0.35); }
.btn--ghost { background: transparent; color: var(--on); border-color: rgba(255,255,255,0.6); }
.btn--ghost:hover { background: rgba(255,255,255,0.12); transform: translateY(-3px); }

/* ============================================================
   HERO  (centered logo + nav, big left title, right truck)
   ============================================================ */
.hero {
  position: relative; min-height: 100svh;
  padding: clamp(1rem, 1.8vw, 1.6rem) 0 clamp(3rem, 6vw, 5rem);
  overflow: hidden; display: grid; align-content: start;
}

.topbar {
  position: relative; z-index: 20;
  display: flex; flex-direction: column; align-items: center;
  min-height: auto; padding: 0 1.25rem;
  background: transparent; border-bottom: 0; box-shadow: none;
}
body.is-scrolled .topbar { box-shadow: none; }
.topbar__logo { width: 92px; height: 92px; object-fit: contain; border-radius: 50%; filter: drop-shadow(0 8px 20px rgba(40,6,36,0.4)); }
.topbar__nav-row {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  width: 100%; margin-top: 0.9rem;
}
.topnav { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.4rem 0.6rem; }
.topnav__link {
  color: var(--on); font-weight: 600; font-size: 0.95rem; letter-spacing: 0.04em;
  text-transform: uppercase; padding: 0.4rem 0.7rem; border-radius: 4px;
  transition: color 0.18s, background 0.18s;
}
.topnav__link:hover, .topnav__link.is-active { color: var(--gold); }
.topnav__toggle { display: none; position: absolute; right: 1.25rem; top: 1.6rem; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.topnav__toggle span { width: 26px; height: 3px; border-radius: 3px; background: var(--gold); transition: transform 0.25s, opacity 0.25s; }
.topnav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.topnav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.topnav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.cart-nav {
  display: inline-flex; align-items: center; gap: 0.5rem;
  min-height: 44px; padding: 0.6rem 1rem;
  border: 2px solid var(--gold); border-radius: 999px;
  background: var(--gold); color: var(--ink);
  font-family: var(--font-display); font-weight: 800; font-size: 1rem; cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s, background 0.18s, color 0.18s, box-shadow 0.18s;
}
.cart-nav:hover { transform: translateY(-2px); background: var(--ink); color: var(--gold); box-shadow: var(--shadow-md); }
.cart-count {
  min-width: 24px; height: 24px; display: grid; place-items: center;
  border-radius: 999px; background: var(--ink); color: var(--gold);
  font-size: 0.8rem; font-weight: 800; line-height: 1;
}
.cart-nav:hover .cart-count { background: var(--gold); color: var(--ink); }

/* Language switch — outlined pill next to the cart button. The label
   shows the language you'll switch TO (EN while in Spanish, ES while in
   English). A small globe glyph reinforces the meaning. */
.lang-toggle {
  display: inline-flex; align-items: center; gap: 0.4rem;
  min-height: 44px; padding: 0.55rem 0.9rem;
  border: 2px solid rgba(255,255,255,0.5); border-radius: 999px;
  background: rgba(255,255,255,0.08); color: var(--on);
  font-family: var(--font-display); font-weight: 800; font-size: 0.9rem;
  letter-spacing: 0.06em; cursor: pointer;
  transition: transform 0.18s, background 0.18s, color 0.18s, border-color 0.18s;
}
.lang-toggle::before {
  content: ""; width: 16px; height: 16px; flex: none;
  background: currentColor;
  /* globe icon (mask so it inherits currentColor) */
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm6.9 6h-2.6a15.7 15.7 0 0 0-1.3-3.4A8 8 0 0 1 18.9 8ZM12 4c.8 1 1.5 2.4 1.9 4h-3.8c.4-1.6 1.1-3 1.9-4ZM4.3 14a8 8 0 0 1 0-4h3a17.6 17.6 0 0 0 0 4Zm.8 2h2.6a15.7 15.7 0 0 0 1.3 3.4A8 8 0 0 1 5.1 16Zm2.6-8H5.1a8 8 0 0 1 3.9-3.4A15.7 15.7 0 0 0 7.7 8ZM12 20c-.8-1-1.5-2.4-1.9-4h3.8c-.4 1.6-1.1 3-1.9 4Zm2.3-6H9.7a15.6 15.6 0 0 1 0-4h4.6a15.6 15.6 0 0 1 0 4Zm.7 5.4a15.7 15.7 0 0 0 1.3-3.4h2.6a8 8 0 0 1-3.9 3.4Zm1.7-5.4a17.6 17.6 0 0 0 0-4h3a8 8 0 0 1 0 4Z'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm6.9 6h-2.6a15.7 15.7 0 0 0-1.3-3.4A8 8 0 0 1 18.9 8ZM12 4c.8 1 1.5 2.4 1.9 4h-3.8c.4-1.6 1.1-3 1.9-4ZM4.3 14a8 8 0 0 1 0-4h3a17.6 17.6 0 0 0 0 4Zm.8 2h2.6a15.7 15.7 0 0 0 1.3 3.4A8 8 0 0 1 5.1 16Zm2.6-8H5.1a8 8 0 0 1 3.9-3.4A15.7 15.7 0 0 0 7.7 8ZM12 20c-.8-1-1.5-2.4-1.9-4h3.8c-.4 1.6-1.1 3-1.9 4Zm2.3-6H9.7a15.6 15.6 0 0 1 0-4h4.6a15.6 15.6 0 0 1 0 4Zm.7 5.4a15.7 15.7 0 0 0 1.3-3.4h2.6a8 8 0 0 1-3.9 3.4Zm1.7-5.4a17.6 17.6 0 0 0 0-4h3a8 8 0 0 1 0 4Z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.lang-toggle:hover { transform: translateY(-2px); background: var(--gold); color: var(--ink); border-color: var(--gold); }

.hero__inner {
  width: min(100% - 2.5rem, 1320px); margin: clamp(2.2rem, 5vh, 4rem) auto 0;
  display: grid; grid-template-columns: minmax(300px, 0.72fr) minmax(520px, 1.28fr); align-items: center;
  gap: clamp(1rem, 3vw, 3rem);
}
.hero__title {
  color: var(--white); font-weight: 800;
  font-size: clamp(5rem, 8vw, 8.3rem); text-transform: lowercase; line-height: 0.92;
  text-shadow: 0 8px 36px rgba(40,6,36,0.4);
}
.hero__rule { display: block; width: 70px; height: 5px; background: var(--white); border-radius: 5px; margin: 1.4rem 0 1.3rem; }
.hero__lead { color: var(--on-soft); font-size: clamp(1rem, 1.5vw, 1.15rem); max-width: 32ch; margin: 0 0 1.6rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.hero__truck { position: relative; justify-self: end; width: min(100%, 780px); }
.hero__truck-img { width: 100%; filter: drop-shadow(0 42px 58px rgba(40,6,36,0.50)); }

/* "We Are Here" floating badge, placed low near the truck's rear. */
.here-badge {
  position: absolute; right: clamp(1rem, 6vw, 4.5rem); bottom: clamp(5rem, 7vw, 9.5rem);
  width: 112px; height: 112px; display: grid; place-items: center; z-index: 20;
}
.here-badge__ring {
  position: absolute; inset: 0; border-radius: 50%;
  background: var(--gold); color: var(--ink);
  font-family: var(--font-display); font-weight: 800; font-size: 0.68rem; letter-spacing: 0.06em;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.05rem; text-align: center; padding: 12px; line-height: 0.95;
  box-shadow: var(--shadow-md); border: 3px solid var(--white);
}
.here-badge__ring strong { display: block; font-size: 1.24rem; line-height: 0.92; letter-spacing: 0.02em; }
.here-badge__stars { display: block; font-size: 0.72rem; letter-spacing: 0.35em; margin-right: -0.35em; }

/* ============================================================
   DAILY SPECIALS
   Feature panel with promo tiles on the La Tapatia purple/pink base.
   Two opt-in skins on the section element:
   - .specials--fiesta : evergreen papel-picado / marigold look (default)
   - .specials--july4  : red-white-blue holiday takeover (kept for reuse)
   ============================================================ */
:root {
  --usa-red:   #e23b4b;
  --usa-red-2: #c81f34;
  --usa-blue:  #3f7bff;
  --usa-white: #ffffff;
}

.specials { position: relative; padding: clamp(3rem, 7vw, 6rem) 0; }
.specials__inner {
  display: grid; grid-template-columns: minmax(240px, 0.82fr) minmax(0, 2.2fr); align-items: stretch;
  gap: clamp(1rem, 2.2vw, 1.7rem);
  padding: clamp(1rem, 2.6vw, 2rem);
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.16), rgba(255,255,255,0.05)),
    rgba(42, 8, 32, 0.18);
  box-shadow: 0 28px 70px rgba(40,6,36,0.32), inset 0 1px rgba(255,255,255,0.16);
  backdrop-filter: blur(4px);
}
.specials__head {
  position: relative;
  display: grid;
  align-content: center;
  padding: clamp(1.35rem, 3vw, 2.4rem);
  border-radius: 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 18%, rgba(255,255,255,0.16), transparent 34%),
    linear-gradient(150deg, rgba(35, 73, 176, 0.72), rgba(159, 44, 139, 0.52) 58%, rgba(226, 59, 75, 0.58));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18);
}
.specials__head::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.14) 0 12%, transparent 12% 24%, rgba(255,255,255,0.08) 24% 36%, transparent 36% 100%);
  opacity: 0.55;
}
.specials__head::after {
  content: "";
  position: absolute;
  right: -48px;
  bottom: -64px;
  width: 168px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 18px solid rgba(255,255,255,0.12);
  box-shadow:
    0 0 0 18px rgba(226,59,75,0.18),
    0 0 0 36px rgba(63,123,255,0.15);
}
.specials__head > * { position: relative; z-index: 1; }
.specials__title {
  font-size: clamp(2.25rem, 5vw, 4.1rem);
  font-weight: 800;
  color: var(--white);
  text-transform: lowercase;
  text-shadow: 0 10px 28px rgba(40,6,36,0.42);
}
/* Spanish words run longer ("especiales") — size down so the longest
   word still fits inside the head panel. */
html[lang="es"] .specials__title { font-size: clamp(1.9rem, 3.4vw, 2.75rem); }
.specials__sub { color: rgba(255,255,255,0.88); margin-top: 1rem; font-size: 1rem; max-width: 28ch; }
.specials__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(0.85rem, 1.6vw, 1.25rem); }
/* Full-bleed photo tile: the image covers the whole card, the dish name
   sits on a bottom gradient scrim, price is a rotated gold sticker and a
   numbered chip marks the corner — no dead space at any tile height. */
.special {
  position: relative;
  overflow: hidden;
  min-height: clamp(320px, 30vw, 460px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.06)),
    rgba(255,255,255,0.08);
  box-shadow: 0 18px 38px rgba(40,6,36,0.26), inset 0 1px rgba(255,255,255,0.16);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.special:nth-child(1) { transform: rotate(-1deg); }
.special:nth-child(2) { transform: translateY(10px); }
.special:nth-child(3) { transform: rotate(1deg); }
.special::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  z-index: 3;
  background: linear-gradient(90deg, var(--gold) 0 33%, var(--pink) 33% 66%, var(--teal) 66% 100%);
}
.special:hover { transform: translateY(-6px) scale(1.015); border-color: rgba(255,255,255,0.42); box-shadow: 0 24px 48px rgba(40,6,36,0.34); }
.special:nth-child(1):hover,
.special:nth-child(3):hover { transform: translateY(-6px) scale(1.015); }
.special__media {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.08);
}
.special__img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.06) contrast(1.03);
  transition: transform 0.35s ease;
}
.special:hover .special__img { transform: scale(1.05); }
/* if the photo fails, the letter fallback fills the tile instead */
.special .img-fallback {
  width: 100%; height: 100%; border-radius: 0;
  font-size: 3rem; color: var(--white);
  background: linear-gradient(160deg, #8a2f9e, #d83f7d);
}
.special__num {
  position: absolute; top: 0.95rem; left: 0.9rem; z-index: 2;
  padding: 0.16rem 0.6rem; border-radius: 999px;
  background: rgba(42,8,32,0.38); color: rgba(255,255,255,0.92);
  font-family: var(--font-display); font-weight: 800; font-size: 0.74rem;
  letter-spacing: 0.14em; line-height: 1.5;
  backdrop-filter: blur(6px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.28);
}
.special__price {
  position: absolute; top: 0.9rem; right: 0.85rem; z-index: 2;
  margin: 0; padding: 0.3rem 0.78rem;
  border-radius: 999px;
  transform: rotate(3deg);
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--ink);
  font-family: var(--font-display); font-weight: 800; font-size: 1.02rem; line-height: 1.3;
  box-shadow: 0 8px 18px rgba(40,6,36,0.35), inset 0 0 0 1.5px rgba(255,255,255,0.55);
}
.special__price--ask {
  background: rgba(42,8,32,0.72);
  color: var(--gold-soft);
  font-size: 0.78rem; font-weight: 700;
  box-shadow: 0 8px 18px rgba(40,6,36,0.35), inset 0 0 0 1px rgba(255,255,255,0.30);
}
.special__scrim {
  position: absolute; inset: auto 0 0; z-index: 1;
  padding: 2.8rem 1.1rem 1rem;
  background: linear-gradient(180deg, rgba(42,8,32,0) 0%, rgba(42,8,32,0.55) 48%, rgba(42,8,32,0.92) 100%);
}
.special__tick { display: block; width: 42px; height: 3px; background: var(--gold); margin: 0 0 0.55rem; border-radius: 999px; }
.special__name { margin: 0; font-size: clamp(1.15rem, 1.6vw, 1.4rem); font-weight: 800; color: var(--white); text-transform: lowercase; text-shadow: 0 6px 20px rgba(40,6,36,0.55); line-height: 1.15; }
.specials__cta { margin-top: 1.4rem; width: fit-content; }

/* --- 4th of July flourishes (opt-in via .specials--july4) --- */
.specials--july4 {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 16%, rgba(63,123,255,0.36), transparent 30%),
    radial-gradient(circle at 86% 20%, rgba(226,59,75,0.34), transparent 32%),
    radial-gradient(circle at 50% 110%, rgba(255,255,255,0.13), transparent 38%),
    linear-gradient(145deg, rgba(34, 66, 174, 0.22), rgba(226, 59, 75, 0.18));
}
.specials--july4::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
  z-index: 2;
  background: repeating-linear-gradient(90deg,
    var(--usa-red) 0 42px, var(--usa-white) 42px 84px, var(--usa-blue) 84px 126px);
  background-size: 252px 100%;
  box-shadow: 0 3px 16px rgba(0,0,0,0.26);
}
.specials--july4::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -120px;
  width: min(70vw, 760px);
  aspect-ratio: 1;
  transform: translateX(-50%);
  border-radius: 50%;
  background:
    repeating-conic-gradient(from -9deg,
      rgba(226,59,75,0.34) 0deg 8deg,
      rgba(255,255,255,0.18) 8deg 16deg,
      rgba(63,123,255,0.30) 16deg 24deg,
      transparent 24deg 36deg);
  -webkit-mask: radial-gradient(circle, transparent 0 48%, #000 49% 52%, transparent 53%);
          mask: radial-gradient(circle, transparent 0 48%, #000 49% 52%, transparent 53%);
  opacity: 0.55;
  pointer-events: none;
}
.specials--july4 .specials__flag {
  display: inline-block;
  width: fit-content;
  margin-bottom: 1rem;
  padding: 0.42rem 1.05rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--usa-white);
  position: relative;
  background: linear-gradient(90deg, var(--usa-red), #fb695f 48%, var(--usa-blue));
  box-shadow: 0 12px 24px rgba(63,123,255,0.34), inset 0 0 0 1.5px rgba(255,255,255,0.7);
}
.specials--july4 .specials__flag::before { content: "★ "; }
.specials--july4 .specials__flag::after  { content: " ★"; }

.specials--july4 .special::before { background: linear-gradient(90deg, var(--usa-red) 0 33%, var(--usa-white) 33% 66%, var(--usa-blue) 66% 100%); }
.specials--july4 .special:nth-child(1) { background: linear-gradient(180deg, rgba(63,123,255,0.24), rgba(255,255,255,0.06)); }
.specials--july4 .special:nth-child(2) { background: linear-gradient(180deg, rgba(255,255,255,0.19), rgba(255,255,255,0.06)); }
.specials--july4 .special:nth-child(3) { background: linear-gradient(180deg, rgba(226,59,75,0.24), rgba(255,255,255,0.06)); }
.specials--july4 .special:nth-child(1) .special__tick { background: var(--usa-blue); }
.specials--july4 .special:nth-child(2) .special__tick { background: var(--usa-white); }
.specials--july4 .special:nth-child(3) .special__tick { background: var(--usa-red); }
.specials--july4 .special__price { background: var(--usa-white); color: var(--usa-red-2); }
.specials--july4 .special__tick { background: linear-gradient(180deg, var(--usa-red), var(--usa-blue)); }

/* --- final touch: a shimmer sweep across the "specials" title --- */
.specials--july4 .specials__title {
  background: linear-gradient(100deg,
    var(--white) 0%, var(--white) 38%,
    #ffe9b0 46%, var(--gold) 50%, #ffe9b0 54%,
    var(--white) 62%, var(--white) 100%);
  background-size: 250% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--white);
}

/* star sparkles — scattered on both sides */
.specials--july4 .spark {
  position: absolute; font-size: 1.1rem; opacity: 0.85; pointer-events: none; z-index: 0;
  text-shadow: 0 0 12px rgba(255,255,255,0.6);
}
.specials--july4 .spark--1 { top: 14%; left: 5%;  color: var(--usa-white); font-size: 1.3rem; }
.specials--july4 .spark--2 { top: 30%; right: 4%; color: var(--gold); }
.specials--july4 .spark--3 { bottom: 16%; left: 3%; color: var(--usa-red); font-size: 1.4rem; }
.specials--july4 .spark--4 { top: 8%;  left: 40%; color: var(--gold); font-size: 0.9rem; }
.specials--july4 .spark--5 { bottom: 22%; right: 6%; color: var(--usa-white); font-size: 1.2rem; }
.specials--july4 .spark--6 { top: 52%; left: 30%; color: var(--usa-blue); font-size: 0.85rem; }
.specials--july4 .spark--7 { top: 22%; right: 22%; color: var(--usa-red); font-size: 1.5rem; }
.specials--july4 .spark--8 { bottom: 12%; right: 28%; color: var(--gold); font-size: 0.95rem; }

/* firework bursts — radiating lines drawn with conic/repeating gradients */
.specials--july4 .firework {
  position: absolute; width: 120px; height: 120px; border-radius: 50%; z-index: 0;
  pointer-events: none; opacity: 0.5;
  background:
    repeating-conic-gradient(from 0deg,
      currentColor 0deg 2deg, transparent 2deg 30deg);
  -webkit-mask: radial-gradient(circle, transparent 8%, #000 10%, #000 46%, transparent 52%);
          mask: radial-gradient(circle, transparent 8%, #000 10%, #000 46%, transparent 52%);
}
.specials--july4 .firework--a { top: 6%;  right: 12%; color: rgba(226,59,75,0.55); }
.specials--july4 .firework--b { bottom: 4%; left: 14%; color: rgba(63,123,255,0.5); width: 90px; height: 90px; }
.specials--july4 .firework--c { top: 30%; left: 5%; color: rgba(255,255,255,0.42); width: 76px; height: 76px; }

@keyframes ribbonShift { to { background-position: 204px 0; } }
@keyframes twinkle { 0%,100% { opacity: 0.2; transform: scale(0.8); } 50% { opacity: 1; transform: scale(1.3); } }
@keyframes fwPop { 0% { transform: scale(0.6); opacity: 0; } 25% { opacity: 0.55; } 60% { transform: scale(1.05); opacity: 0.3; } 100% { transform: scale(1.15); opacity: 0; } }
/* a gold shimmer sweeps left->right across the title, then pauses */
@keyframes titleSheen { 0% { background-position: 130% 0; } 45%,100% { background-position: -30% 0; } }
@media (prefers-reduced-motion: no-preference) {
  .specials--july4::before { animation: ribbonShift 7s linear infinite; }
  .specials--july4::after { animation: spin 34s linear infinite; }
  .specials--july4 .spark { animation: twinkle 2.6s ease-in-out infinite; }
  .specials--july4 .spark--2 { animation-delay: 0.5s; }
  .specials--july4 .spark--3 { animation-delay: 1.1s; }
  .specials--july4 .spark--4 { animation-delay: 0.8s; }
  .specials--july4 .spark--5 { animation-delay: 1.4s; }
  .specials--july4 .spark--6 { animation-delay: 0.3s; }
  .specials--july4 .spark--7 { animation-delay: 0.9s; }
  .specials--july4 .spark--8 { animation-delay: 1.7s; }
  .specials--july4 .firework { animation: fwPop 4s ease-out infinite; }
  .specials--july4 .firework--b { animation-delay: 2s; }
  .specials--july4 .firework--c { animation-delay: 1.2s; }
  .specials--july4 .specials__title { animation: titleSheen 5s ease-in-out infinite; }
}

/* --- Fiesta flourishes (opt-in via .specials--fiesta) ---
   Evergreen brand look: papel-picado ribbon, marigold ring, confetti
   bursts and sparkles in the truck-wrap gold / pink / teal / orange. */
.specials--fiesta {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 16%, rgba(249,200,35,0.26), transparent 30%),
    radial-gradient(circle at 86% 20%, rgba(43,184,171,0.24), transparent 32%),
    radial-gradient(circle at 50% 110%, rgba(255,255,255,0.12), transparent 38%),
    linear-gradient(145deg, rgba(236,30,121,0.14), rgba(240,89,43,0.12));
}
.specials--fiesta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
  z-index: 2;
  background: repeating-linear-gradient(90deg,
    var(--gold) 0 42px, var(--pink) 42px 84px, var(--teal) 84px 126px, var(--orange) 126px 168px);
  background-size: 336px 100%;
  box-shadow: 0 3px 16px rgba(0,0,0,0.26);
}
.specials--fiesta::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -120px;
  width: min(70vw, 760px);
  aspect-ratio: 1;
  transform: translateX(-50%);
  border-radius: 50%;
  background:
    repeating-conic-gradient(from -9deg,
      rgba(249,200,35,0.36) 0deg 8deg,
      rgba(240,89,43,0.26) 8deg 16deg,
      rgba(236,30,121,0.24) 16deg 24deg,
      transparent 24deg 36deg);
  -webkit-mask: radial-gradient(circle, transparent 0 48%, #000 49% 52%, transparent 53%);
          mask: radial-gradient(circle, transparent 0 48%, #000 49% 52%, transparent 53%);
  opacity: 0.55;
  pointer-events: none;
}
/* head panel: purple -> pink -> orange (base gradient leans USA blue/red) */
.specials--fiesta .specials__head {
  background:
    radial-gradient(circle at 20% 18%, rgba(255,255,255,0.16), transparent 34%),
    linear-gradient(150deg, rgba(122,43,157,0.80), rgba(216,63,125,0.62) 58%, rgba(240,89,43,0.60));
}
.specials--fiesta .specials__flag {
  display: inline-block;
  width: fit-content;
  margin-bottom: 1rem;
  padding: 0.42rem 1.05rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft) 48%, var(--gold));
  box-shadow: 0 12px 24px rgba(240,89,43,0.30), inset 0 0 0 1.5px rgba(255,255,255,0.7);
}
.specials--fiesta .specials__flag::before { content: "✿ "; color: var(--orange); }
.specials--fiesta .specials__flag::after  { content: " ✿"; color: var(--orange); }
/* the Spanish badge text is longer — tighten so it stays on one line */
html[lang="es"] .specials--fiesta .specials__flag { font-size: 0.68rem; letter-spacing: 0.07em; }

.specials--fiesta .special:nth-child(1) { background: linear-gradient(180deg, rgba(249,200,35,0.20), rgba(255,255,255,0.06)); }
.specials--fiesta .special:nth-child(2) { background: linear-gradient(180deg, rgba(255,255,255,0.19), rgba(255,255,255,0.06)); }
.specials--fiesta .special:nth-child(3) { background: linear-gradient(180deg, rgba(43,184,171,0.22), rgba(255,255,255,0.06)); }
.specials--fiesta .special:nth-child(1) .special__tick { background: var(--gold); }
.specials--fiesta .special:nth-child(2) .special__tick { background: var(--pink); }
.specials--fiesta .special:nth-child(3) .special__tick { background: var(--teal); }

/* gold shimmer sweep across the title (same motion as the holiday skin) */
.specials--fiesta .specials__title {
  background: linear-gradient(100deg,
    var(--white) 0%, var(--white) 38%,
    #ffe9b0 46%, var(--gold) 50%, #ffe9b0 54%,
    var(--white) 62%, var(--white) 100%);
  background-size: 250% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--white);
}

/* confetti sparkles — scattered on both sides */
.specials--fiesta .spark {
  position: absolute; font-size: 1.1rem; opacity: 0.85; pointer-events: none; z-index: 0;
  text-shadow: 0 0 12px rgba(255,255,255,0.6);
}
.specials--fiesta .spark--1 { top: 14%; left: 5%;  color: var(--gold); font-size: 1.3rem; }
.specials--fiesta .spark--2 { top: 30%; right: 4%; color: var(--white); }
.specials--fiesta .spark--3 { bottom: 16%; left: 3%; color: var(--orange); font-size: 1.4rem; }
.specials--fiesta .spark--4 { top: 8%;  left: 40%; color: var(--gold-soft); font-size: 0.9rem; }
.specials--fiesta .spark--5 { bottom: 22%; right: 6%; color: var(--pink); font-size: 1.2rem; }
.specials--fiesta .spark--6 { top: 52%; left: 30%; color: var(--teal); font-size: 0.85rem; }
.specials--fiesta .spark--7 { top: 22%; right: 22%; color: var(--gold); font-size: 1.5rem; }
.specials--fiesta .spark--8 { bottom: 12%; right: 28%; color: var(--white); font-size: 0.95rem; }

/* marigold bursts — radiating lines drawn with conic/repeating gradients */
.specials--fiesta .firework {
  position: absolute; width: 120px; height: 120px; border-radius: 50%; z-index: 0;
  pointer-events: none; opacity: 0.5;
  background:
    repeating-conic-gradient(from 0deg,
      currentColor 0deg 2deg, transparent 2deg 30deg);
  -webkit-mask: radial-gradient(circle, transparent 8%, #000 10%, #000 46%, transparent 52%);
          mask: radial-gradient(circle, transparent 8%, #000 10%, #000 46%, transparent 52%);
}
.specials--fiesta .firework--a { top: 6%;  right: 12%; color: rgba(249,200,35,0.60); }
.specials--fiesta .firework--b { bottom: 4%; left: 14%; color: rgba(43,184,171,0.55); width: 90px; height: 90px; }
.specials--fiesta .firework--c { top: 30%; left: 5%; color: rgba(240,89,43,0.50); width: 76px; height: 76px; }

/* fiesta ribbon repeats every 168px, so shift a full tile for a seamless loop */
@keyframes ribbonShiftFiesta { to { background-position: 336px 0; } }
/* keep the ring centered (translateX) while it rotates */
@keyframes ringSpin {
  from { transform: translateX(-50%) rotate(0deg); }
  to   { transform: translateX(-50%) rotate(360deg); }
}
@media (prefers-reduced-motion: no-preference) {
  .specials--fiesta::before { animation: ribbonShiftFiesta 9s linear infinite; }
  .specials--fiesta::after { animation: ringSpin 34s linear infinite; }
  .specials--fiesta .spark { animation: twinkle 2.6s ease-in-out infinite; }
  .specials--fiesta .spark--2 { animation-delay: 0.5s; }
  .specials--fiesta .spark--3 { animation-delay: 1.1s; }
  .specials--fiesta .spark--4 { animation-delay: 0.8s; }
  .specials--fiesta .spark--5 { animation-delay: 1.4s; }
  .specials--fiesta .spark--6 { animation-delay: 0.3s; }
  .specials--fiesta .spark--7 { animation-delay: 0.9s; }
  .specials--fiesta .spark--8 { animation-delay: 1.7s; }
  .specials--fiesta .firework { animation: fwPop 4s ease-out infinite; }
  .specials--fiesta .firework--b { animation-delay: 2s; }
  .specials--fiesta .firework--c { animation-delay: 1.2s; }
  .specials--fiesta .specials__title { animation: titleSheen 5s ease-in-out infinite; }
}

.img-fallback {
  display: grid; place-items: center; width: 92px; height: 92px; border-radius: 50%;
  font-family: var(--font-display); font-weight: 800; font-size: 1.8rem; color: var(--ink);
  background: var(--gold); text-align: center;
}

/* ============================================================
   MENU  (light cream band with category tabs + card grid)
   Card design mirrors sample one, reskinned for sample two.
   ============================================================ */
.menu {
  padding: clamp(3rem, 6vw, 5rem) 0;
  /* same continuous purple->pink backdrop as the rest of the site (no band) */
  color: var(--on);
}
.menu__head { text-align: center; max-width: 640px; margin: 0 auto clamp(1.6rem, 3vw, 2.4rem); }
.menu__eyebrow { font-family: var(--font-display); font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.85rem; margin: 0 0 0.3rem; }
.menu__title { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 800; color: var(--white); }
.menu__rule { display: block; width: 72px; height: 4px; border-radius: 4px; background: linear-gradient(90deg, var(--gold), var(--orange)); margin: 0.9rem auto; }
.menu__sub { color: var(--on-soft); margin: 0; }

.menu__tabs { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 36px; }
.menu__tab {
  padding: 11px 22px; border-radius: 999px; cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.25); background: rgba(255, 255, 255, 0.10);
  color: var(--on); font-family: var(--font-display); font-weight: 700; font-size: 0.95rem;
  transition: transform 0.18s, color 0.18s, background 0.18s, box-shadow 0.18s, border-color 0.18s;
}
.menu__tab:hover { transform: translateY(-2px); color: var(--gold); border-color: rgba(255, 224, 138, 0.5); background: rgba(255, 255, 255, 0.16); }
.menu__tab.is-active {
  color: var(--ink); border-color: transparent;
  background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
  box-shadow: 0 16px 28px rgba(40, 6, 36, 0.30);
}

.menu__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 24px; }

.card {
  position: relative; display: flex; flex-direction: column; overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 247, 235, 0.98), rgba(255, 255, 255, 0.96));
  border: 1px solid rgba(240, 89, 43, 0.12); box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card::before {
  content: ""; position: absolute; inset: 12px; border-radius: 14px;
  border: 1px solid rgba(255, 217, 140, 0.4); pointer-events: none; z-index: 1;
}
.card::after {
  content: ""; position: absolute; width: 96px; height: 96px; right: -20px; top: -24px; border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 200, 35, 0.26), rgba(249, 200, 35, 0)); pointer-events: none;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: rgba(236, 30, 121, 0.18); }

.card__media {
  position: relative; aspect-ratio: 5 / 3; overflow: hidden;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.5), transparent 38%),
    linear-gradient(145deg, rgba(255, 190, 145, 0.55), rgba(255, 234, 247, 0.7) 55%, rgba(214, 63, 125, 0.18));
}
.card__photo {
  position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; object-position: center;
  transition: transform 0.3s ease;
}
.card:hover .card__photo { transform: scale(1.05) translateY(-2px); }
.card__photo[src$=".svg"], .card__photo.is-fallback { object-fit: contain; padding: 18px; }
.card__photo.is-fallback { opacity: 0.94; }

.card__badge {
  position: absolute; top: 12px; left: 12px; z-index: 3; color: var(--white);
  font-family: var(--font-display); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.04em;
  padding: 0.28rem 0.7rem; border-radius: 999px; background: var(--teal); text-transform: uppercase;
}
.card__badge--popular { background: var(--pink); }

.card__body { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 12px; flex: 1; padding: 18px 18px 20px; }
.card__heading { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.card__title { margin: 0; font-size: 1.2rem; color: #3a0d2e; }
.card__price { white-space: nowrap; color: var(--orange); font-family: var(--font-display); font-weight: 800; font-size: 1.24rem; }
.card__price--ask {
  align-self: center; padding: 4px 10px; border-radius: 999px;
  background: rgba(43, 184, 171, 0.14); color: #0e7c8a; font-size: 0.8rem; font-weight: 700; font-family: var(--font-body);
}
.card__desc { margin: 0; color: #6b3a59; font-size: 0.92rem; }

.meat-select { display: flex; flex-direction: column; gap: 6px; }
.meat-select label { font-size: 0.74rem; font-weight: 700; color: #6b3a59; letter-spacing: 0.6px; text-transform: uppercase; }
.meat-select select {
  width: 100%; padding: 11px 12px; border-radius: 12px; cursor: pointer;
  border: 2px solid rgba(58, 13, 46, 0.12); background: rgba(255, 255, 255, 0.9); color: var(--ink);
  font-family: var(--font-body); font-size: 0.92rem;
}
.meat-select select:focus { outline: none; border-color: rgba(236, 30, 121, 0.46); }

.card__actions { margin-top: auto; display: flex; align-items: center; gap: 10px; }
.qty { display: inline-flex; align-items: center; overflow: hidden; border-radius: 999px; border: 2px solid rgba(58, 13, 46, 0.12); background: rgba(255, 255, 255, 0.92); }
.qty button { width: 34px; height: 34px; border: 0; background: transparent; color: var(--ink); font-size: 1.2rem; cursor: pointer; transition: background 0.18s, color 0.18s; }
.qty button:hover { background: rgba(236, 30, 121, 0.08); color: var(--pink); }
.qty span { min-width: 26px; text-align: center; font-weight: 800; color: var(--ink); }
.card__add {
  flex: 1; padding: 11px 14px; border: 0; border-radius: 999px; cursor: pointer; color: var(--white);
  font-family: var(--font-display); font-weight: 700; text-align: center;
  background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
  transition: transform 0.18s, box-shadow 0.18s;
}
.card__add:hover { transform: translateY(-2px); box-shadow: 0 16px 26px rgba(240, 89, 43, 0.28); }

/* "Call to Order" link shown on cards while online ordering is off
   (LT_CONFIG.features.onlineOrdering = false). Reuses .card__add looks. */
.card__call { display: grid; place-items: center; min-height: 44px; }

/* Online ordering disabled: main.js adds .ordering-off to <body>.
   Hide every ordering surface; the markup and logic stay in place so
   flipping the config flag brings it all back. */
body.ordering-off .cart-nav,
body.ordering-off .cart-drawer,
body.ordering-off .cart-backdrop { display: none; }

.menu__note { margin-top: 36px; text-align: center; color: var(--on-soft); }
.menu__note a { color: var(--gold); font-weight: 700; }

/* ============================================================
   LOCATION & SCHEDULE
   ============================================================ */
.schedule { padding: clamp(2.5rem, 6vw, 5rem) 0; }
.schedule__top { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; margin-bottom: clamp(2rem,4vw,3rem); }
.schedule__title { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; color: var(--white); text-transform: lowercase; }
.schedule__sub { color: var(--on-soft); max-width: 40ch; margin: 0 0 1.5rem; }
.schedule__map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.schedule__map iframe { width: 100%; height: 360px; border: 0; display: block; }
.schedule__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.stop { background: rgba(122,43,157,0.20); padding: 1.6rem 1.5rem; transition: background 0.2s; }
.stop:hover { background: var(--card-strong); }
.stop__date { font-family: var(--font-body); font-weight: 600; font-size: 0.82rem; color: var(--gold); letter-spacing: 0.04em; }
.stop__place { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--white); text-transform: lowercase; margin: 0.2rem 0 0.6rem; }
.stop__dash { width: 40px; height: 3px; background: var(--gold); border-radius: 3px; margin-bottom: 0.9rem; }
.stop__line { display: flex; align-items: center; gap: 0.5rem; color: var(--on-soft); font-size: 0.95rem; margin-top: 0.3rem; }
.stop__line svg { color: var(--gold); flex: none; }

/* ============================================================
   ABOUT  (overlapping card on photo, like reference)
   ============================================================ */
.about { padding: clamp(2.5rem, 6vw, 5rem) 0; }
.about__grid { position: relative; display: grid; grid-template-columns: 0.95fr 1.05fr; align-items: center; gap: 0; }
.about__card {
  background: rgba(122,43,157,0.55); backdrop-filter: blur(6px);
  border-left: 4px solid var(--gold);
  padding: clamp(1.6rem, 3vw, 2.6rem); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); z-index: 2; margin-right: -3rem;
}
.about__hi { font-family: var(--font-display); font-weight: 700; color: var(--gold); margin: 0 0 0.5rem; }
.about__h { font-size: clamp(1.4rem, 2.6vw, 2rem); font-weight: 800; color: var(--white); }
.about__card p { color: var(--on-soft); margin: 0.9rem 0; }
.about__media { border-radius: var(--radius); padding-left: 3rem; }
.about__img { width: 100%; filter: drop-shadow(0 28px 44px rgba(40,6,36,0.5)); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { padding: clamp(2.5rem, 6vw, 5rem) 0; }
.contact__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start; }
.contact__lead { color: var(--on-soft); margin: 1.2rem 0 1.6rem; max-width: 38ch; }
.contact__rows { display: grid; gap: 1rem; }
.contact__row { display: flex; align-items: center; gap: 1rem; }
.contact__ic { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; border: 2px solid var(--gold); color: var(--gold); flex: none; }
.contact__rk { font-family: var(--font-display); font-weight: 700; color: var(--white); line-height: 1.1; }
.contact__rv { color: var(--on-soft); font-size: 0.95rem; }
.contact__hr { border: 0; border-top: 1px solid var(--line); margin: 1.6rem 0; }
.contact__socials { display: flex; gap: 0.6rem; }

.contact__form { display: grid; gap: 1rem; }
.field {
  font-family: var(--font-body); font-size: 1rem; color: var(--white);
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 0.95rem 1.1rem; width: 100%; transition: border-color 0.18s, background 0.18s;
}
.field::placeholder { color: var(--on-faint); }
.field:focus { outline: none; border-color: var(--gold); background: var(--card-strong); }
textarea.field { resize: vertical; min-height: 130px; }
.contact__submit { justify-self: start; }
.contact__note { margin: 0; color: var(--gold); font-weight: 600; min-height: 1.2em; }

/* shared social chip */
.social-chip {
  width: 44px; height: 44px; border-radius: 8px; display: grid; place-items: center;
  background: var(--card); border: 1px solid var(--line); color: var(--on);
  font-family: var(--font-display); font-weight: 700; transition: background 0.18s, transform 0.18s, color 0.18s;
}
.social-chip:hover { background: var(--gold); color: var(--ink); transform: translateY(-3px); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { position: relative; overflow: hidden; padding: clamp(2rem, 5vw, 4rem) 0 2.5rem; text-align: center; }
.footer__truck { display: grid; place-items: center; margin-bottom: 1.5rem; }
.footer__truck-img { width: clamp(180px, 26vw, 300px); filter: drop-shadow(0 26px 36px rgba(40,6,36,0.5)); }
.footer__tag { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; color: var(--white); }
.footer__sub { color: var(--on-soft); margin: 0.6rem auto 1.4rem; max-width: 44ch; }
.footer__socials { display: flex; justify-content: center; gap: 0.6rem; margin-bottom: 1.6rem; }
.footer__copy { color: var(--on-faint); font-size: 0.85rem; }
.footer__copy strong { color: var(--gold); }

/* ============================================================
   CART
   ============================================================ */
.cart-backdrop {
  position: fixed; inset: 0; z-index: 420;
  background: rgba(42, 8, 32, 0.52);
  backdrop-filter: blur(4px);
}
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 430;
  width: min(100%, 430px); display: flex; flex-direction: column;
  background: linear-gradient(165deg, #7a2b9d 0%, #98318f 34%, #c0397f 68%, #e0497a 100%);
  color: var(--on); box-shadow: -24px 0 48px rgba(40, 6, 36, 0.36);
  transform: translateX(105%); transition: transform 0.24s ease;
}
.cart-drawer.is-open { transform: translateX(0); }
.cart-drawer__head {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.2rem 1.25rem; border-bottom: 1px solid var(--line);
}
.cart-drawer__eyebrow {
  margin: 0 0 0.15rem; color: var(--gold); font-weight: 800;
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
}
.cart-drawer__title { font-size: 1.8rem; color: var(--white); }
.cart-close {
  width: 44px; height: 44px; border: 1px solid rgba(255,255,255,0.28);
  border-radius: 999px; background: rgba(255,255,255,0.10); color: var(--gold);
  font-size: 1.8rem; line-height: 1; cursor: pointer;
}
.cart-items {
  display: grid; gap: 0.8rem; padding: 1rem 1.25rem;
  overflow: auto; min-height: 0;
}
.cart-item {
  display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 0.9rem;
  padding: 1rem; border: 1px solid var(--line); border-radius: var(--radius);
  background: rgba(255,255,255,0.09);
}
.cart-item__name { margin: 0; font-size: 1.1rem; color: var(--white); }
.cart-item__meta { margin: 0.25rem 0 0; color: var(--on-soft); font-size: 0.84rem; }
.cart-item__side { display: grid; justify-items: end; gap: 0.5rem; }
.cart-item__price { color: var(--gold); white-space: nowrap; }
.cart-item__qty {
  display: inline-flex; align-items: center; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.26); border-radius: 999px;
  background: rgba(255,255,255,0.10);
}
.cart-item__qty button {
  width: 32px; height: 32px; border: 0; cursor: pointer;
  background: transparent; color: var(--gold); font-size: 1.1rem;
}
.cart-item__qty span { min-width: 28px; text-align: center; font-weight: 800; }
.cart-item__remove {
  border: 0; background: transparent; color: var(--on-soft);
  text-decoration: underline; cursor: pointer; font: inherit; font-size: 0.82rem;
}
.cart-empty {
  display: grid; place-items: center; gap: 1rem; padding: 2.5rem 1.25rem;
  text-align: center; color: var(--on-soft);
}
.cart-empty[hidden], .cart-summary[hidden], .cart-form[hidden], .cart-backdrop[hidden],
.cart-thanks[hidden] { display: none; }

/* Post-payment thank-you panel (shown on the Square success return). */
.cart-thanks {
  display: grid; place-items: center; gap: 0.9rem; padding: 2.6rem 1.5rem;
  text-align: center; color: var(--on);
}
.cart-thanks__mark {
  width: 66px; height: 66px; display: grid; place-items: center;
  border-radius: 50%; background: var(--gold); color: var(--ink);
  font-size: 2rem; font-weight: 800; box-shadow: var(--shadow-md);
}
.cart-thanks__title { font-size: 1.8rem; color: var(--gold); }
.cart-thanks__text { margin: 0; color: var(--on-soft); max-width: 34ch; }
.cart-thanks__link { margin-top: 0.4rem; }
.cart-summary {
  margin: auto 1.25rem 0; padding: 1rem 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.cart-summary__row {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  color: var(--white); font-size: 1.05rem;
}
.cart-summary__row strong { color: var(--gold); font-size: 1.3rem; }
.cart-summary__note { margin: 0.5rem 0 0; color: var(--on-soft); font-size: 0.86rem; }
.cart-form { display: grid; gap: 0.75rem; padding: 1rem 1.25rem 1.25rem; }
.cart-field { background: rgba(255,255,255,0.10); }
.cart-checkout { width: 100%; }
.cart-status { min-height: 1.2em; margin: 0; color: var(--gold); font-weight: 700; font-size: 0.9rem; }
body.cart-open { overflow: hidden; }

/* ============================================================
   ANIMATIONS (reveal + gentle truck bob), gated behind reduced-motion
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); }
@keyframes truckBob { 0%,100% { transform: translateY(0) rotate(-0.3deg); } 50% { transform: translateY(-12px) rotate(0.3deg); } }
@keyframes spin { to { transform: rotate(360deg); } }

@media (prefers-reduced-motion: no-preference) {
  .reveal { transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.is-visible { opacity: 1; transform: none; }
  .hero__truck-img { animation: truckBob 6s ease-in-out infinite; }
}
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }
.no-js .reveal { opacity: 1; transform: none; }

/* ============================================================
   DECORATIVE MOTIFS  (truck-wrap art sprinkled across the site)
   SVGs from assets/svg/. Sit BEHIND content (z-index:0); content
   wrappers are lifted to z-index:1. Animated only when motion is OK.
   ============================================================ */
.motifs { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.motif {
  position: absolute; pointer-events: none; user-select: none;
  filter: drop-shadow(0 10px 18px rgba(40, 6, 36, 0.28));
  will-change: transform;
}

/* lift real content above the motif layer */
.hero__inner,
.specials__inner, .menu .wrap, .schedule .wrap, .about .wrap, .contact__grid, .footer__inner, .footer__truck {
  position: relative; z-index: 1;
}

/* sections that host edge-bleeding motifs must clip them */
.specials, .menu, .schedule, .about, .contact { position: relative; overflow: hidden; }

/* --- papel-picado strips pinned to a section's top edge --- */
.motif--papel {
  top: clamp(0.75rem, 1.4vw, 1.25rem); left: 50%;
  width: 100vw;
  height: clamp(42px, 4vw, 58px); object-fit: fill;
  opacity: 0.86; filter: drop-shadow(0 12px 20px rgba(40, 6, 36, 0.18));
  transform: translateX(-50%);
}

/* --- the BIG faint skull watermark (behind the menu header) --- */
.motif--bg-skull {
  width: clamp(320px, 42vw, 560px); opacity: 0.16;
  left: 50%; top: 0; transform: translate(-50%, 4%);  /* keep it below the menu's top edge so it doesn't bleed into the specials section above */
  filter: none;
}

/* --- small per-section accents --- */
.motif--guitar   { width: clamp(70px, 9vw, 130px); opacity: 0.5; }
.motif--taco     { width: clamp(54px, 7vw, 96px);  opacity: 0.6; }
.motif--chili    { width: clamp(40px, 5vw, 72px);  opacity: 0.55; }
.motif--maraca   { width: clamp(44px, 5.5vw, 80px); opacity: 0.5; }
.motif--cactus   { width: clamp(54px, 7vw, 100px); opacity: 0.45; }
.motif--marigold { width: clamp(90px, 12vw, 190px); opacity: 0.16; }
.motif--skull-sm { width: clamp(56px, 7vw, 104px); opacity: 0.7; }

/* hero placements */
.hero .motif--papel {
  top: clamp(1rem, 1.8vw, 1.6rem);
  height: clamp(48px, 4.4vw, 64px);
  opacity: 0.74;
}
.hero .motif--guitar { left: clamp(16rem, 33vw, 40rem); bottom: 4%; }
.hero .motif--taco   { right: 6%; top: 30%; }
.hero .motif--marigold { right: -50px; top: -40px; }

/* menu */
.menu .motif--marigold { right: 2%; top: 8%; }

/* schedule */
.schedule .motif--cactus { right: 3%; bottom: 8%; }

/* about */
.about .motif--guitar { right: 1%; bottom: 4%; opacity: 0.3; }

/* contact */
.contact .motif--marigold { left: 1%; bottom: 6%; }

/* footer flanks the truck */
.footer .motif--skull-sm { left: 8%; top: 22%; }
.footer .motif--guitar   { right: 8%; top: 20%; }

@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes sway   { 0%,100% { transform: rotate(-4deg); } 50% { transform: rotate(4deg); } }

@media (prefers-reduced-motion: no-preference) {
  .motif--guitar   { animation: sway 7s ease-in-out infinite; }
  .motif--taco     { animation: floatY 6s ease-in-out infinite; }
  .motif--chili    { animation: floatY 5.5s ease-in-out infinite; }
  .motif--maraca   { animation: sway 6.5s ease-in-out infinite; }
  .motif--cactus   { animation: floatY 8s ease-in-out infinite; }
  .motif--marigold { animation: spin 26s linear infinite; }
  .motif--skull-sm { animation: floatY 7.5s ease-in-out infinite; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .specials__inner { grid-template-columns: 1fr; }
  .specials__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 880px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__copy { order: 1; }
  .hero__truck { order: 2; max-width: 620px; margin-inline: auto; justify-self: center; }
  .hero__rule { margin-inline: auto; }
  .hero__lead { margin-inline: auto; }
  .hero__cta { justify-content: center; }
  .here-badge { display: none; }

  .schedule__top { grid-template-columns: 1fr; }
  .schedule__grid { grid-template-columns: 1fr 1fr; }

  .about__grid { grid-template-columns: 1fr; }
  .about__card { margin: 1rem 0 0; order: 2; }
  .about__media { padding-left: 0; order: 1; max-width: 480px; margin-inline: auto; }

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

@media (max-width: 640px) {
  :root { --topbar-h: 0px; }
  html { scroll-padding-top: 72px; }
  body { background-attachment: scroll; }
  .wrap { width: min(100% - 1.5rem, var(--maxw)); }
  .btn { min-height: 46px; justify-content: center; padding: 0.78rem 1.15rem; }

  .topbar { min-height: auto; padding: 0 1rem; }
  .topbar__logo { width: 72px; height: 72px; }
  /* Full-width dropdown anchored under the topbar. Positioned in the
     viewport (fixed) so it doesn't depend on the compact nav-row width. */
  .topnav {
    position: fixed; top: 88px; left: 0; right: 0; width: 100%; z-index: 330;
    display: grid; grid-template-columns: 1fr; gap: 0.12rem;
    max-height: 0; overflow: hidden; opacity: 0; pointer-events: none;
    margin-top: 0; padding: 0 1rem;
    background: var(--bg-fade);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 38px rgba(40, 6, 36, 0.34);
    transform: translateY(-10px); transition: max-height 0.28s ease, opacity 0.2s ease, transform 0.24s ease, padding 0.24s ease;
  }
  .topnav.is-open { max-height: 330px; opacity: 1; pointer-events: auto; padding: 0.7rem 1rem 1rem; transform: translateY(0); }
  .topnav__link { padding: 0.85rem 1rem; font-size: 1rem; text-align: center; }
  /* Compact controls (language + cart) sit at top-left, hamburger top-right. */
  .topbar__nav-row {
    justify-content: flex-start; margin-top: 0; gap: 0.5rem;
    position: absolute; left: 1rem; top: 1rem; width: auto;
  }
  .cart-nav { min-height: 42px; padding: 0.5rem 0.7rem; }
  .cart-nav__label { display: none; }
  .lang-toggle { min-height: 42px; padding: 0.5rem 0.7rem; font-size: 0.85rem; }
  .lang-toggle::before { width: 15px; height: 15px; }
  .topnav__toggle {
    display: flex; z-index: 250; top: 1rem; right: 1rem;
    min-width: 44px; min-height: 44px; align-items: center; justify-content: center;
    border-radius: 999px; background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.28);
  }

  .hero {
    min-height: auto;
    padding: 0.75rem 0 2.6rem;
  }
  .hero__inner { width: min(100% - 1.5rem, 1320px); gap: 1.15rem; margin-top: clamp(1.8rem, 5vh, 2.6rem); padding-top: 0; }
  .hero__copy { order: 1; }
  .hero__truck { order: 2; width: min(100%, 430px); max-width: 430px; margin-inline: auto; }
  .hero__truck-img { filter: drop-shadow(0 24px 34px rgba(40,6,36,0.44)); }
  .hero__title { font-size: clamp(4.2rem, 19vw, 5.8rem); }
  .hero__rule { width: 58px; height: 4px; margin: 1rem auto 0.95rem; }
  .hero__lead { font-size: 0.98rem; max-width: 32ch; margin-bottom: 1.1rem; }
  .hero__cta { display: grid; grid-template-columns: 1fr; gap: 0.65rem; width: min(100%, 320px); margin-inline: auto; }
  .motif--papel {
    width: 100vw;
    height: 38px;
    opacity: 0.9;
  }
  .hero .motif--papel {
    top: 0.75rem;
    height: 42px;
    opacity: 0.76;
  }

  .specials, .menu, .schedule, .about, .contact { padding-block: 2.6rem; }
  .section-head { margin-bottom: 1.6rem; }
  .section-title { font-size: clamp(2.1rem, 12vw, 3rem); }

  .specials__inner {
    padding: 0.85rem;
    border-radius: 22px;
    gap: 0.85rem;
  }
  .specials__head {
    text-align: center;
    padding: 1.55rem 1rem;
    min-height: 260px;
  }
  .specials__head .dash { margin-inline: auto; }
  .specials__head .specials__flag { margin-inline: auto; }
  .specials__sub { margin-inline: auto; }
  .specials__head .specials__cta { margin-inline: auto; }
  .specials__grid { grid-template-columns: 1fr; gap: 0.85rem; }
  .special { border-radius: 18px; transform: none; min-height: 230px; aspect-ratio: 4 / 3; }
  .special:nth-child(1), .special:nth-child(2), .special:nth-child(3) { transform: none; }
  .specials--july4 {
    background:
      radial-gradient(circle at 18% 10%, rgba(63,123,255,0.30), transparent 38%),
      radial-gradient(circle at 82% 18%, rgba(226,59,75,0.28), transparent 40%),
      radial-gradient(circle at 50% 100%, rgba(255,255,255,0.10), transparent 46%);
  }
  .specials--july4::before { height: 8px; }
  .specials--july4::after {
    width: 115vw;
    bottom: -90px;
    opacity: 0.34;
  }
  .specials--july4 .specials__flag {
    display: table;
    margin-bottom: 1rem;
    font-size: 0.82rem;
  }
  .specials--july4 .special {
    border-color: rgba(255,255,255,0.24);
    box-shadow: inset 0 1px rgba(255,255,255,0.10);
  }
  .specials--july4 .special:nth-child(odd) {
    background: linear-gradient(135deg, rgba(63,123,255,0.13), rgba(255,255,255,0.04));
  }
  .specials--july4 .special:nth-child(even) {
    background: linear-gradient(135deg, rgba(226,59,75,0.13), rgba(255,255,255,0.04));
  }

  .specials--fiesta {
    background:
      radial-gradient(circle at 18% 10%, rgba(249,200,35,0.24), transparent 38%),
      radial-gradient(circle at 82% 18%, rgba(43,184,171,0.22), transparent 40%),
      radial-gradient(circle at 50% 100%, rgba(255,255,255,0.10), transparent 46%);
  }
  .specials--fiesta::before { height: 8px; }
  .specials--fiesta::after {
    width: 115vw;
    bottom: -90px;
    opacity: 0.34;
  }
  .specials--fiesta .specials__flag {
    display: table;
    margin-bottom: 1rem;
    font-size: 0.82rem;
  }
  .specials--fiesta .special {
    border-color: rgba(255,255,255,0.24);
    box-shadow: inset 0 1px rgba(255,255,255,0.10);
  }
  .specials--fiesta .special:nth-child(odd) {
    background: linear-gradient(135deg, rgba(249,200,35,0.13), rgba(255,255,255,0.04));
  }
  .specials--fiesta .special:nth-child(even) {
    background: linear-gradient(135deg, rgba(43,184,171,0.13), rgba(255,255,255,0.04));
  }

  .menu__tabs {
    flex-wrap: nowrap; justify-content: flex-start; gap: 10px;
    overflow-x: auto; overscroll-behavior-x: contain; -webkit-overflow-scrolling: touch;
    margin-inline: -0.75rem; padding: 0 0.75rem 0.85rem; margin-bottom: 1.5rem;
    scrollbar-width: none;
  }
  .menu__tabs::-webkit-scrollbar { display: none; }
  .menu__tab { flex: 0 0 auto; padding: 0.72rem 1rem; font-size: 0.9rem; white-space: nowrap; }
  .schedule__grid { grid-template-columns: 1fr; }
  .menu__grid { grid-template-columns: minmax(0, 1fr); gap: 18px; }
  .card { border-radius: 18px; }
  .card::before { inset: 9px; border-radius: 12px; }
  .card__media { aspect-ratio: 16 / 10; }
  .card__body { gap: 10px; padding: 16px; }
  .card__heading { align-items: flex-start; flex-wrap: wrap; }
  .card__title { font-size: 1.12rem; }
  .card__price { font-size: 1.12rem; }
  .card__actions { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 0.75rem; }
  .qty button { width: 42px; height: 42px; }
  .qty span { min-width: 30px; }
  .card__add { min-height: 46px; display: grid; place-items: center; padding-inline: 1rem; }
  .menu__note { margin-top: 1.6rem; font-size: 0.95rem; }

  .schedule__top { gap: 1.25rem; text-align: center; }
  .schedule__intro .dash { margin-inline: auto; }
  .schedule__sub { margin-inline: auto; }
  .schedule__dir { width: min(100%, 260px); }
  .schedule__map iframe { height: 270px; }
  .stop { padding: 1.15rem; }
  .stop__place { font-size: 1.3rem; }
  .stop__line { align-items: flex-start; font-size: 0.9rem; }

  .about__card { margin: 1rem 0 0; order: 2; border-left: 0; border-top: 4px solid var(--gold); }
  .about__media { order: 1; max-width: 420px; }

  .contact__grid { gap: 2rem; }
  .contact__info { text-align: center; }
  .section-title--left { text-align: center; }
  .contact__info .dash { margin-inline: auto; }
  .contact__lead { margin-inline: auto; }
  .contact__row { align-items: flex-start; text-align: left; }
  .contact__socials { justify-content: center; }
  .field { min-height: 48px; padding: 0.9rem 1rem; }
  .contact__submit { justify-self: stretch; }

  .footer { padding-bottom: 2rem; }
  .footer__truck-img { width: min(76vw, 260px); }
  .footer__copy { width: min(100%, 32ch); margin-inline: auto; }

  .cart-drawer { width: 100%; }
  .cart-drawer__head { padding: 1rem; }
  .cart-items { padding: 0.9rem 1rem; }
  .cart-form { padding: 0.9rem 1rem 1rem; }
  .cart-summary { margin-inline: 1rem; }
  .cart-item { grid-template-columns: minmax(0, 1fr); }
  .cart-item__side { justify-items: start; grid-template-columns: 1fr auto; align-items: center; width: 100%; }
  .cart-item__price { grid-column: 1 / -1; }
  .cart-item__remove { justify-self: end; }

  /* thin out motifs on phones: keep the big skull + papel, drop the crowders */
  .motif--taco, .motif--chili, .motif--maraca,
  .motif--cactus, .footer .motif--guitar, .footer .motif--skull-sm { display: none; }
  .motif--bg-skull { width: clamp(280px, 80vw, 420px); opacity: 0.06; }
  .hero .motif--guitar { width: 70px; opacity: 0.4; }
}

@media (max-width: 420px) {
  .menu__grid { margin-inline: -0.15rem; }
  .card__actions { grid-template-columns: 1fr; }
  .qty { justify-self: start; }
  .card__add { width: 100%; }
  .contact__row { gap: 0.75rem; }
  .contact__ic { width: 40px; height: 40px; }
}

@media (max-width: 360px) {
  .wrap, .hero__inner { width: min(100% - 1rem, var(--maxw)); }
  .topbar__logo { width: 66px; height: 66px; }
  .hero__title { font-size: 3.7rem; }
  .card__body { padding: 14px; }
  .menu__tab { padding-inline: 0.85rem; }
}
